fork download
  1. #include <iostream>
  2. #include <ctime>
  3. #include <random>
  4. using namespace std;
  5.  
  6. int main() {
  7. srand(time(NULL));
  8.  
  9. int moneta;
  10. moneta = rand() % 2;
  11.  
  12. if(moneta == 0) {
  13. cout << "Orzel" << endl;
  14. } else {
  15. cout << "Reszka" << endl;
  16. }
  17.  
  18. return 0;
  19. }
Success #stdin #stdout 0.01s 5448KB
stdin
Standard input is empty
stdout
Orzel