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

3 lines
67 B
Python
Raw Permalink Normal View History

2022-10-11 19:27:51 +00:00
n = int(input('numero? '))
2023-01-30 16:48:43 +00:00
print("par" if n % 2 == 0 else "impar")