Cod sursa(job #1702371)
Utilizator | Data | 15 mai 2016 09:27:34 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | preitm2016 | Marime | 0.32 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
long long a,b;
ifstream fin("adunare.in");
fin>>a>>b;
fin.close();
ofstream fout("adunare.out");
//if ((a + b) > 10 && (a + b) < 5000) {
fout<<a+b;
//} else {
// fout<<a-b;
//}
fout.close();
return 0;
}