Skip to content

Commit b0d88fa

Browse files
committedMay 19, 2023
230519 Softeer 주행거리 비교하기
1 parent 5dff4d0 commit b0d88fa

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed
 

Diff for: ‎Softeer/Level1/근무시간.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# https://softeer.ai/practice/info.do?idx=1&eid=990
2+
13
import sys
24

35
# 해당 직원이 일주일동안 근무한 총 시간을 분단위로 출력

Diff for: ‎Softeer/Level1/주행거리비교하기.py

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# https://softeer.ai/practice/info.do?idx=1&eid=1016
2+
3+
import sys
4+
5+
a, b = map(int, input().split())
6+
7+
if a > b:
8+
print("A")
9+
elif a < b:
10+
print("B")
11+
else:
12+
print("same")

0 commit comments

Comments
 (0)
Please sign in to comment.