Untitled

 avatar
unknown
plain_text
2 months ago
177 B
7
Indexable
x = int(input())
y = int(input())

if x==y:
    print("The values are the same")
else:
    print("The numbers are different")
    print("The largest Number is", max(x,y))
Editor is loading...
Leave a Comment