Cod sursa(job #432153)
Utilizator | Data | 1 aprilie 2010 21:44:17 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | X-Treme April Challenge | Marime | 0.19 kb |
#include<stdio.h>
int main()
{
long a,b;
freopen("adunare.in","r",stdin);
freopen("adunare.out","w",stdout);
scanf("%ld",&a);
scanf("%ld",&b);
printf("%ld",a+b);
return 0;
}