H. A + B Strikes Back
time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

A + B is often used as an example of the easiest problem possible to show some contest platform. However, some scientists have observed that sometimes this problem is not so easy to get accepted. Want to try?

Input

The input contains two integers a and b (0 ≤ a, b ≤ 103),
separated by a single space.

Output

Output the sum of the given integers.

Examples
input
5 14
output
19
input
381 492
output
873

My Solution

I am glad to come over the interesting problem.^_^

After 5 times of WA, I get a real test and Accepted.

#include <iostream>
#include <cstdio>
using namespace std;
//Happy April Fools Day! Thank you ha ha ha ha ha ha!
int main()
{
int a, b;
scanf("%d%d", &a, &b);
printf("%d", a+b);
return 0;
}

Thank you!

最新文章

  1. 【腾讯优测干货分享】如何降低App的待机内存(二)——规范测试流程及常见问题
  2. [C++][数据结构]队列(queue)的实现
  3. 转:MVC 数据验证
  4. OpenCascade Matrix
  5. Java中的向上转型和向下转型
  6. 织梦内容管理系统(DedeCms) 小说模块insert注入漏洞
  7. module_param()函数
  8. Bash的数组
  9. React&amp;Webpack 环境安装
  10. JS 遍历对象 jQuery遍历对象
  11. PHP artisan migrate 报错显示 could not find driver ,怎么办?
  12. 了解box-sizing 盒子模型
  13. 如何将一个excel表格的数据匹配到另一个表中
  14. [C++]Linux之文件拷贝在系统调用和C库函数下的效率比较
  15. 【最大公约数&amp;链表】权值 @upcexam5921
  16. GMA Round 1 数列求单项
  17. 设计模式之&mdash;&mdash;bridge模式
  18. Linux3.10.0块IO子系统流程(0)-- 块IO子系统概述
  19. V-rep学习笔记:碰撞检测与距离计算
  20. Caocao&#39;s Bridges---hdu4738(桥)

热门文章

  1. Windows:32位程序运行在64位系统上注册表会重定向
  2. java实现搜索文件夹中所有文件包含的关键字的文件路径(递归搜索)
  3. mitmproxy 数据抓包
  4. C# defult关键字
  5. 【C语言】控制台窗口图形界面编程(四):文本输出
  6. Spring Boot . 4 -- 定制 Spring Boot 配置 【2】
  7. jquery attr的属性
  8. linux与linux之间共享目录
  9. Mysql:零散记录
  10. xtu read problem training 4 B - Multiplication Puzzle