Cod sursa(job #3301351)
Utilizator | Data | 25 iunie 2025 11:43:26 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include <iostream>
#include <fstream>
std::ifstream fin("input.in");
std::ofstream fout("output.out");
int main()
{
int a, b;
fin >> a >> b;
fout << a + b;
return 0;
}