A+B
Posted gznb
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了A+B相关的知识,希望对你有一定的参考价值。
A+B
Problem Description
A+B
Input
1
1
1
Output
2
Sample Input
1 2
Sample Output
3
解释:
双手打字,以示清白。
1 #include<bits/stdc++.h> 2 3 using namespace std; 4 5 6 int main () 7 long long int a, b; 8 while (~scanf("%lld %lld", &a, &b)) 9 printf("%lld\n", a + b); 10 11 return 0; 12
以上是关于A+B的主要内容,如果未能解决你的问题,请参考以下文章
理解 Python 交换:为啥 a, b = b, a 并不总是等价于 b, a = a, b?
为啥“a+++++b”不能在gcc中编译,而“a+++b”、“a++ + ++b”、“a+++ ++b”可以? [复制]
1.python的 a,b=b,a+b 和 a=b b=a+b 的区别