Advertisement
Guest User

Untitled

a guest
Mar 6th, 2015
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.25 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class Kth {
  4.  
  5.     //Здесь пиши свой код и все
  6.  
  7.     public static void main(String[] args) {
  8.         Scanner in = new Scanner(System.in);
  9.         long k = in.nextLong();
  10.         // ...
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement