7 lines
164 B
Python
7 lines
164 B
Python
#!/home/andrei/it_school/bin/python3
|
|
|
|
x = int(input("Introduceti o varsta: "))
|
|
if ((x >= 0) and (x <= 18)):
|
|
print("Nu poti vota.")
|
|
else:
|
|
print("Poti vota.") |