Cod sursa(job #507895)
Utilizator | Data | 7 decembrie 2010 03:52:28 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include <fstream>
using namespace std;
ifstream in("adunare.in");
ofstream out("adunare.out");
int main(void) {
long long a, b;
in >> a >> b;
out << a + b << endl;
}