Cod sursa(job #1576309)
Utilizator | Data | 22 ianuarie 2016 11:50:41 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.2 kb |
#include <fstream>
using namespace std;
int main()
{
int A,B;
ifstream fin("adunare.in");
ofstream fout("aduare.out");
fin>>A>>B;
fout<<A+B;
fin.close();
fout.close();
return 0;
}