Cod sursa(job #1405527)

Utilizator swiftytacoPatiu Alexandru swiftytaco Data 29 martie 2015 12:45:26
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.21 kb
#include <iostream>
#include <fstream>

using namespace std;

int main()
{
    ifstream F;
    F.open("adunare.in");
    ofstream G;
    G.open("adunare.out");
    int a,b;
    G<<a+b;
    return 0;
}