Skip to content

Instantly share code, notes, and snippets.

@japaz
Last active August 29, 2015 14:23
Show Gist options
  • Save japaz/ac0795fefe39ecdb12ee to your computer and use it in GitHub Desktop.
Save japaz/ac0795fefe39ecdb12ee to your computer and use it in GitHub Desktop.
import java.io.*;
import java.util.*;
import java.text.*;
import java.math.*;
import java.util.regex.*;
public class Solution {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
int N = in.nextInt();
for (int i = 0; i < N; i++) {
int number = in.nextInt();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment