Cod sursa(job #536668)

Utilizator slilverwolfRadu Ghitescu slilverwolf Data 18 februarie 2011 22:58:57
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include <iostream>
#include <fstream>

using namespace std;

long a,b;
ifstream f("adunare.in");
ofstream g("adunare.out");

int main(void) {
     f<<a<<b;
     g>>a+b;
}