Assignment #37 and How old are you, Specifically?

Code

    /// Name: Trent Lane
    /// Period: 6
    /// Program Name: How Old Are You, Specifically
    /// Date Finished: 11/5/2015
    
    import java.util.Scanner;

    public class HowOldAreYouSpecifically
    {
    
        public static void main(String[] args)
        {
        
            Scanner keyboard = new Scanner(System.in);
            
            String name;
            int age;
            
            System.out.print("Hey, what's your name again? ");
            name = keyboard.next();
            
            System.out.print("Ok, " + name + ", how old are you? ");
            age = keyboard.nextInt();
            
            System.out.println();
            
            if ( age < 16 )
		        {
		        System.out.println( "You can't drive " + name + "." );
	    	    }
	    	
            else if ( age <=17 )
            {
            System.out.println( " You can drive but not vote " + name + "." );
            }
            
           else if ( age <=24 )
           {
           System.out.println( " You can vote but not rent a car " + name + "." );
           }
            
           else
          {
           System.out.println( " You can do pretty much anything " + name + "." );
          }
        
    }
}
 

Picture of the output

Assignment 37