코딩테스트/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..