#include <iostream>

int main()
{
    int n=12;
    int d=7;
    double bad = n/d;
    double good = (static_cast<double> (n))/d;

    std::cout << "bad: " << bad << '\n';
    std::cout << "good: " << good << std::endl;
}
