• + 1 comment
    def bonAppetit(bill, k, b):
        am = (sum(bill) - bill[k])/2
        if(b>am):
            bal = b - am
            print(int(bal))
        else:
            print("Bon Appetit")