POJ 1000 A+B Problem

poj 1000

为了完整性,额,强迫症~

#include <stdio.h>

int main(int argc, char* argv[])
{
    int a, b;
    scanf("%d %d", &a, &b);
    printf("%d\n", a+b);
    return 0;
}

你可能感兴趣的:(c,poj)