博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python基础 -- acm
阅读量:6762 次
发布时间:2019-06-26

本文共 662 字,大约阅读时间需要 2 分钟。

  hot3.png

浙大acm,第一题

Calculate a + b

Input

The input will consist of a series of pairs of integers a and b,separated by a space, one pair of integers per line.

Output

For each pair of input integers a and b you should output the sum of a and b in one line,and with one line of output for each line in input.

Sample Input

1 5

Sample Output

6

Hint

Use + operator

折腾了好几次,惨不忍睹啊。还好最后解决了,不然得纠结的睡不着觉啊。

def main():    while True:        try:            str = raw_input()            if str != '':                print int(str.split(' ')[0]) + int(str.split(' ')[1])        except:            return 0if __name__ == '__main__':    main()

转载于:https://my.oschina.net/lpe234/blog/309404

你可能感兴趣的文章
ubuntu server 使用parted分区
查看>>
自定义网页日历
查看>>
solr实现满足指定距离范围条件的搜索
查看>>
ubuntu vsftp安装
查看>>
[转载]Web前端研发工程师编程能力飞升之路
查看>>
Redis
查看>>
XINS 3.0 正式版发布,远程 API 调用规范
查看>>
sqlserver 2005 64bit express
查看>>
(转)Oracle中For和while及一些应用
查看>>
jQuery基础及选择器
查看>>
DragonFly BSD 3.2 发布
查看>>
Mozilla 发布 Popcorn Maker,在线创作视频
查看>>
C#中为什么需要装箱拆箱操作?
查看>>
PHP类中一般方法与静态方法的疑问
查看>>
[转]PHP花括号变量
查看>>
【Opencv学习】摄像头采集、录像、截图小工具
查看>>
Fedora16安装中文语言包和中文输入法
查看>>
Windows 8实用窍门系列:14.windows 8中粘贴板(剪切板)的使用
查看>>
长连接API小心“窜包”问题
查看>>
开发者基础知识游戏,共10关,欢迎挑战
查看>>