• + 0 comments
    def bonAppetit(bill, k, b):
        bill.remove(bill[k])
        actual=sum(bill)//2
        refund=b-actual
        if refund==0:
            print("Bon Appetit")
        else:
            print(refund)