Pagini recente » Cod sursa (job #1459356) | Cod sursa (job #1460997) | Diferente pentru problema/inversmodular intre reviziile 55 si 54 | Diferente pentru problema/inversmodular intre reviziile 117 si 3 | Cod sursa (job #1054699)
// test.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include<iostream>
#include<fstream>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int a, b;
int _tmain(int argc, _TCHAR* argv[])
{
f >> a >> b;
g << a + b;
return 0;
}