void deposit_check( /* in-out */ int& account_balence,
/* in */ int deposit_amount){
// Preconditions:
// Both account_balence and deposit_ammount are initialized
// account_balence is set to the current balence
// deposit_amount holds an amount of money to deposit
// Postconditions:
// account_balence is increased by deposit_amount
account_balence += deposit_amount
}