#include<stdio.h>
int main(){
    int items=30;
    float cost_per=44.4;
    float total=items*cost_per;
    char rupees='$';
    printf("Number of items: %i",items);
    printf("cost per item : %.2f\n",cost_per,rupees);
    printf("total cost :%.2f %c\n",total,rupees);
    return 0;
    
}