POJ 1000 A+B

#include <stdio.h>

int main()
{
    int a,b;
    scanf("%d %d",&a, &b);
    printf("%d\n",a+b);
    return 0;
}
posted @ 2016-05-21 23:31  zhou23  阅读(129)  评论(0编辑  收藏  举报