Cod sursa(job #936207)

Utilizator bogdanpaunFMI Paun Bogdan Gabriel bogdanpaun Data 6 aprilie 2013 01:34:18
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.17 kb
#include <fstream>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.in");
int main()
{
    int a,b;
    f>>a;
    f>>b;
    a+=b;
    g<<a;
}