Cod sursa(job #3184685)
Utilizator | Data | 16 decembrie 2023 15:14:34 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include <iostream>
#include <fstream>
using namespace std;
int x,y;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main()
{ fin>>x>>y;
fout<<x+y;
return 0;
}