6 lines
79 B
Python
6 lines
79 B
Python
x = 1
|
|
y = 2
|
|
if x > y:
|
|
print('x is greater')
|
|
else:
|
|
print('y is greater') |