Cod sursa(job #2912291)
Utilizator | Data | 7 iulie 2022 21:37:30 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include <fstream>
using namespace std;
ifstream fin ("input.in");
ofstream fout ("output");
int main()
{
int a, b;
fin >> a >> b;
fout << a + b <<endl;
return 0;
}