Cod sursa(job #2924161)
Utilizator | Data | 26 septembrie 2022 15:07:04 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include <fstream>
using namespace std;
ifstream wi("adunare.in");
ofstream wo("adunare.out");
int main()
{
int a, b;
wi >> a >> b;
wo << a + b;
return 0;
}