Skip to content

Instantly share code, notes, and snippets.

@modos
Created July 16, 2023 02:48
Show Gist options
  • Save modos/4485e6ed49207825759b129f71de7dc5 to your computer and use it in GitHub Desktop.
Save modos/4485e6ed49207825759b129f71de7dc5 to your computer and use it in GitHub Desktop.
سوراخ موش
x = input().split()
mouse = int(x[0])
hole = int(x[1])
if mouse == hole:
print("Saal Noo Mobarak!")
else:
if mouse > hole:
for i in range((mouse-hole)):
print("L", end="")
else:
for i in range((hole-mouse)):
print("R", end="")
print()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment