Cod sursa(job #3157530)
Utilizator | Data | 15 octombrie 2023 17:56:44 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.21 kb |
#include <iostream>
#include <fstream>
using namespace std;
ifstream in("adunare.in");
ofstream out("adunare.out");
int main()
{
int a, b, s = 0;
in >> a >> b;
s = a + b;
out << s;
return 0;
}