Description
输入两个 long long 范围内的整数,输出他们的和。
Input
两个 long long 范围内的整数。
Output
输出的两个大整数的和,保证结果在 long long 范围内。
Sample
Input
2222222222
3333333333
Output
5555555555
#include<stdio.h>
int main()
{
long long int a,b,c;
scanf("%lld %lld",&a,&b);
c=a+b;
printf("%lld",c);
return 0;
}
2222222222
3333333333
运行结果
5555555555
Process returned 0 (0x0) execution time : 8.156 s
Press any key to continue.