Cod sursa(job #431980)
| Utilizator | Data | 1 aprilie 2010 18:40:55 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | X-Treme April Challenge | Marime | 0.2 kb |
#include<fstream>
#include<cstdio>
using namespace std;
ifstream fin ("adunare.in");
int a,b,s;
int main ()
{
freopen("adunare.out","w",stdout);
fin>>a>>b;
s=a+b;
printf("%d\n",s);
return 0;}
