92.py 1 2 3 4 5 6 7 8 9 10import math num = float(input("Enter A Number : ")) power = float(input("Enter Power : ")) print(f"Square Root : {math.sqrt(num)}") print(f"Power : {math.pow(num, power)}") print(f"Floor : {math.floor(num)}") print(f"Ceil : {math.ceil(num)}")