// notice that we don't have "import becker.robots.*;" anymore
import java.util.*;


public class Nonrobot_Template extends Object
{
   public static void main(String[] args)
   { 
	  // Notice how we don't need to setup the city anymore
      /* Your code should go here: */
		System.out.println("Please type in a number ");

		//double precision floating point number
		double costOfMeal = 10.75;
		System.out.println("Cost is: " + costOfMeal );

		// boolean - true/false
		boolean mealIsPricey ;
		
//		mealIsPricey = false;
//		mealIsPricey = 1 < 4;
		mealIsPricey = costOfMeal > 20;
		if( mealIsPricey  ) 
			System.out.println("the meal is expensive" );

    	//integer    
		int counter = 0;
		while( counter < 3)
		{
			///
			counter = counter + 1;
		}
   }
}


