Cod sursa(job #1123453)
| Utilizator | Data | 26 februarie 2014 08:30:53 | |
|---|---|---|---|
| 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");
long a, b, s;
int main()
{in>>a>>b;
s=a+b;
out<<s;
in.close();
return 0;
}
