Advertisement
Guest User

Untitled

a guest
Jan 11th, 2016
273
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.24 KB | None | 0 0
  1. import java.io.*;
  2. import java.util.*;
  3.  
  4. public class gen {
  5.     public static void main(String[] argv) throws Exception {
  6.         PrintWriter out = new PrintWriter(System.out);
  7.  
  8.         out.println("0001234");
  9.         out.println("1234");
  10.  
  11.         out.close();
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement