Skip to content
This repository has been archived by the owner on Aug 15, 2020. It is now read-only.

lazwa34/learngit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Cube-Wang's

My first Makedown code

markdowm.md

一、

This is a blockquote.

This is the second paragraph in the blockquote.

Welcome to my home!

Case1:WZH

Case2:JHK

Case3:QYC


二、插入链接

baidu

Google


三、列表

  • Number1:Windows

  • Number2:Linux

  • Number3:Mac OS

1.C

2.c++

3.Java

4.Python


四、斜体、粗体

这里是斜体

这里是加粗


五、表格

课程 星期一 星期二 星期三 星期四 星期五 星期六 星期日
C语言 高等数学 离散数学 近代史纲要 Python

Next

HDU_OJ 1089

Problem:A+B for Input-Output Practice (I)

Problem Description

Your task is to Calculate a + b. Too easy?! Of course! I specially designed the problem for acm beginners. You must have found that some problems have the same titles with this one, yes, all these problems were designed for the same aim.

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
10 20

Sample Output

6
30

Coed

#include<stdio.h>
int main()
{
   int a,b,s;
   while(scanf("%d%d",&a,&b)!=EOF)
       printf("%d\n",a+b);
   return 0;
}

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages