// Arup Guha
// 8/26/2011
// Use of the assignment statement

#include <stdio.h>

const double PRICE_BURGER = 4.99;
const double PRICE_SODA = 1.99;

int main() {

    int num_burgers, num_sodas;

    printf("How many burgers do you want?\n");
    scanf("%d", &num_burgers);

    printf("How many sodas do you want?\n");
    scanf("%d", &num_sodas);

    double total = num_burgers*PRICE_BURGER +
                   num_sodas*PRICE_SODA;

    printf("You will spend %.2lf i am printing more stuff\n", total);

    int d = 17;
    d = 25%d;
    printf("d is %d\n", d);

    return 0;
}
