data = list(map(int, input().split()))
res =data[0]
for idx in range(1,len(data)):
if data[idx]==0 or data[idx] ==1 or res ==0:
res+=data[idx]
else:
res*=data[idx]
print(res)
'파이썬(Python)' 카테고리의 다른 글
[알고리즘] 만들 수 없는 금액 (0) | 2020.10.04 |
---|---|
[알고리즘] 문자열 뒤집기 (0) | 2020.10.04 |
[알고리즘] 모험가 길드 문제 (0) | 2020.10.04 |
[Python] 두 개의 dictionary를 병합(merge) 하는 방법 (0) | 2020.04.08 |
[Python] 파이썬 스크립트 실행 시간 제어 방법(time delay) (0) | 2020.04.08 |