Cod sursa(job #359282)
| Utilizator | Data | 26 octombrie 2009 15:02:14 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.15 kb |
#include <fstream.h>
#include <stdio.h>
int main()
{
int a = 0, b = 0;
ifstream fin("adunare.in");
fin >> a >> b;
fout << a+b;
return 0;
}