할껀하고놀자

[백준] 2935 소음 본문

[IT]/백준

[백준] 2935 소음

working_hard 2019. 9. 29. 02:10
728x90
num1 = int(input())
operator = input()
num2 = int(input())

if operator=='*':
    print(num1*num2)
else:
    print(num1+num2)

 

print(eval(input()+input()+input()))

다른사람 풀이

 

'[IT] > 백준' 카테고리의 다른 글

[백준] 2231번 분해합  (0) 2019.10.02
[백준] 5524번 입실  (0) 2019.09.29
[백준] 13420 사칙연산  (0) 2019.09.29
[백준] 1010번 다리놓기  (0) 2019.09.28
[백준] 11179번 2진수 뒤집기 (C++, python3)  (0) 2019.09.21
Comments