Pagini recente » Cod sursa (job #354745) | Borderou de evaluare (job #1772037) | Cod sursa (job #24754) | Diferente pentru problema/harddp intre reviziile 3 si 2 | Cod sursa (job #29288)
Cod sursa(job #29288)
// Suma.cpp : Defines the entry point for the console application.
//
//#include "stdafx.h"
#include<fstream.h>
//using namespace std;
//int _tmain(int argc, _TCHAR* argv[])
int main()
{
int a,b;
ifstream f("adunare.in");
ofstream g("adunare.out");
f>>a>>b;
a+=b;
g<<a;
f.close();
g.close();
return 0;
}