본문 바로가기
백준문제/브론즈 5

백준) 2395번 - python

by kiseno 2024. 2. 10.
728x90
반응형
SMALL
a = int(input())
b = input()
c = int(input())

if b == '+':
    print(a+c)
else:
    print(a*c)
728x90
반응형
LIST

'백준문제 > 브론즈 5' 카테고리의 다른 글

백준) 2884번 - python  (0) 2024.02.12
백준) 2525번 - python  (1) 2024.02.11
백준) 2163번 - python  (0) 2024.02.09
백준) 1546번 - python  (0) 2024.02.08
백준) 1152번 - python  (0) 2024.02.07