백준 1001번: A-B (Python)

whyhy·2023년 7월 27일
0

[백준] Python

목록 보기
2/3

문제 / 입력 / 출력

풀이

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

Point

백준 1000번과 동일

  • map() -> mapping
  • input().split() -> 쪼개기

algorithm

입력받은 문자열을 쪼개고 -> 더해서 출력

profile
킵고잉🐢

0개의 댓글