Cod sursa(job #1675085)

Utilizator AndreiStAndrei Popa AndreiSt Data 5 aprilie 2016 08:46:30
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.21 kb
#include <iostream>
#include <fstream>
using namespace std;
ifstream f("fisier.in");
ofstream g("fisier.out");
int a,b;
int main()
{
    f>>a>>b;
    g<<a+b;
    f.close();
    g.close();
    return 0;
}