Cod sursa(job #3323899)
| Utilizator | Data | 20 noiembrie 2025 12:11:43 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp-64 | Status | done |
| Runda | Arhiva de probleme | Marime | 0.26 kb |
#include <bits/stdc++.h>
using namespace std;
int main() {
freopen("adunare.in", "r", stdin);
freopen("adunare.out", "w", stdout);
ios::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
int a, b; cin >> a >> b;
cout << a + b;
}
