Cod sursa(job #1458000)

Utilizator deleted_2dbcc643895c1cb0DELETED deleted_2dbcc643895c1cb0 Data 5 iulie 2015 15:12:42
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.19 kb
#include <iostream>
#include <fstream>
using namespace std;

int main()
{
    ifstream f("adunare.in.txt");
    ofstream g("adunare.out.txt");
    long a,b;
    f>>a>>b;
    g<<a+b;
}