Cod sursa(job #1430487)
Utilizator | Data | 8 mai 2015 15:30:12 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.23 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
ifstream file;
ofstream out;
file.open("adunare.in");
out.open("adunare.out");
file >> a;
file >> b;
out << (a + b);
return 0;
}