짱해커가 되어보자

boj 5656 본문

프로그래밍_일반/백준

boj 5656

Spadework 2020. 3. 16. 08:31

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

i=0
while True:
	c = input(); i+=1
	if('E' in c): break
	print('Case {}: {}'.format(i, str(eval(c)).lower()))

 

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

boj 11575  (0) 2020.03.17
boj 4435  (0) 2020.03.17
boj 2948  (0) 2020.03.16
boj 14487  (0) 2020.03.15
boj 3076  (0) 2020.03.15
Comments