반응형
Notice
Recent Posts
Recent Comments
Link
«   2024/12   »
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 31
Archives
Today
Total
12-28 09:37
관리 메뉴

ImJay

[파이썬/Python] 백준 2558번 A+B - 2 본문

Solved.ac - Python/Bronze V

[파이썬/Python] 백준 2558번 A+B - 2

ImJay 2022. 7. 11. 05:02
반응형

[파이썬/Python] 백준 2558번 A+B - 2

www.acmicpc.net/problem/2558

 

2558번: A+B - 2

첫째 줄에 A, 둘째 줄에 B가 주어진다. (0 < A, B < 10)

www.acmicpc.net


문제

두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오.

코드

a = int(input())
b = int(input())

print(a+b)

풀이

1. a, b 값을 입력 받는다.

a = int(input())
b = int(input())

 

2. a+b 를 출력한다.

print(a+b)

느낀 점

기존 문제와 입력 방식이 다르다.

 

반응형
Comments