#!/usr/bin/env python3
import math
#
def func():
  x=3.0
  print(math.sqrt(x))
#
x=5.0
func()
print(math.sqrt(x))

  
  