输入a,b两个整数,如果a为大数,则进行交换,然后分别输出大数、小数的值。
a=int(input("请输入a:"))
b=int(input("请输入b:"))
if : #如果a为大数
a, b=b, a
print("大数是", ,"小数是",)