Cod sursa(job #1431282)
Utilizator | Data | 9 mai 2015 10:04:34 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.29 kb |
#include <fstream.h>
#include <iostream.h>
int main(void)
{
signed long a,b;
fstream fin("adunare.in", ios::in);
fin >> a;
fin >> b;
fin.close();
fstream fout("adunare.out", ios::out);
fout << (a + b);
fout.close();
return(0);
}