A+B

Posted gznb

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了A+B相关的知识,希望对你有一定的参考价值。

A+B

Problem Description

A+B

Input

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 
View Code

 

 


以上是关于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 的区别

分治法求sum(a,b)=1+a+a^2+...+a^b=?

python运算符

从键盘输入两个整数a、b,如果a>b,则输出a%b,如果输出a<b,则输出b%a?python