Cod sursa(job #2193020)
Utilizator | Data | 8 aprilie 2018 13:31:15 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.2 kb |
#include <iostream>
#include <fstream>
int main()
{
int a, b;
std::ifstream f ("adunare.in");
std::ofstream g ("rezultat.out");
f >> a >> b;
g << a + b;
return 0;
}