Cod sursa(job #2088074)
Utilizator | Data | 14 decembrie 2017 19:00:36 | |
---|---|---|---|
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()
{
long A,B;
in>>A>>B;
out<<A+B;
return 0;
}