[BZOJ1000] A+B Problem
Posted CtrlCV
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[BZOJ1000] A+B Problem相关的知识,希望对你有一定的参考价值。
Description
Calculate a+b
Input
Two integer a,b (0<=a,b<=10)
Output
Output a+b
Sample Input
1 2
Sample Output
3
HINT
C++
1 #include <iostream> 2 using namespace std; 3 int main() 4 { 5 int a, b; 6 cin >> a >> b; 7 cout << a + b << endl; 8 return 0; 9 }
Pascal
1 var 2 a, b:Integer; 3 begin 4 Readln(a, b); 5 Writeln(a + b); 6 end.
以上是关于[BZOJ1000] A+B Problem的主要内容,如果未能解决你的问题,请参考以下文章