题解 | A+B
A+B
https://www.nowcoder.com/practice/b183eac8dfba4de99d47c1ca4ce9571f
s=input().replace(',','').split(' ')//替换',',分割成列表
print(int(s[0])+int(s[1]))//强转int
#python3#A+B
https://www.nowcoder.com/practice/b183eac8dfba4de99d47c1ca4ce9571f
s=input().replace(',','').split(' ')//替换',',分割成列表
print(int(s[0])+int(s[1]))//强转int
#python3#相关推荐
招聘动态