#!/bin/env python import math #In order to use the square root function, Pythons math module is imported. x = 2*3*7 print ("The answer of 2*3*7 = %d" % (x)) x = math.sqrt(1764) print ("Also the square root of 1764 = %d" % (x))