Cod sursa(job #1123452)
Utilizator | Data | 26 februarie 2014 08:30:02 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.17 kb |
#include <fstream>
using namespace std;
ifstream in("suma.in");
ofstream out("suma.out");
long a, b, s;
int main()
{in>>a>>b;
s=a+b;
out<<s;
in.close();
return 0;
}