Skip to content

Instantly share code, notes, and snippets.

@eddietree
Created December 12, 2014 23:56
Show Gist options
  • Save eddietree/fdc54c3c973613bf34cc to your computer and use it in GitHub Desktop.
Save eddietree/fdc54c3c973613bf34cc to your computer and use it in GitHub Desktop.
/* package whatever; // don't place package name! */
import java.util.*;
import java.lang.*;
import java.io.*;
/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
public static void main (String[] args) throws java.lang.Exception
{
int num_circles;
int num_arrows;
InputStreamReader isr = new InputStreamReader(System.in);
BufferedReader br = new BufferedReader(isr);
String line = br.readLine();
num_circles = Integer.parseInt(line);
System.out.println(num_circles);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment