Cod sursa(job #3279437)
Utilizator | Data | 22 februarie 2025 22:34:51 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.28 kb |
/* Author: Ionut Calofir */
/* Date: 2025.02.22 */
/* 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;
}