fork download
  1. class test {
  2.  
  3. public static void main(String[] args){
  4. String s1 = "1";
  5. String s2 = s1.concat("2");
  6. s2.concat("3");
  7. System.out.println(s2);
  8. }}
Success #stdin #stdout 0.06s 32500KB
stdin
Standard input is empty
stdout
12