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

Envío 6936

Problema 0x60 - ¿Mayor, menor o igual?

  • Autor: Juanes2002
  • Fecha: 2023-03-17 00:08:06 UTC (Hace alrededor de 1 año)
Caso # Resultado Tiempo Memoria
#1
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 4
    if a = b:
         ^
SyntaxError: invalid syntax
0.017 s 3 KBi
#2
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 4
    if a = b:
         ^
SyntaxError: invalid syntax
0.016 s 3 KBi
#3
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 4
    if a = b:
         ^
SyntaxError: invalid syntax
0.016 s 3 KBi
#4
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 4
    if a = b:
         ^
SyntaxError: invalid syntax
0.016 s 3 KBi
#5
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 4
    if a = b:
         ^
SyntaxError: invalid syntax
0.015 s 3 KBi
#6
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 4
    if a = b:
         ^
SyntaxError: invalid syntax
0.014 s 3 KBi
#7
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 4
    if a = b:
         ^
SyntaxError: invalid syntax
0.016 s 3 KBi
#8
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 4
    if a = b:
         ^
SyntaxError: invalid syntax
0.015 s 3 KBi
#9
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 4
    if a = b:
         ^
SyntaxError: invalid syntax
0.014 s 3 KBi
#10
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 4
    if a = b:
         ^
SyntaxError: invalid syntax
0.019 s 3 KBi
Puntos totales: 0 / 100

Código

a, b = [int(x) for x in input().split()]
if a < b:
  print("<")
if a = b:
  print("=")
if a > b:
  print(">")