Cod sursa(job #340785)

Utilizator thecallofktuluvalentin thecallofktulu Data 16 august 2009 15:48:48
Problema A+B Scor 100
Compilator cpp Status done
Runda Lista lui wefgef Marime 0.17 kb
#include "fstream"
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");

int main()
{
long int a,b;
f>>a>>b;
g<<a+b;
f.close();
g.close();
}