//*****************************************************************************
////  Course:             COMS 2104 03 Foundations of Computer Programming I
////  Semester:           Spring 2004
////  Assignment Number:  #1                             
////  Author Name:        DarC KonQuesT                        
////  Date Written:       January 26, 2004
////                                                         
////  Description of Program:                              
////  Takes an numeric input and multiplies the input by 3.25, adds 1.50 and    
////  outputs the total.                             
////*****************************************************************************
#include <iostream>
using namespace std;
  int main()
  {
    float pizzas,total;
    cout << "How many pizzas would you like to purchase? ";
    cin >> pizzas;
      total = pizzas * 3.5 + 1.5;
    cout << "Your total is: $" << total << endl;
  return 0;
  }


