• + 0 comments

    For Python3 Platform

    import math
    
    def lowestTriangle(trianglebase, area):
        return math.ceil((2 * area)/trianglebase)
    
    b, a = map(int, input().split())
    
    height = lowestTriangle(b, a)
    
    print(height)