Cod sursa(job #1003783)

Utilizator andreigateaAndrei Gatea andreigatea Data 1 octombrie 2013 16:17:48
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.17 kb
#include <fstream>
#include <iostream>
using namespace std;
ifstream f ("date.in");
ofstream g ("date.out");
int main()
{
int a,b;
f>>a>>b;
g<<a+b;
    return 0;
}