Cod sursa(job #473708)
Utilizator | Data | 31 iulie 2010 12:56:42 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.34 kb |
// 1.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <iostream>
#include <fstream>
using namespace std;
ifstream f("adunare.txt");
ofstream g("adunare.out");
int _tmain(int argc, _TCHAR* argv[])
{
long a,b;
f >> a >> b;
g << a+b;
f.close();
g.close();
return 0;
}