python def add(a, b): return a + b python def add(int a, int b) -> int: return a + b python cdef extern from "math.h": double sqrt(double x) def calculate_sqrt(double x) -> double: return sqrt(x)