Cod sursa(job #1889755)

Utilizator matei124Anghelescu Matei matei124 Data 22 februarie 2017 21:12:45
Problema A+B Scor 100
Compilator cpp Status done
Runda teme_upb Marime 0.18 kb

#include <fstream>

using namespace std;

int main()
{int A,B;
ifstream f("adunare.in");
ofstream g("adunare.out");
f>>A>>B;
g<<A+B;
f.close();
g.close();
    return 0;
}