7 lines
73 B
Python
7 lines
73 B
Python
if 1 > 2:
|
|
print(1)
|
|
elif 3 == 4:
|
|
print(2)
|
|
elif True:
|
|
print(3)
|