Untitled

mail@pastecode.io avatar
unknown
plain_text
a year ago
320 B
2
Indexable
#include <iostream>
using namespace std;
int main()
{
	int a;
	int b;
	cin >> a >> b;
	if (a > b) {
		if (b % 2 == 0) {
			cout << "meow";
		}
		else cout << "bark";
	}
	else cout << "bark";
	if (b > a) {
		if (a % 2 == 0) {
			cout << "meow";
		}
		else cout << "bark";
	}
	else cout << "bark";
}
Leave a Comment