#program to print is it positive ,negative,zero num=int(input()) if num>0: print("positive") elif num<0: print("negative") else: print("zero") #program to print if a ...
There was an error while loading. Please reload this page. '''a = 65 if a>=80: print("you got A grade") elif a>=60: print("you got B grade") elif a>=50: print("you ...