#include <iostream>
using namespace std;

int main()

{
    int a = 1;
    double d = 1.0;

    a = 46 % 9 + 4 * 4 - 2;
    cout << "the answer for no ii) is " << a << endl;
   



    return 0;
}