Submission
Status:
PPPPPPPPPP
Subtask/Task Score:
100/100
Score: 100
User: cyblox_boi
Problemset: Level Up
Language: cpp
Time: 0.003 second
Submitted On: 2025-12-29 16:43:05
#include <bits/stdc++.h>
using namespace std;
int main()
{
ios::sync_with_stdio(false);
cin.tie(nullptr);
double c, m, l;
cin >> c >> m >> l;
double e = 2.71828;
double power = ceil((pow(c, 2) + log(m + 1)) * exp(l / (c + 1)));
cout << fixed << setprecision(2) << power << '\n';
return 0;
}