Files
it_school/Python_module_1/python_006.py
Ionel Andrei Cataon ad4a4cf8f6 Refacere repo
2026-02-12 14:14:46 +02:00

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.")