Cod sursa(job #2225794)
Utilizator | Data | 28 iulie 2018 12:05:40 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include <fstream>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main()
{
int x,y;
fin>>x>>y;
fout<<x+y;
return 0;
}