Skip to content

Commit

Permalink
[Bronze V] Title: A+B - 9, Time: 40 ms, Memory: 31120 KB, Score: 100 …
Browse files Browse the repository at this point in the history
…point -BaekjoonHub
  • Loading branch information
ffvv0123 committed Oct 2, 2024
1 parent c5de561 commit b0b89a0
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
5 changes: 5 additions & 0 deletions 백준/Bronze/15740. A+B - 9/A+B - 9.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import sys
input = sys.stdin.readline

a, b = map(int, input().split())
print(a+b)
28 changes: 28 additions & 0 deletions 백준/Bronze/15740. A+B - 9/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# [Bronze V] A+B - 9 - 15740

[문제 링크](https://www.acmicpc.net/problem/15740)

### 성능 요약

메모리: 31120 KB, 시간: 40 ms

### 분류

임의 정밀도 / 큰 수 연산, 사칙연산, 수학

### 제출 일자

2024년 10월 2일 13:17:34

### 문제 설명

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

### 입력

<p>첫째 줄에 <em>A</em>와 <em>B</em> (-10<sup>10000</sup> ≤ <em>A</em>, <em>B</em> ≤ 10<sup>10000</sup>)가 주어진다.</p>

### 출력

<p>첫째 줄에 <em>A</em>+<em>B</em>를 출력한다.</p>

0 comments on commit b0b89a0

Please sign in to comment.