4 lines
109 B
Python
4 lines
109 B
Python
age = 19
|
|
if age >= 18:
|
|
print("You are old enough to vote!")
|
|
print("Have you registered to vote yet?") |