Cod sursa(job #331314)
Utilizator | Data | 13 iulie 2009 17:56:56 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | c | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include<stdio.h>
int main( void )
{
long int A, B;
freopen("adunare.in", "r", stdin);
freopen("adunare.out", "w", stdout);
scanf("%ld%ld", &A, &B);
printf("%ld", A+B);
return 0;
}