Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- void parnost(int a) {
- if (a % 2 == 0)
- {
- cout << "Paren" << endl;
- }
- else {cout << "Neparen" << endl;}
- }
- int main()
- {
- int a;
- cin >> a;
- parnost(a);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement