fork download
  1. /* package whatever; // don't place package name! */
  2.  
  3. /* The class name doesn't have to be Main, as long as the class is not public. */
  4. class Main
  5. {
  6. public static void main (String[] args) throws java.lang.Exception
  7. {
  8. String output = new String(" No r m a l ");
  9. System.out.println(output.replaceAll("\\s", ""));
  10. }
  11. }
Success #stdin #stdout 0.07s 380160KB
stdin
1
2
10
42
11
stdout
Normal