Skip to content

Instantly share code, notes, and snippets.

@tanakaedu
Last active October 14, 2015 04:20
Show Gist options
  • Save tanakaedu/dbf54f56c4f825706b6c to your computer and use it in GitHub Desktop.
Save tanakaedu/dbf54f56c4f825706b6c to your computer and use it in GitHub Desktop.
import java.io.BufferedReader;
import java.io.InputStreamReader;
public class Main {
public static void main(String[] args) throws Exception {
java.util.Scanner sc = new java.util.Scanner(System.in);
String a;
String b;
a=sc.nextLine();
b=sc.nextLine();
System.out.println(a+b);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment