# This program uses the math module to compute # the square roots of the integers 1-20. import math def main(): for i in range(1, 11): root = math.sqrt(i) print("square root of", i, \ "is", round(root, 2)) main()