Cod sursa(job #954697)
Utilizator | Data | 29 mai 2013 21:18:26 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.25 kb |
/*
Andrei Simionescu
ansimionescu.com
*/
#include <iostream>
#include <fstream>
using namespace std;
int main() {
ifstream in;
ofstream out;
in.open("adunare.in");
out.open("adunare.out");
int a, b;
in >> a >> b;
out << a + b;
return 0;
}