Cod sursa(job #2518261)
Utilizator | Data | 5 ianuarie 2020 13:43:05 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.22 kb |
#include <iostream>
#include <fstream>
int main () {
int x , y;
std::cin>> x >> y;
std::ofstream myfile;
myfile.open ( "adunare.in" );
myfile << x+y;
myfile.close();
std::cout<< x+y;
return 0;
}