Cod sursa(job #3315050)
| Utilizator | Data | 11 octombrie 2025 23:45:38 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp-64 | Status | done |
| Runda | Arhiva de probleme | Marime | 0.28 kb |
/* Author: Ionut Calofir */
/* Date: 2025.10.10 */
/* 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;
}
