Cod sursa(job #2647111)
| Utilizator | Data | 3 septembrie 2020 11:27:41 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp-32 | Status | done |
| Runda | Arhiva de probleme | Marime | 0.21 kb |
#include<iostream>
#include<fstream>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int main()
{
int a, b, s = 0;
f >> a;
f >> b;
s = a + b;
g << s;
return 0;
}
