Cod sursa(job #955338)
Utilizator | Data | 31 mai 2013 16:35:03 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.29 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;
}