Fourth root

Report a typo

Write a program that prints the fourth root from a given real number.

Do not round the result.

Sample Input 1:

16.0

Sample Output 1:

2.0
Write a program in Kotlin
import kotlin.math.*

fun main() {
// put your code here
}
___

Create a free account to access the full topic