P1001 A+B Problem(python)

2022/1/25 11:04:58

本文主要是介绍P1001 A+B Problem(python),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

https://www.luogu.com.cn/problem/P1001

http://noi.openjudge.cn/ch0103/01/

python代码方法一:

a,b=map(int,input().split())

print(a+b)

python代码方法二:

"""
P1001 A+B Problem
https://www.luogu.com.cn/problem/P1001

1.3编程基础之算术表达式与顺序执行 01 A+B问题
http://noi.openjudge.cn/ch0103/01/

"""
s = input().split()

print(int(s[0]) + int(s[1]))



这篇关于P1001 A+B Problem(python)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程