본문 바로가기

Programming [Python]/백준 알고리즘 솔루션

#302 백준 파이썬 [16430] 제리와 톰

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

 

PYTHON CODE

A, B = map(int, input().split())
print(B-A, B)