Skip to content

Commit

Permalink
[level 0] Title: a와 b 출력하기, Time: 11.38 ms, Memory: 7.42 MB -BaekjoonHub
Browse files Browse the repository at this point in the history
  • Loading branch information
boyamie committed Jun 12, 2024
1 parent 6eea7c4 commit 7442b78
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 0 deletions.
45 changes: 45 additions & 0 deletions 프로그래머스/0/181951. a와 b 출력하기/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# [level 0] a와 b 출력하기 - 181951

[문제 링크](https://school.programmers.co.kr/learn/courses/30/lessons/181951)

### 성능 요약

메모리: 7.42 MB, 시간: 11.38 ms

### 구분

코딩테스트 연습 > 코딩 기초 트레이닝

### 채점결과

정확성: 100.0<br/>합계: 100.0 / 100.0

### 제출 일자

2024년 06월 12일 11:44:00

### 문제 설명

<p>정수 <code>a</code>와 <code>b</code>가 주어집니다. 각 수를 입력받아 입출력 예와 같은 형식으로 출력하는 코드를 작성해 보세요.</p>

<hr>

<h5>제한사항</h5>

<ul>
<li>-100,000 ≤ <code>a</code>, <code>b</code> ≤ 100,000</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>a = 4
b = 5
</code></pre></div>

> 출처: 프로그래머스 코딩 테스트 연습, https://school.programmers.co.kr/learn/challenges
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
a, b = map(int, input().strip().split())
print("a =", a)
print("b =", b)

0 comments on commit 7442b78

Please sign in to comment.