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

Envío 7301

Problema 0x60 - ¿Mayor, menor o igual?

  • Autor: manuel claros
  • Fecha: 2024-05-14 16:46:37 UTC (Hace 4 meses)
Caso # Resultado Tiempo Memoria
#1
Correcto
0.069 s 16 KBi
#2
Correcto
0.06 s 16 KBi
#3
Correcto
0.078 s 16 KBi
#4
Correcto
0.056 s 15 KBi
#5
Correcto
0.068 s 16 KBi
#6
Correcto
0.062 s 15 KBi
#7
Correcto
0.063 s 16 KBi
#8
Correcto
0.06 s 15 KBi
#9
Correcto
0.075 s 15 KBi
#10
Correcto
0.063 s 16 KBi
Puntos totales: 100 / 100

Código

import java.util.Scanner;

public class Main{
    public static void main(String[] args) {
 Scanner SC = new Scanner(System.in);

int a = SC.nextInt();
int b = SC.nextInt();

if (a < b ){
 System.out.print("<");
}else if (a == b){System.out.print("=");}
else{System.out.print(">");}

}}