Submission
Status:
----------
Subtask/Task Score:
0/100
Score: 0
User: RaweerojFirst
Problemset: Level Up
Language: cpp
Time: 0.002 second
Submitted On: 2025-11-06 11:21:50
#include<stdio.h>
#include<math.h>
int main()
{
double c,m,l;
scanf("%lf%lf%lf",&c,&m,&l);
double power = (pow(c, 2)+log(m+1))*exp(l/(c+1));
printf("%lf", power);
return 0;
}