__author__ = 'Avinash' import math num = float(input('Enter a number: ')) print('The square root of %0.3f is %0.3f' % (num, math.sqrt(num)))