diff --git a/sqrt.py b/sqrt.py new file mode 100644 index 00000000..1bab9c58 --- /dev/null +++ b/sqrt.py @@ -0,0 +1,3 @@ +a = int(input("Enter the no. you want") +sqrt = a**2 +print("The sqrt of no. is", sqrt)