█████████ ████ ███░░░░░███ ░░███ ███ ░░░ ██████ ███████ ██████ ██████ ░███ ███░░███ ███░░███ ███░░███ ███░░███ ░███ ░███ ░███░███ ░███ ░███████ ░███ ░███ ░░███ ███░███ ░███░███ ░███ ░███░░░ ░███ ░███ ░░█████████ ░░██████ ░░████████░░██████ ░░██████ ░░░░░░░░░ ░░░░░░ ░░░░░░░░ ░░░░░░ ░░░░░░

Envío 4042

Problema 0x78 - Suma de 2 números

  • Autor: Juan Jr
  • Fecha: 2021-04-30 19:17:13 UTC (Hace casi 3 años)
Caso # Resultado Tiempo Memoria
#1
Correcto
0.004 s 17 KBi
#2
Correcto
0.004 s 12 KBi
#3
Correcto
0.003 s 0 KBi
#4
Correcto
0.003 s 7 KBi
#5
Correcto
0.004 s 5 KBi
Puntos totales: 100 / 100

Código

#include <bits/stdc++.h>
using namespace std;

#define endl '\n'
#define ll long long
#define sz(x) int(x.size())
#define dbg(x) cout << #x << " = " << x << endl

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(0);
    int a, b; cin >> a >> b;
    cout << a + b << endl;
    return 0;
}