题目 求解 #输入数据 x, y = map(int, input().split(' ') #求解计算 print(x+y) 关于输入的总结 #输入单个数字 A=input() A=int(input()) #输入多个数字(A B C) A,B,C=map(int,input.split()) #输入多个数字(A,,B,C) A, B, C = eval(input()) 最后 纯菜鸟白滚滚的成长记录①完结