Dısıs

#include <stdio.h>

int main() {
   int size = 5;  // The size of the shape (number of rows and columns)

   // Loop through each row
   for (int i = 0; i < size; i++) {
       // Loop through each column in the current row
       for (int j = 0; j < size; j++) {
           if (i == j) {
               printf("A");
           } else {
               printf("F");
           }
       }
       // Move to the next line after printing all columns in the current row
       printf("\n");
   }

   return 0;
}