Skip to content

Instantly share code, notes, and snippets.

@tanakaedu
Created September 23, 2015 05:25
Show Gist options
  • Save tanakaedu/f6b54496223678a12ed8 to your computer and use it in GitHub Desktop.
Save tanakaedu/f6b54496223678a12ed8 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 {
// Here your code !
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String line = br.readLine();
System.out.println("in"+line);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment