If x is greater than y then prints following Get link Facebook X Pinterest Email Other Apps March 28, 2022 If x is greater than ythen prints X>=Y else X<Y x=int(input()) y=int(input()) if(x>=y): print("X >= Y") else: print("X < Y") Get link Facebook X Pinterest Email Other Apps Comments
Comments
Post a Comment