#include <iostream> using namespace std; int main() { setlocale(LC_ALL, "Russian"); int c; cin >> c; if (c == 1) { cout << "meow!"; } if (c == 2) { cout << "bark!"; } }