#include <stdio.h>int main(){ int n=1; scanf("%d",&n); while(n <= 5) { printf(""); n=n+1; } for(n=1;n <= 5;n=n+1) { printf("*"); } return 0;}