Cod sursa(job #1158467)
Utilizator | Data | 28 martie 2014 21:12:10 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.26 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main () {
ifstream in ("adunare.in");
long long a, b;
in >> a >> b;
in.close ();
ofstream out ("adunare.out");
out << a+b;
out.close ();
return 0;}