# print(250 > 4)
# print(480 <= 450)
# print(4 == 4)
# print(5 != 6)
# print(40 > 40)
# print(1 < 0.5)


# print(12 > 15)
# print(5 < 15000)
# print(120 != 120)
# print(60 == 15)
# print(25.1234 <= 25.4321)

# wzrost_cm = int(input("Podaj Swój wzrost: "))



# print(f"Czy możesz skorzystać z roller-coastera: {wzrost_cm > 150}")

# print(20 < 25 and 1 == 1) #&&
# print(40 != 40 or 1 > 0.5)
# print(not True) #!
# print("$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$")

# wzrost_cm = int(input("Podaj Swój wzrost: "))

# print(f"Czy możesz skorzystać z roller-coastera: {wzrost_cm > 150 and wzrost_cm < 215}")

a = int(input("Podaj a: "))
b = int(input("Podaj b: "))
c = int(input("Podaj c: "))

czy_a_to_max = a > b and a > c
czy_b_to_max = b > c and b > a
czy_c_to_max = not(czy_a_to_max or czy_b_to_max)

print(czy_a_to_max)
print(czy_b_to_max)
print(czy_c_to_max)