You are viewing a single comment's thread. Return to all comments →
def bonAppetit(bill, k, b): am = (sum(bill) - bill[k])/2 if(b>am): bal = b - am print(int(bal)) else: print("Bon Appetit")
Seems like cookies are disabled on this browser, please enable them to open this website
Bill Division
You are viewing a single comment's thread. Return to all comments →