짱해커가 되어보자

boj 5613 본문

프로그래밍_일반/백준

boj 5613

Spadework 2020. 2. 8. 19:50

* Solved 기준 브론즈3 단순 풀이

s,t = int(input()),0
while True:
	c = input()
	if(c=='='): break
	elif(c.isdigit()): s = eval(str(s)+t+c)
	else: t = c if c!='/' else '//'
print(s)

'프로그래밍_일반 > 백준' 카테고리의 다른 글

boj 1598  (0) 2020.02.08
boj 14920  (0) 2020.02.08
boj 15781  (0) 2020.02.08
boj 15780  (0) 2020.02.08
boj 5073  (0) 2020.02.08
Comments