Cod sursa(job #789792)
Utilizator | Data | 19 septembrie 2012 12:45:32 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.23 kb |
#include<cstdio>
using namespace std;
int main ()
{
freopen ("adunare.in","r",stdin);
freopen ("adunare.out","w",stdout);
int a,b,c;
scanf ("%d%d",&a,&b);
c=a+b;
printf ("%d",c);
return 0;
}