1000.A+B Problem
Status Time Memory Lang. Submit Date

1000.A+B Problem

Time Limit:1000MS  Memory Limit:655350KB
Description

Calculate A + B,and give me the answer!

Input

Input two integers A and B.(Watch the Sample Input)

Output

For each case, output A + B in one line..(Watch the Sample Output)

Sample test
Sample input
1 2
Sample output
3
Note

Press the Submit to submit your code!
Q: Where is the input and the output?
A: Your program shall read input from stdin(‘Standard Input ‘) and write output to stdout(‘Standard Output ‘).
For example, you can use ‘scanf’ in C or ‘cin’ in C++ to read from stdin, and use ‘printf’ in C or ‘cout’ in C++ to write to stdout. User programs are not allowed to open and read from/write to files, you will get a “Restricted Function” if you try to do so.
Here is a sample solution for problem 1000 using C:

    1. #include <stdio.h>
    2. int main(void)
    3. {
    4. int a,b;
    5. while(scanf("%d%d", &a,&b) != EOF)
    6. printf("%d\n",a+b);
    7. return 0;
    8. }

Here is a sample solution for problem 1000 using C++:

    1. #include <iostream>
    2. using namespace std;
    3. int main(void)
    4. {
    5. int a,b;
    6. while(cin >> a>>b)
    7. cout << a+b<<endl;
    8. return 0;
    9. }

Here is a sample solution for problem 1000 using Java:

    1. import java.util.Scanner;
    2. public class Main {
    3. public static void main(String[] args) {
    4. Scanner in = new Scanner(System.in);
    5. while (in.hasNextInt()) {
    6. int a = in.nextInt();
    7. int b = in.nextInt();
    8. System.out.println(a + b);
    9. }
    10. }
    11. }
Tags
Post editorial
Editorials
Login before submit
Test Input
Test Output
Console
IDE Setting
  • 字体设置
    调整适合你的字体大小。
  • 主题设置
    切换不同的代码编辑器主题,选择适合你的语法高亮。
  • 行宽限制
    设置每一行代码的最大字符个数,设置为0则不限制。