Tester

public class Tester {
  public static void main(String[] args) {  
        String s1 = "Hello";
        String s2 = "5";
        System.out.print( s1 + s2 );
  }
}
 

What is the output?
Be careful of the space/newline in your answer.