#write a program that reads one integer #the program checks the sign of the integer (positive, negative or #zero) and prints an appropriate message #Example: if the input is 5, program prints 5 is positive #if the input is -12, program prints -12 is negative #if the input is 0, program prints 0 is zero #Part I Input num=int(input("enter integer ")) #Part II and III Calculations and Outputs if(num>0): print(num,"is positive") else: if(num<0): print(num,"is negative") else: print(num,"is zero") #make sure you are using correct indentation