Cod sursa(job #2201973)
Utilizator | Data | 6 mai 2018 20:16:45 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.17 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
int a,b;
cin>>a;
cin>>b;
ofstream o("adunare.out");
o<<a+b;
ofstream.close;
return 0;
}