1001. A-B

1931 단어 백준백준

solution 1

a,b = map(int, input().split())
print(a-b)

solution 2

def dif_AB(string):
    a,b = map(int, string.split())
    return a-b
print(dif_AB(input()))

programmers나, 향후 코딩 연습할 때를 위해서도 되도록 함수화시켜서 다시 문제를 풀어보는 것이 도움이 될 듯 하다.

좋은 웹페이지 즐겨찾기