Untitled
unknown
c_cpp
a year ago
230 B
1
Indexable
Never
#include <iostream> #include <string> #include <iomanip> #include <cmath> using namespace std; int main() { int a = 0; cin >> a; if (a == 1) { cout << "meow!"; } else if (a == 2) { cout << "bark!"; } }