🧁문제/코드잇

프로그래밍 기초 in Python | 칼로리 계산기

유저001 2022. 1. 12. 11:11
kitkat = 190
oreos = 502
pringles = 292
twix = 135.9
cheetos = 485

print(kitkat + oreos * 2)
print(cheetos * 4)
print(pringles + oreos + twix)
print(pringles * 3 + oreos * 2)