Read integers A and B from input file and write their sum in output file.

Input

Input file contains A and B (0<A,B<10001).

Output

Write answer in output file.

Sample Input

5 3

Sample Output

8

哈哈,用这道超级大水题作为博客第一篇。
 #include <iostream>
#include <cstdio>
using namespace std; int main()
{
int a,b;
scanf("%d%d",&a,&b);
printf("%d\n",a + b);
return ;
}
												

最新文章

  1. Pycharm远程调试
  2. 数据结构:JAVA_二叉数查找树基本实现(上)
  3. Riot - 比 Facebook React 更轻量的 UI 库
  4. 旋转屏幕时,假如自定义的xib大小变了,可能是这个属性没有修改
  5. springMVC获取file,几种转换
  6. 【POJ】【2699】The Maximum Number of Strong Kings
  7. Backbone.js学习之Model
  8. OCP读书笔记(16) - 管理资源
  9. MapReduce(十五): 从HDFS阅读本文的源代码分析
  10. Beginning Python From Novice to Professional (7) - 类别
  11. java网络编程之socket(2)
  12. elasticsearch之分词插件使用
  13. 第二次oo博客作业--多线程电梯
  14. loj#2483. 「CEOI2017」Building Bridges(dp cdq 凸包)
  15. DOM操作技术
  16. Linux下 XordDos(BillGates)木马查杀记录
  17. 【 HDU 4936 】Rainbow Island (hash + 高斯消元)
  18. Ubuntu server 运行.net core api 心得
  19. js获取浏览器类型进行判断
  20. bootstrap前端框架使用总结分享

热门文章

  1. 性能测试实战-XYB项目-外网访问
  2. 《iOS Human Interface Guidelines》——Wallet
  3. The Pragmatic Programmer 读书笔记之中的一个 DRY-Don’t Repeat Youself
  4. linux (debian) 配置静态ip
  5. E - 吃糖
  6. linux用户态和内核态通信之netlink机制【转】
  7. bzoj3132
  8. E20170705-hm
  9. 湖南集训day4
  10. ios-判断手机上是否安装了某个App