6 lines
119 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")