Source code -----
name = input("Enter your name:")
print("Hi",name)
print("Welcome to a program made by Linux & Windows Tech to find the square root of a number ")
import math
num = int(input("Enter the number:"))
sqrt = math.sqrt(num)
print("Square root of the number is",sqrt)