A=int(input("숫자를 입력해주세요~~^^:"))
B=int(input("숫자를 또 한번 입력해주세요~~^^:"))

print(abs(A-B))
print(A-B if A>B else B-A)


감동ㅠ ㅠ