6 lines
111 B
Python
6 lines
111 B
Python
age = 19
|
|
if age >= 18:
|
|
print('You\'re old enough to vote.')
|
|
print('Have you registered to vote yet?')
|
|
|