Cod sursa(job #214639)
| Utilizator | Data | 15 octombrie 2008 14:49:45 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.15 kb |
#include<fstream.h>
int main()
{
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int x;
int y;
fin>>x>>y;
fout<<x+y;
return 0;
}
