Skip to content
Snippets Groups Projects
3.py 170 B
Newer Older
hacker717's avatar
hacker717 committed
a, b, c = int(input()), int(input()), int(input())
m = max(a, b, c)
if a == m:
    print("Петя")
elif b == m:
    print("Вася")
elif c == m:
    print("Толя")