6 lines
88 B
Python
6 lines
88 B
Python
if 1 < 3:
|
|
print ("1 är mindre än 3")
|
|
else:
|
|
print ("1 är inte mindre än 3")
|
|
|