fork download
  1. import java.util.*;
  2. import java.lang.*;
  3. import java.io.*;
  4.  
  5. class Main
  6. {
  7. public static void main (String[] args) throws java.lang.Exception
  8. {
  9. Random rd = new Random();
  10.  
  11. int moneta = rd.nextInt(2);
  12.  
  13. if(moneta == 0) {
  14. System.out.println("Orzel");
  15. } else {
  16. System.out.println("Reszka");
  17. }
  18. }
  19. }
Success #stdin #stdout 0.08s 46988KB
stdin
Standard input is empty
stdout
Reszka