/* Deposit.c */
#include <stdio.h>

main()
{
  float amount_to_deposit;

  printf("How much do you want to deposit to open the account? ");
  scanf("%f", &amount_to_deposit);

  if(amount_to_deposit < 1000.00 )
   {
    if(amount_to_deposit < 100.00 )
     { printf("You should consider the EconoCheck account.\n"); }
    else
     { printf("You should consider the FreeCheck account.\n"); }
   }
  else
   { printf("You should consider an interest-bearing account.\n"); }
  return 0;
}

