5 lines
113 B
Python
5 lines
113 B
Python
age = 17
|
|
if age >= 18:
|
|
print('You are old enough to vote')
|
|
else:
|
|
print('You are not old enough to vote.') |