#write a program that reads one integer and prints the sign of the input #USE IF ELIF ELSE statement #Input num=int(input("enter integer ")) #Calculations and Outputs if(num>0): print(num,"is positive") elif(num<0): print(num,"is negative") else: print(num,"is zero")