Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- int main() {
- int admin = 0;
- for(int i=1; i!=11; i++) {
- if((admin & 1) | (i ^ 5)) std::cout << i << std::endl;
- }
- system("pause");
- return 1;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement