a = int(input("请输入被除数:")) b = int(input("请输入除数:")) x = a // b y = a % b print(f"{a} 除以 {b} 的整数商为 {x},余数为 {y}")