7 lines
173 B
Python
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") |