﻿from math import exp
def rectangles(n):
    h=1/n
    U=0
    V=0
    for k in range(1,n+1):
        U=
        V=
    return(U,V)
