#include <stdio.h> int main() { double price = 0, cost = 0; int month = 0, date = 0, discount = 0; scanf("%lf %d %d %d", &price, &month, &date, &discount); if (month == 11 && date == 11) { cost = 0.7 * price; if (discount == 1)...