//***************************************** 
  // Feet.java   Author: Tamara 
  // What type of things can be put on feet? 
  //***************************************** 
public class Feet 
{ 
    public static void main (String[] args) 
 { 
   int shoes = 2; 
   int socks = (int) 1.75; 
   System.out.println("shoes = " + shoes + " socks = " + socks); 
   int toes = Math.round(1.99); 
   System.out.println("toes = " + toes); 
 } 
}
