[백준] #2420 사파리월드 python
2023. 2. 15. 06:00
https://www.acmicpc.net/problem/2420
📕 설명 📕
두 수의 차의 절댓값을 구한다.
🧑🏻💻 나의 풀이 🧑🏻💻
N, M = map(int, input().split())
print(abs(N-M))
'Programming > Algorithm' 카테고리의 다른 글
[백준] #2789 유학 금지 python (0) | 2023.02.17 |
---|---|
[백준] #2744 대소문자 바꾸기 python (0) | 2023.02.16 |
[백준] #2309 일곱 난쟁이 python (0) | 2023.02.14 |
[백준] #2386 도비의 영어 공부 python (0) | 2023.02.13 |
[백준] #1864 문어 숫자 python (0) | 2023.02.12 |