POJ1000A+Bproblem
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了POJ1000A+Bproblem相关的知识,希望对你有一定的参考价值。
Description
Calculate a+b
Input
Two integer a,b (0<=a,b<=10)
Output
Output a+b
Sample Input
1 2
Sample Output
3
#include<stdio.h> int main() { int a,b; scanf("%d %d",&a,&b); printf("%d\n",a+b); return 0; }
以上是关于POJ1000A+Bproblem的主要内容,如果未能解决你的问题,请参考以下文章