etc/Coding Test
[codeup] 117. 큰 수 - 작은 수
Jun's N
2022. 1. 16. 19:08
n = list(map(int, input().split()))
print(max(n)-min(n))
728x90