Skip to content

Instantly share code, notes, and snippets.

@yoshiokatsuneo
Created October 10, 2014 09:07
Show Gist options
  • Save yoshiokatsuneo/4709c7e1b12616c671dd to your computer and use it in GitHub Desktop.
Save yoshiokatsuneo/4709c7e1b12616c671dd 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();
// awefaf
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment