x = int(input())
y = int(input())
if x > y:
x,y = y,x
print("x =",x)
print("y =",y)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
x = int(input())
y = int(input())
if x > y:
x,y = y,x
print("x =",x)
print("y =",y)