public class Test{
public static void main(String args[]){
String s1 = "yxjc123";
String s2 = ".com";
String s3 = s1+s2;
System.out.println(s3);
}