일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- Python
- ROS FOXY 튜토리얼
- foxy nav2
- ros2 transformations 개념
- first-time robot setup guide
- setting up transformations
- CodeUp
- ros2 환경설정
- Foxy tutorial
- error
- CODEUP 6073
- nav2 dev contatiner
- nav2 튜토리얼
- ros2 remapping
- nav2 first-time robot setup guide
- ros2 configuring environment
- Nav2 document
- docker foxy
- nav2 tutorial
- nav2 development guides
- 코드업
- humble 환경설정
- humble development guides
- nav2 설치
- ros2 튜토리얼 환경설정
- nav2 getting started
- ros2 foxy docker
- ros2 development guides
- ros2 foxy tutorial
- ros2 튜토리얼
Archives
- Today
- Total
BAN2ARU
[백준/Python] 10952번 : A+B - 5 본문
반응형
10952번: A+B - 5
두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오.
www.acmicpc.net
풀이 (120b)
import sys
while (True):
a = sum(map(int, sys.stdin.readline().split()))
if a == 0 :
break
print(a)
728x90
'Coding Test > BaekJoon' 카테고리의 다른 글
[백준/Python] 1110번 : 더하기 사이클 (0) | 2022.09.19 |
---|---|
[백준/python] 10951번 : A+B - 4 (0) | 2022.09.14 |
[백준/Python] 10871번: X보다 작은 수 (0) | 2022.08.17 |
[백준/Python] 3003번 : 킹, 퀸, 룩, 비숍, 나이트, 폰 (0) | 2022.08.17 |
[백준/Python] 2438번 : 별찍기 (0) | 2022.05.02 |
Comments