Submission
Status:
PPPPPPPPPP
Subtask/Task Score:
100/100
Score: 100
User: un8qe_x3
Problemset: Level Up
Language: cpp
Time: 0.003 second
Submitted On: 2025-10-20 20:44:08
#include<bits/stdc++.h>
using namespace std;
int main(){
long double a,b,c;cin >> a >> b >> c;
long double d = ceil((a*a + log(b+1))*(exp((c/(a+1)))));
cout << fixed;
cout << setprecision(2);
cout << d;
}