#include <stdio.h> #include <math.h> int main() { double a,b; scanf("%lf%lf",&a,&b); printf("%.2lf",sqrt(b)+pow(a,10)*fabs(a-b) ); return 0; }