https://www.acmicpc.net/problem/1000]
https://www.acmicpc.net/problem/1001
https://www.acmicpc.net/problem/10998
https://www.acmicpc.net/problem/1008
문제
- 첫째 줄 A와 B를 알맞게 출력한다.
- 입력 값 1 2
a,b = map(int, input().split(' '))
# 1000번 A+B
print(a+b)
# 1001 A-B
print(a-b)
# 10998 AxB
print(a*b)
# 1008 A/B
print(a/b)
풀이
a,b = map(int, input().split(' '))
- map의 두번째 인자인 input().split(' ') : input() 내장함수로 input값을 받아 공백으로 나눕니다.
- 두번째 인자를 int로 숫자형으로 바꿔주고 각각 a와 b에 저장합니다.
https://github.com/menduck/Algorithm
'algorithm > 백준' 카테고리의 다른 글
[PYTHON] 10926번 ??! (0) | 2023.01.05 |
---|---|
[PYTHON] 10869번 사칙연산 (0) | 2023.01.05 |
[JS] 2562 최댓값 (0) | 2022.09.09 |
[JS] 3052 나머지 중복제거(Set/filter&indexOf) (0) | 2022.09.09 |
[JS] 1546 평균 (0) | 2022.09.09 |
댓글