uaveiro-leci/1ano/1semestre/fp/aula02/ex04.py

3 lines
67 B
Python
Executable File

n = int(input('numero? '))
print("par" if n % 2 == 0 else "impar")