Cod sursa(job #2420424)
Utilizator | Data | 11 mai 2019 21:16:15 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp-32 | Status | done |
Runda | Arhiva de probleme | Marime | 0.2 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
int a,b;
cin >>a>>b;
ofstream f ("adunare.in");
f<<a<<b;
ofstream g("adunare.out");
f<<a<<b;
g<<a+b;
}