Advertisement
MKbear

Python_1

Jun 10th, 2022
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.32 KB | None | 0 0
  1. from math import *
  2.  
  3. def main(x, y):
  4.     func_one = pow((10 * pow(x, 2) + 1 + 17 * pow(y, 3)), 2)
  5.     func_two = pow((log2(60 * x - 94 * pow(y, 3) - 22)), 3)
  6.     func_three = sqrt(func_one + func_two)
  7.     func_four = 12 * (23 * pow(x, 2) + 50 * pow(y, 3) + 0.01)
  8.     func_five = func_three + func_four
  9.     return func_five
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement