Cod sursa(job #1705353)
Utilizator | Data | 20 mai 2016 12:51:03 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.31 kb |
// bck1.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <iostream>
#include <fstream>;
using namespace std;
int main() {
ifstream f("adunare.in");
ofstream g("adunare.out");
long int a, b;
f >> a >> b;
g << a + b;
f.close();
g.close();
return 0;
}