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