Cod sursa(job #2559328)
Utilizator | Data | 27 februarie 2020 11:18:22 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.2 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main(){
int A=0,B=0;
ifstream f("adunare.in");
ofstream g(" adunare.out");
f>>A>>B;
g<<A+B;
f.close();
g.close();
return 0;
}