Cod sursa(job #789481)
Utilizator | Data | 18 septembrie 2012 13:08:12 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include<stdio.h>
int main()
{
freopen("adunare.in","r",stdin);
freopen("adunare.out","w",stdout);
int a,b;
scanf("%ld%ld",&a,&b);
printf("%ld\n",a+b);
return 0;
}