7 lines
80 B
Plaintext
7 lines
80 B
Plaintext
x = 1
|
|
y = 2
|
|
if x > y:
|
|
print("x is greater")
|
|
else:
|
|
print("y is greater")
|