变量1,变量2,··· = map(类型,input().split())
(通过map映射,一 一把输入的值映射给对应变量)

a,b = map(int,input().split())