Cod sursa(job #3329759)
| Utilizator | Data | 15 decembrie 2025 14:45:45 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp-64 | Status | done |
| Runda | Lista lui wefgef | Marime | 0.21 kb |
#include <bits/stdc++.h>
using namespace std;
ifstream fin ("adunare.in");
ofstream fout ("adunare.out");
int main()
{
int n, m, S;
fin >> n >> m;
S = n + m;
fout << S;
return 0;
}
