Cod sursa(job #1537856)
Utilizator | Data | 28 noiembrie 2015 11:08:22 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.25 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
ifstream fin ("data.in") ;
ofstream fout ("data.out") ;
int a, b;
fin >> a;
fin >> b;
fout << "a + b = ";
fout << a+b;
return 0;
}