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

7 lines
173 B
Python

#!/home/andrei/it_school/bin/python3
x = int(input("Introduceti un numar x: "))
if x > 5:
print("x este mai mare decat 5")
else:
print("x nu este mai mare decat 5")