#include<stdio.h> main() {int i; for(i=1;i<=5;i++) {if(i%2)printf("*"); else continue; printf("#");} printf("$\n"); }