Cod sursa(job #3318055)
| Utilizator | Data | 26 octombrie 2025 19:16:03 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp-64 | Status | done |
| Runda | Arhiva de probleme | Marime | 0.28 kb |
/* Author: Ionut Calofir */
/* Date: 2025.10.25 */
/* A+B - https://www.infoarena.ro/problema/adunare */
#include <bits/stdc++.h>
std::ifstream cin("adunare.in");
std::ofstream cout("adunare.out");
int main() {
int a, b;
cin >> a >> b;
cout << a + b << '\n';
return 0;
}
