Programming/Python & Data Structures
[Baekjoon/Python3] 2935번 소음
HooNeee
2020. 12. 4. 17:11
[Baekjoon/Python3] 2935번 소음
2935번: 소음
수업 시간에 떠드는 두 학생이 있다. 두 학생은 수업에 집중하는 대신에 글로벌 경제 위기에 대해서 토론하고 있었다. 토론이 점점 과열되면서 두 학생은 목소리를 높였고, 결국 선생님은 크게
www.acmicpc.net
a = int(input())
op = input()
b = int(input())
if op == '+':
print(a + b)
else:
print(a * b)