📜  如何在python代码示例中输入多个整数

📅  最后修改于: 2022-03-11 14:45:11.674000             🧑  作者: Mango

代码示例1
x,y=map(int,input().split())#you can change the int to specify or intialize any other data structures
print(x)
print(y)