// Marvyn De La Torre    CS1A    Chapter 3, P.143, #1

/************************************************************
// Calculate Miles per Gallon
//
// This program will display the miles per gallon of the user's car.
//
// Input:
// Miles driven = miles
// Gallons of Gas = gas
//
// Output:
// Miles per Gallon = mpg
*************************************************************/

#include <iostream>
using namespace std;

int main()
{
    double gas;       // Dictionary of variables
    double miles;
    double mpg;

    cin >> gas;
    cin >> miles;

    mpg = miles / gas;

    cout << "The total mpg is " << mpg;

    return 0;
}