#include <iostream>
using namespace std;

int main()

{
    int a = 1;
    double d = 1.0;


    d -= 1.5 * 3 + a++;
    cout << "the answer for no vi) is " << d << endl;
    cout << "\n" << endl;



    return 0;
}