// Anything that follows two forward slashes is called
// a "comment".  Comments are ignored by the compiler
// and are never executed.  Use them to explain what 
// your program is doing.

// Check out: http://www.cae.wisc.edu/~dwilson/rsfc/intro/
// for more information on how the game of american football is 
// played.  Read the section on "Scoring" to find out how
// the game is scored.

import java.util.*;

public class Football
{
  public static void main(String[] args)
  {
    Scanner input = new Scanner(System.in);
    int touchdowns;
    int extrapoints;
    int score;
    
    
    System.out.print("Enter number of touchdowns: ");
    touchdowns = input.nextInt();
    
    System.out.print("Enter number of extra points: ");
    extrapoints = input.nextInt();
    
    score = touchdowns*6 + extrapoints;
    
    System.out.println("Score is: "+ score);
  }
}
