[PYTHON] 1130 두 수 비교하기

    https://www.acmicpc.net/problem/1330

     

    1330번: 두 수 비교하기

    두 정수 A와 B가 주어졌을 때, A와 B를 비교하는 프로그램을 작성하시오.

    www.acmicpc.net

    import sys
    a,b = map(int, sys.stdin.readline().strip().split(' '))
    # A가 B보다 큰 경우에는 '>'를 출력한다.
    if a > b :
      print('>')
    # A가 B보다 작은 경우에는 '<'를 출력한다.
    if a < b :
      print('<')
    # A와 B가 같은 경우에는 '=='를 출력한다.
    if a == b:
      print('==')

     

    댓글