We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a28ee8 commit ae2e15bCopy full SHA for ae2e15b
code_place/[3202] 더하기 빼기 계산기/README.md
@@ -2,7 +2,7 @@
2
### 채점 결과
3
Accepted
4
### 제출 일자
5
-2026년 03월 25일 21:32:10
+2026년 03월 25일 21:57:12
6
### 성능 요약[추후 구현 예정]
7
- 메모리: N/A KB
8
- 시간: N/A ms
code_place/[3202] 더하기 빼기 계산기/solution.py
@@ -1,2 +1,5 @@
1
-A = input()
-print(eval(A))
+logic = """
+s = input()
+print(eval(s))
+"""
+exec(logic)
0 commit comments