fork download
  1. class Main {
  2. public static void main(String[] args) {
  3. long[] c = {130636800L, -5080148640L, 13802573088L, -14974335980L, 8683908340L,
  4. -3006955245L, 651448014L, -89047770L, 7457160L, -349165L, 6998L};
  5.  
  6. for (int x = 0; x < 11; x++) {
  7. long s = 0;
  8. for (int i = 0; i < 11; i++)
  9. s += c[i] * Math.pow(x, i);
  10.  
  11. System.out.print((char)(s / 1814400));
  12. }
  13. }
  14. }
Success #stdin #stdout 0.1s 27784KB
stdin
Standard input is empty
stdout
HELLO WORLD