#include <iostream>
using namespace std;

int main()

{
    int a = 1;
    double d = 1.0;
    
    a = 45 + 43 % 5 * (23 * 3 % 2);
    cout << "the answer for no iii) is " << a << endl;



    return 0;
}