#include<iostream.h>
int main()
{
int m=3,n=4,x;
x=-m++;
x=x+8/++n;
cout<<x;
return 0;
}