Cod sursa(job #755242)
Utilizator | Data | 5 iunie 2012 08:40:13 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.27 kb |
#include <iostream>
02.#include <fstream>
03.using namespace std;
04.double a,b;
05.int main()
06.{
07.ifstream fin("adunare.in");
08.ofstream fout("adunare.out");
09.
10.fin>>a>>b;
11.fout<<a+b<<endl;
12.
13.fin.close();
14.fout.close();
15.return 0;
16.}