a+b

poj上的第一题,开张了,聊作纪念。
#include<stdio.h>
int main()
{
    int a,b;
    scanf("%d%d",&a,&b);
    if(a>0&&b<10)
    a+=b;
    printf("%d",a);
    return 0;
}
原文地址:https://www.cnblogs.com/yuezhihua/p/2378877.html