#include <stdio.h>
int main() {
int choice = 2;
switch (choice) {
case 1:
printf("Choice 1 selected\n");
break;
case 2:
printf("Choice 2 selected\n");
break;
case 3:
printf("Choice 3 selected\n");
break;
default:
printf("Invalid choice\n");
}
return 0;
}