首页 > 其他 > 详细

POJ1000A+Bproblem

时间:2016-08-28 19:28:27      阅读:100      评论:0      收藏:0      [点我收藏+]

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

原文:http://www.cnblogs.com/waishushu/p/5815581.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!