#include using namespace std; /* Switch demo. */ int main() { int m; cin >> m; switch(m) { case 1: cout << "1" << endl; break; case 2: cout << "2" << endl; break; case 3: cout << "3" << endl; break; default: cout << "Otherwise" << endl; } }