Cod sursa(job #1054699)
Utilizator | Data | 14 decembrie 2013 09:54:15 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.31 kb |
// 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;
}