Cod sursa(job #1124248)
Utilizator | Data | 26 februarie 2014 11:53:10 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.24 kb |
#include <iostream>
#include <fstream>
using namespace std;
ifstream in("adunare.in");
ofstream out("adunare.out");
int main (void)
{
long a,b;
in>>a>>b;
out<<a+b<<"\n";
in.close ();
out.close ();
return 0;
}