#include <stdio.h> int main() { int n = 4; for (int i = 4; i > 0; i--) { for (int j = 0; j < i; j++) printf("*"); printf("\n"); } return 0; }