|
Problem Description
Your task is to Calculate a + b.
|
|
Input
Input contains an integer N in the first line, and then N lines follow. Each line consists of a pair 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
2 1 5 10 20 |
|
Sample Output
6 30 |
|
Author
lcy
|
|
Recommend
JGShining
|
#include<stdio.h>
main()
{ int a,b,i,num;
scanf("%d",&num);
for(i=0;i<num;i++)
{ scanf("%d%d",&a,&b);
printf("%d\n",a+b);
}
}
本文提供了一个简单的C语言程序示例,用于计算两个整数的和。程序通过读取输入的整数对数量,然后依次读取每对整数并输出它们的和。

343

被折叠的 条评论
为什么被折叠?



