202k views
0 votes
Write a program to accept two numbers

in two lines and find Square root of Squares
of thion​

Write a program to accept two numbers in two lines and find Square root of Squares-example-1

1 Answer

2 votes

Answer: Here you go, change it however you like :)

Step-by-step 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}")

User Fmaccaroni
by
4.5k points