#!/usr/bin/env python
import math
print ("Hello World")
num=float(input('Enter a number'))
ans=math.sqrt(num)
print (ans)
