#%% module 2, example 0

import math


a = 50
b = math.sqrt(a)
print(b)

#%% composition

print(math.sqrt(50))