#include<iostream>

using namespace std;

int main() {

        int input1, input2;

        cout << "11/3 is " << 11/3 << endl;
        cout << "11/3 fp is " << 11/static_cast<double>(3) << endl;
        
        cout.setf(ios::fixed);
        cout.setf(ios::showpoint);
        cout.precision(2);

        cout << "11/3 fp formatted is " << 11/static_cast<double>(3) << endl;

        cout << "5+7-3 is " << 5+7-3 << endl;
        cout << "5+7*3 is " << 5+7*3 << endl;

        cout << "enter two integers \n";
        cin >> input1 >> input2;
        cout << "input 1 is " << input1 << endl;
        cout << "input 2 is " << input2 << endl;

        return 0;
}