Cod sursa(job #1655848)
Utilizator | Data | 18 martie 2016 13:38:50 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.31 kb |
// Problema.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <fstream>
#include<iostream>
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();
return 1;
}