Submission
Status:
----------
Subtask/Task Score:
0/100
Score: 0
User: phewzzz
Problemset: Level Up
Language: python
Time: 0.010 second
Submitted On: 2025-10-14 23:54:21
import math
C, M, L = [float(e) for e in input().split()]
power = math.ceil((C**2 + math.log(M+1, math.e)) * (math.e)**(L/(C+1)))
print(power)