Cod sursa(job #1377106)

Utilizator RaduInfoZamfir Radu RaduInfo Data 5 martie 2015 20:09:16
Problema A+B Scor 0
Compilator cpp Status done
Runda rommmmm Marime 0.19 kb
#include <iostream>
#include <fstream>
using namespace std;
ifstream f ("date.in");
ofstream g ("date.out"); long long a,b;
int main()
{
    f >> a >> b;
    g << a+b;
    return 0;
}