You are working on a core finance application, and then you see a snippet like this. What are you doing next?
float checkingBalance = 1542.67f;
float savingsBalance = 12789.34f;
float transferAmount = 500.00f;
checkingBalance -= transferAmount;
savingsBalance = transferAmount;