Question: 
Write a function to check whether the given amount has no profit and no loss


Model's Code:
def noprofit_noloss(cost_price, selling_price):
    return cost_price == selling_price



Sample Correct Code:
def noprofit_noloss(actual_cost,sale_amount): 
  if(sale_amount == actual_cost):
    return True
  else:
    return False


Asserts:
assert noprofit_noloss(1500,1200)==False
assert noprofit_noloss(100,100)==True
assert noprofit_noloss(2000,5000)==False


Tests:
Test 1 of 3: PASS
Test 2 of 3: PASS
Test 3 of 3: PASS

Test 637 of 974: 475/637 (74.56828885400314%): success