-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[level 0] Title: 덧셈식 출력하기, Time: 16.92 ms, Memory: 7.55 MB -BaekjoonHub
- Loading branch information
Showing
2 changed files
with
47 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# [level 0] 덧셈식 출력하기 - 181947 | ||
|
||
[문제 링크](https://school.programmers.co.kr/learn/courses/30/lessons/181947) | ||
|
||
### 성능 요약 | ||
|
||
메모리: 7.55 MB, 시간: 16.92 ms | ||
|
||
### 구분 | ||
|
||
코딩테스트 연습 > 코딩 기초 트레이닝 | ||
|
||
### 채점결과 | ||
|
||
정확성: 100.0<br/>합계: 100.0 / 100.0 | ||
|
||
### 제출 일자 | ||
|
||
2024년 06월 12일 11:58:11 | ||
|
||
### 문제 설명 | ||
|
||
<p>두 정수 <code>a</code>, <code>b</code>가 주어질 때 다음과 같은 형태의 계산식을 출력하는 코드를 작성해 보세요.</p> | ||
<div class="highlight"><pre class="codehilite"><code>a + b = c | ||
</code></pre></div> | ||
<hr> | ||
|
||
<h5>제한사항</h5> | ||
|
||
<ul> | ||
<li>1 ≤ <code>a</code>, <code>b</code> ≤ 100</li> | ||
</ul> | ||
|
||
<hr> | ||
|
||
<h5>입출력 예</h5> | ||
|
||
<p>입력 #1</p> | ||
<div class="highlight"><pre class="codehilite"><code>4 5 | ||
</code></pre></div> | ||
<p>출력 #1</p> | ||
<div class="highlight"><pre class="codehilite"><code>4 + 5 = 9 | ||
</code></pre></div> | ||
|
||
> 출처: 프로그래머스 코딩 테스트 연습, https://school.programmers.co.kr/learn/challenges |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
a, b = map(int, input().split()) | ||
print(a,'+',b,'=',a+b) |