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

Envío 7257

Problema 0x60 - ¿Mayor, menor o igual?

  • Autor: mike10
  • Fecha: 2024-04-12 18:57:45 UTC (Hace 26 días)
Caso # Resultado Tiempo Memoria
#1
Correcto
0.001 s 0 KBi
#2
Correcto
0.003 s 0 KBi
#3
Incorrecto
0.001 s 0 KBi
#4
Correcto
0.001 s 0 KBi
#5
Incorrecto
0.001 s 0 KBi
#6
Incorrecto
0.001 s 0 KBi
#7
Correcto
0.001 s 0 KBi
#8
Correcto
0.001 s 0 KBi
#9
Correcto
0.001 s 0 KBi
#10
Incorrecto
0.001 s 0 KBi
Puntos totales: 60 / 100

Código

#include <iostream>

using namespace std;

int main() {
    int a, b;
    cin >> a >> b;
    if (a > b) {
        cout << ">";
    } else if (a < b) {
        cout << "<";
    } else {
        cout << "==";
    }
    return 0;

}