fork download
  1.  
  2. import java.util.Scanner;
  3.  
  4.  
  5.  
  6.  
  7. class Main
  8. {
  9. public static void main (String[] args) throws java.lang.Exception
  10. {
  11.  
  12. Scanner numberInputReader = new Scanner (System.in);
  13.  
  14.  
  15. int num1;
  16.  
  17. num1 = numberInputReader.nextInt();
  18.  
  19.  
  20. System.out.println( "Derpy " + num1 );
  21.  
  22. num1 = num1 - 1;
  23.  
  24. System.out.println( "Derpy " + num1 );
  25. }
  26. }
Success #stdin #stdout 0.05s 246144KB
stdin
69
stdout
Derpy 69
Derpy 68