Cod sursa(job #1431294)
Utilizator | Data | 9 mai 2015 10:09:32 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.29 kb |
#include <fstream>
#include <iostream>
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);
}