-
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: a와 b 출력하기, Time: 11.38 ms, Memory: 7.42 MB -BaekjoonHub
- Loading branch information
Showing
2 changed files
with
48 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] 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 |
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,3 @@ | ||
a, b = map(int, input().strip().split()) | ||
print("a =", a) | ||
print("b =", b) |