Untitled

 avatar
unknown
plain_text
2 years ago
285 B
3
Indexable
#include <iostream>
using namespace std;
int main()
{
    int a, b;
    cin >> a >> b;
    if (a < b && a % 2 == 0){
        cout << "meow";
    }
    else if (b < a && b % 2 == 0){
        cout << "meow";
    }
    else{
        cout << "bark";
    }
    return 0;
}
Editor is loading...