Cod sursa(job #2172579)
Utilizator | Data | 15 martie 2018 17:01:34 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.22 kb |
#include <fstream>
using namespace std;
int main()
{
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int A , B;
fin>>A>>B;
fout<<A+B;
fin.close();
fout.close();
return 0;
}