テーマ1000:計算a+b


タイトルの説明:
整数a,bの和を求める.
入力:
テストケースには、動作a,bごとの値が複数行あります.
出力:
a+bの結果に対応する複数行を出力します.
サンプル入力:
1 2

4 5

6 9

サンプル出力:
3

9

15

java Code

import java.util.Scanner;

 

public class Main {

    public static void main(String[] args) {

        Scanner  in = new  Scanner(System.in);

        while(in.hasNextInt()){

            int a = in.nextInt();

            int b = in.nextInt();

            int c = a + b;

            System.out.println(c);

        }

    }

}

 

/**************************************************************

    Problem: 1000

    User: Mokaffe

    Language: Java

    Result: Accepted

    Time:80 ms

    Memory:15468 kb

****************************************************************/

C Code
#include <stdio.h>

int main() {

    int a,b;

    while (scanf("%d %d",&a, &b) != EOF) {

        printf("%d
",a+b); } return 0; } /************************************************************** Problem: 1000 User: Mokaffe Language: C Result: Accepted Time:0 ms Memory:912 kb ****************************************************************/