fork download
  1. /* package whatever; // don't place package name! */
  2. import java.util.Scanner;
  3.  
  4. /* The class name doesn't have to be Main, as long as the class is not public. */
  5. class Main
  6. {
  7. public static void main (String[] args) throws java.lang.Exception
  8. {
  9. Scanner numberInputReader = new Scanner(System.in);
  10. int num1;
  11. int num2;
  12. num1 = numberInputReader.nextInt();
  13. System.out.println( "The answer to life the universe and everything is " + num1 );
  14. num1 = num1 -1;
  15. System.out.println( "And,the answer to life the universe and everything minus one is " + num1 );
  16. }
  17. }
Success #stdin #stdout 0.05s 246144KB
stdin
42
stdout
The answer to life the universe and everything is 42
And,the answer to life the universe and everything minus one is 41