Mai intai trebuie sa te autentifici.
Cod sursa(job #2912290)
Utilizator | Data | 7 iulie 2022 21:34:05 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.25 kb |
#include <iostream>
#include <fstream>
using namespace std;
ifstream fin ("input.in");
ofstream fout ("output");
int main()
{
int a, b, c=0;
fin >> a >> b;
c=a+b;
fout << c <<endl;
fin.close ();
fout.close();
return 0;
}