Lucian_Adrian

Untitled

Aug 11th, 2021
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4. int main()
  5. {
  6. int a;
  7. cin >> a;
  8. if (a%4==0 && a%100!=0 || a%400==0)
  9. cout << "bisect";
  10. else
  11. cout << "nebisect";
  12.  
  13. return 0;
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment