Cod sursa(job #1705355)
Utilizator | Data | 20 mai 2016 12:52:10 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.29 kb |
// bck1.cpp : Defines the entry point for the console application.
//
#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;
}