so i have run into another wall, there is this problem where it tells me to print dollard signs

Using 2 For loops printout

$$$$$
$$$$
$$$
$$

Code:
#include <math.h>
#include <stdio.h>
#include <stdlib.h>

int main()
   {
     int i,j;
     
     for(i=1;i<=5;i++){
        for(j=1;j<=5;j++){
           printf("i= %i and j= %i\n",i,j);
        }
     }        
getchar();
}
ok so i can get the numbers to print out but how can i work it so it prints dollard signs instead of the numbers, im a bit lost