![[파이썬/Python] 코딩 테스트 첫 대비 백준 추천 문제 및 풀이 1 포스팅 썸네일 이미지](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FlEAw7%2FbtrGNDC2mAZ%2FOOwJTuqa1NeylHjFSQpJE0%2Fimg.png)
코딩테스트/Python
[파이썬/Python] 코딩 테스트 첫 대비 백준 추천 문제 및 풀이 1
✋ [파이썬/Python] 코딩 테스트 첫 대비 백준 추천 문제 및 풀이 1 ⚡️ 백준 문제풀이 📌 백준 1000번 A+B [Python Code] a, b = map(int,input().split()) print(a+b) 📌 백준 1008번 A/B [Python Code] a,b = map(int, input().split()) print(a/b) 📌 백준 2558번 A+B 2줄로 입력 받기 [Python Code] a = int(input()) b = int(input()) print(a+b) 📌 백준 2588번 곱셈 (세자리 수 * 세자리 수) [Python Code] a = int(input()) b = input() print(a*int(b[2])) print(a*int(b[1])) print..