7 lines
118 B
Python

x = 50
if (x > 20):
print(str(x) + " är större än 20")
if (x > 10):
print(str(x) + " är större än 10")