Skip to content

Commit ae2e15b

Browse files
committed
2026년 03월 25일 21:57:12
1 parent 3a28ee8 commit ae2e15b

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

code_place/[3202] 더하기 빼기 계산기/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
### 채점 결과
33
Accepted
44
### 제출 일자
5-
2026년 03월 25일 21:32:10
5+
2026년 03월 25일 21:57:12
66
### 성능 요약[추후 구현 예정]
77
- 메모리: N/A KB
88
- 시간: N/A ms
Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
1-
A = input()
2-
print(eval(A))
1+
logic = """
2+
s = input()
3+
print(eval(s))
4+
"""
5+
exec(logic)

0 commit comments

Comments
 (0)