Cod sursa(job #1551640)

Utilizator info_infoVarzan Laurentiu-Adrian info_info Data 16 decembrie 2015 10:28:11
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.22 kb
#include <iostream>
#include <fstream>
using namespace std;
    ifstream f ("adunare.in");
    ofstream g ("adunare.out");
int main()
{
    int a,b,c;
    f>>a;
    f>>b;
    g<<c;
    g.close ();

    return 0;
}