-
[백준] 1000번, 1001번 : A+B, A-B 파이썬(python)꾸준히/백준 2021. 7. 1. 23:00
1. 문제 번호 : 1000번, 1001번
https://www.acmicpc.net/problem/1000
https://www.acmicpc.net/problem/1001
2. 언어 : 파이썬(python)
3. 문제 : 두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오.
4. 입력 : 첫째 줄에 A와 B가 주어진다. (0 < A, B < 10)
5. 출력 : 첫째 줄에 A+B를 출력한다. / 첫째 줄에 A-B를 출력한다.
6. 코드
# 1000번 개알못 a, b = map(int,input().split()) print(a+b) # 1001번 개알못 a, b = map(int,input().split()) print(a-b)
'꾸준히 > 백준' 카테고리의 다른 글
[백준] 1152번 : 단어의 개수 파이썬(Python) (0) 2021.07.06 [백준] 1008번 : A/B 파이썬(Python) (0) 2021.07.05 [백준] 1004번 : 어린왕자 파이썬(Python) (0) 2021.07.04 [백준] 1003번 : 피보나치 함수 파이썬(Python) (0) 2021.07.03 [백준] 1002번 : 터렛 파이썬(python) (0) 2021.07.02