#include <iostream>

using namespace std;

int main()
{
  int x = 8;
  cout << (--x)++ << endl;
  cout << x << endl;
  return 0;
}