#Write a program that reads one integer and checks if the integer is #even or odd #discussion #input: one integer, stored in variable num #calculations: if else, even number is a number that divisible by 2 #num%2 must be 0 #input num=int(input("enter integer ")) #calculations and output if(num%2==0): print(num, "even") else: print(num, "odd")