新转学python,求助

P1001 A+B Problem

DOs__lx @ 2020-05-10 20:03:35

输入两个变量的时候必须换行,所以提交了就是RE,麻烦大佬们帮忙看看。网上搜了一些python速成都没有提到这个神奇的点。。。

a=input()
b=input()
c=int(a)
d=int(b)
e=c+d
print(e)

by Cult_style @ 2020-05-10 20:04:56

c++它不香吗


by IntrepidStrayer @ 2020-05-10 20:05:33

s = input().split()
print(int(s[0])+int(s[1]))

by ADay @ 2020-05-10 20:06:19

print(sum(map(int,input().split()))


by Veranda @ 2020-05-10 20:06:33

C++不好吗?


by ByGones @ 2020-05-10 20:07:34

学Python的多半是为了高精


by FZzzz @ 2020-05-10 20:09:34

@DOs__lx 你不会看标程吗


by 血色黄昏 @ 2020-05-10 20:10:39

split,分割函数,百度上有的吧


by DOs__lx @ 2020-05-10 20:14:21

好了这下A了谢谢大家


by algobase @ 2020-05-10 20:49:46

@DOs__lx split把它分割,否则是字符串


by WanderingTrader @ 2020-05-24 14:30:28

Python速成……我怎么想到了不好的东西呢


| 下一页