#include <iostream>
#include <cstdlib>
#include <exception>

using namespace std;

int main() {
    float x, y, z;

    cin >> x >> y;
    z = x / y;
    cout << x << " / " << y << " = " << z << endl;

    cout << "good bye" << endl;

    return 0;
}
