Cod sursa(job #3351523)
| Utilizator | Data | 20 aprilie 2026 01:11:47 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp-64 | Status | done |
| Runda | Arhiva de probleme | Marime | 0.28 kb |
/* Author: Ionut Calofir */
/* Date: 2026.04.20 */
/* 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;
}
