Cod sursa(job #2610890)
| Utilizator | Data | 5 mai 2020 20:48:34 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp-64 | Status | done |
| Runda | Arhiva de probleme | Marime | 0.18 kb |
#include <fstream>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int x, y;
int main()
{
fin>>x>>y;
fout<<x+y;
return 0;
}
