Cod sursa(job #2332402)
Utilizator | Data | 30 ianuarie 2019 18:37:16 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.22 kb |
#include<fstream>
using namespace std;
ifstream fin ("0.in");
ofstream fout ("0.out");
int main()
{
int a,b,c;
fin>>a>>b;
c=a+b;
fout<<c;
fin.close();
fout.close();
return 0;
}