Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
import random lvl = int(input) attack = int(input) power = int(input) defence = int(input) prandom = random.uniform (0.85, 1.00) ptype = int(input) damage = (((((2 * lvl)/5 + 2) * power * (attack/defence)/50)) + 2) * prandom * ptype print(damage)