@[zhouyilin](/user/786560)
```
a, b = map(int, input().split())
print(a + b)
```
by Loser_Syx @ 2023-01-26 15:35:01
@[zhouyilin](/user/786560) 由于pyhton读入是一行一行读入的,不像C艹哪样
by Loser_Syx @ 2023-01-26 15:35:32
@[Saint_ying_xtf](/user/852144) 有这回事吗
我怎么记得学校就是这么教的
by Halo_world @ 2023-01-26 16:00:28
@[Halo_world](/user/584746) 那是把数据分出来一行一个吧
by Loser_Syx @ 2023-01-26 16:24:26
@[Halo_world](/user/584746)
“Saint”同志答案无误 我的和他提供的一模一样 AC了
by zhangzhenhua0210 @ 2023-03-03 19:20:08
以下是答案(适合新手):
a=int(input())
b=int(input())
print(a+b)
by wangchenyu1117 @ 2023-03-24 22:25:19
```python
print(sum(list(map(int, input().split()))))
by juruo_zhanshen @ 2023-03-27 19:04:05
@[wangchenyu1117](/user/976584) 回答错误
by juruo_zhanshen @ 2023-03-27 19:05:02
Python的看好了
```python
a, b = input().split()
print(int(a) + int(b))
```
by Lucas2024 @ 2023-04-18 20:59:13
@[Lucas2023](/user/729062)
a,b=map(int,input().split())
print(a+b)
by 111wwww @ 2023-04-20 15:08:58