[2557번] Hello World
print("Hello World!")
[1000번] A+B
A, B = input().split()
print(int(A) + int(B))
a, b = map(int, input().split())
print(a + b)
[1001번] A-B
A, B = input().split()
print(int(A) - int(B))
[10998번] A*B
a, b = map(int, input().split())
print(a * b)
[1008번] A/B
a, b = map(int, input().split())
print(a / b)
워낙 간단한 문제들이라 부연 설명 없이 깃허브 링크 첨부!
https://github.com/yenyen31/BaekjoonAlgorithm
반응형
'Programming Language > Python3.6' 카테고리의 다른 글
[python 파이썬] while문으로 구구단 출력하는 코드 (0) | 2024.04.21 |
---|---|
[python 파이썬] 문자열을 포매팅하는 다양한 방식 (1) | 2024.04.20 |
[Python 파이썬] 피보나치 수열 구현하기 (공간 최적화) (0) | 2024.01.26 |
[알고리즘] [Divide and Conquer 분할 정복] 1부터 N까지 더하는 문제를 분할 정복으로 구현하기 (0) | 2024.01.26 |
[Python 파이썬] 두 리스트 원소들 중에 두 원소를 곱한 값이 최대가 되는 경우 구하기 (1) | 2024.01.26 |