9 lines
99 B
Python
9 lines
99 B
Python
age = 12
|
|
if age < 4:
|
|
price = 0
|
|
elif age < 18:
|
|
price = 25
|
|
else:
|
|
price = 50
|
|
|
|
print(price) |