Write a program to accept two numbers
in two lines and find Square root of Squares
of thion

Answer: Here you go, change it however you like :)
Explanation:
num1 = int(input("Enter a number: "))
num2 = int(input("Enter a number: "))
print(f"square root of num1: {num1**0.5}")
print(f"square root of num2: {num2**0.5}")