6 lines
84 B
Python
6 lines
84 B
Python
|
n = int(input('numero? '))
|
||
|
|
||
|
if n % 2 == 0:
|
||
|
print('par')
|
||
|
else:
|
||
|
print('impar')
|