목록Python Algorithm (133)
cool hamsters never sleep
백준 10998. AxB
a, b = map(int, input().split()) print(a * b)
Python Algorithm
2022. 7. 14. 14:12
백준 1001. A-B
a, b = map(int, input().split()) print(a - b)
Python Algorithm
2022. 7. 14. 14:12
백준 1000. A+B
a, b = map(int, input().split()) print(a + b) 1. 숫자를 동시에 입력받고 정수로 변환하기 a, b = map(int, input().split())
Python Algorithm
2022. 7. 14. 14:11
백준 10172. 개
print("|\\_/|") print("|q p| /}") print('( 0 )"""\\') print('|"^"` |') print("||_/=\\\__|") 1. 큰/작은 따옴표 출력하기 작은/큰 따옴표로 묶기 2. 큰 따옴표와 작은 따옴표 동시 출력하기 앞에 역슬래시 붙이기
Python Algorithm
2022. 7. 14. 14:10
백준 10171. 고양이
print("\ /\\") print(" ) ( ')") print("( / )") print(" \(__)|") 1. 역슬래시 출력하기 출력하려는 역슬래시 앞에 역슬래시 붙이기
Python Algorithm
2022. 7. 14. 14:07
백준 10718. We love kriii
print("강한친구 대한육군") print("강한친구 대한육군")
Python Algorithm
2022. 7. 14. 14:05