fork download
  1. /* package whatever; // don't place package name! */
  2.  
  3. import java.util.*;
  4. import java.lang.*;
  5. import java.io.*;
  6.  
  7. /* Name of the class has to be "Main" only if the class is public. */
  8. class Ideone
  9. {
  10.  
  11. static int r(int a,int b) {return "⍄䐲㑦晃䚈衤䚈衤䚈衤䚈衤㑦晃⍄䐲".codePointAt(a*2+b/4)>>(3-b%4)*4&15;}
  12.  
  13. public static void main (String[] args) throws java.lang.Exception
  14. {
  15. for (int i = 0; i < 8; i++) {
  16. for (int j = 0; j < 8; j++) {
  17. System.out.print(r(i,j) + " ");
  18. }
  19. System.out.print("\n");
  20. }
  21. }
  22. }
Success #stdin #stdout 0.12s 320576KB
stdin
Standard input is empty
stdout
2 3 4 4 4 4 3 2 
3 4 6 6 6 6 4 3 
4 6 8 8 8 8 6 4 
4 6 8 8 8 8 6 4 
4 6 8 8 8 8 6 4 
4 6 8 8 8 8 6 4 
3 4 6 6 6 6 4 3 
2 3 4 4 4 4 3 2