Advertisement
Guest User

Untitled

a guest
Apr 19th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2.  
  3. using namespace std;
  4.  
  5. using namespace std;
  6.  
  7. int n;
  8. string s;
  9.  
  10. int main()
  11. {
  12. cin >> n;
  13.  
  14. for (int i = 0; i < n ;i++)
  15. cin >> s;
  16.  
  17. srand(time(0));
  18.  
  19. if (rand() % 2)
  20. cout << "True";
  21. else
  22. cout << "Liar";
  23.  
  24. return 0;
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement