def sum_two(n,m): return(int(n)+int(m)) n = input().strip() m = input().strip() print(sum_two(n,m))
暂无评论,快来抢首评~
相关推荐