Cod sursa(job #154180)
| Utilizator | Data | 10 martie 2008 22:56:03 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.16 kb |
#include<iostream.h>
#include<fstream.h>
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int a,b;
void main()
{
fin>>a;
fin>>b;
fout<<a+b;
}
