Skip to content

Commit

Permalink
[level 0] Title: 덧셈식 출력하기, Time: 16.92 ms, Memory: 7.55 MB -BaekjoonHub
Browse files Browse the repository at this point in the history
  • Loading branch information
boyamie committed Jun 12, 2024
1 parent 72456a6 commit 92abb41
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 0 deletions.
45 changes: 45 additions & 0 deletions 프로그래머스/0/181947. 덧셈식 출력하기/README.md
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
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)

0 comments on commit 92abb41

Please sign in to comment.