/* package whatever; // don't place package name! */
import java.util.Scanner;

/* The class name doesn't have to be Main, as long as the class is not public. */
class Main
{
  public static void main (String[] args) throws java.lang.Exception
  { 
  //Create special object t got numerical input from a user...
  Scanner numberInputReader = new Scanner(System.in);

  // Declare variable...
  int num1;

    // Got a value from the user and put it into the variable...
     num1 = numberInputReader.nextInt();

     // Use the variable by printing its contents...
     System.out.println( "my number is " + num1) ;
  }
}