#include <stdio.h> int main(){ char str[3]; scanf("%s", &str); switch(str){ case 'a': printf("a"); case 'bee': printf("bzzz"); } }