Cod sursa(job #1327362)

Utilizator TeofilosTeofil Teofilos Data 26 ianuarie 2015 17:31:32
Problema A+B Scor 100
Compilator cpp Status done
Runda Lista lui wefgef Marime 0.17 kb
#include <fstream>
int a, b;
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int main()
{
    f >> a >> b;
    g << a + b;
    return 0;
}