Advertisement
1nikitas

Untitled

Oct 22nd, 2021
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. import math
  2. x = int(input())
  3.  
  4. if x < 3:
  5. print(math.cos(abs(x**3))-4*x**3)
  6. elif 3 <= x and x <= 7:
  7. print(sqrt(13*x**3) - 11*x*x)
  8. else:
  9. print(18-2*x+x**2)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement