a = int(input("Eingabe"))

if a % 2 == 0: 
    print(a, 'ist eine gerade Zahl')
else:
    print(a, 'ist eine ungerade Zahl')