x = int(input('【从键盘输入一个数x:】')) y = int(input('【从键盘输入一个数y:】')) t = x / y d = x % y print('x和y 商: %d,余数:%d'%(t,d))