它的程式無法用傳統的
a=int(input())
b=int(input())
而是必須用map語法來寫
實屬把簡單的題難題化了
a,b = map(int,input().split())print(a+b)