fork(254) download
  1. import java.util.*;
  2. import java.lang.*;
  3.  
  4. class Main
  5. {
  6. public static void main (String[] args) throws java.lang.Exception
  7. {
  8. String sendID = "AABB";
  9. String output = String.format("%0"+(32-sendID.length())+"d%s", 0, sendID);
  10. System.out.println(output);
  11. }
  12. }
Success #stdin #stdout 0.07s 381248KB
stdin
Standard input is empty
stdout
0000000000000000000000000000AABB