Skip to content

Instantly share code, notes, and snippets.

@eugeneai
Created April 23, 2024 07:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eugeneai/008aa5d0038da31916c40a3ad6465418 to your computer and use it in GitHub Desktop.
Save eugeneai/008aa5d0038da31916c40a3ad6465418 to your computer and use it in GitHub Desktop.
"""
a = "Синхрофазотрон"
b = "асимптота"
c = "1905-й"
"""
a, b, c = input(), input(), input()
while True:
if (a <= b and a <= c):
l = a
if (b <= c):
m = b
g = c
else:
m = c
g = b
print(l)
print(g)
print(len(m))
break
a, b, c = b, c, a
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment