# a,b=input().split()
# a=int(a)
# b=int(b)
# print(a==b)
# a,b=input().split()
# a=int(a)
# b=int(b)
# print(a<=b)
# a,b=input().split()
# a=int(a)
# b=int(b)
# print(a!=b)
# a, b = map(int, input().split())
# a = bool(a)
# b = bool(b)
#
# # 0, None, [], (), {}
#
# print(a and b)
# print(a or b)
# print(not a)
# a=int(input())
# a=bool(a)
#
# print(a)
# a=int(input())
# a=bool(a)
#
# print(not a)
# a,b=map(int,input().split())
# a=bool(a)
# b=bool(b)
#
# print(a and b)
# a,b=map(int,input().split())
# a=bool(a)
# b=bool(b)
#
# print(a or b)
# a,b=map(int,input().split())
# a=bool(a)
# b=bool(b)
#
# print(a!=b)
# a,b=map(int,input().split())
# a=bool(a)
# b=bool(b)
#
# print(a==b)
# a,b=map(int,input().split())
# a=bool(a)
# b=bool(b)
#
# print(not (a or b))
#
# ''' Answer Your Code Result
# False False: True >
# False True: False >
# True False: False >
# True True: False >
#
# '''
#
# x, y = map(int, input().split())
#
# v = x - y if x > y else y - x
# # Condition ? AnswerA : AnswerB
#
# print(v)
x,y=map(int,input().split())
v=x-y if else
print(v)
top of page

실제 작동 상태를 확인하려면 라이브 사이트로 이동하세요.
20221013
20221013
댓글 0개
좋아요
댓글(0)
더 이상 게시물에 대한 댓글 기능이 지원되지 않습니다. 자세한 사항은 사이트 소유자에게 문의하세요.
bottom of page


