Cod sursa(job #1889750)

Utilizator matei124Anghelescu Matei matei124 Data 22 februarie 2017 21:10:15
Problema A+B Scor 0
Compilator cpp Status done
Runda teme_upb Marime 0.19 kb
#include <iostream>
#include <fstream>

using namespace std;

int main()
{int A,B;
ifstream f("p1.txt");
ofstream g("p2.txt");
f>>A>>B;
g<<A+B;
f.close();
g.close();
    return 0;
}