Cod sursa(job #353410)
| Utilizator | Data | 5 octombrie 2009 00:13:43 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Lista lui wefgef | Marime | 0.16 kb |
#include <fstream.h>
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main() {
int a,b;
fin>>a>>b;
fout<<a+b;
fin.close();
fout.close();
}