Computer Science, asked by GodOfThunder12, 11 months ago

9. Write a Program to enter the value of X and print the value of Y, where
(x + √x + √x+10
&x + 2x + x​

Answers

Answered by vamanmadhavan10
0

Answer:

import math

X=int(input("enter value of X :"))

y=X+math.sqrt(X)+math.sqrt(X+10)+X+2X+X

print("value of y ;",y)

Similar questions