#include <iostream>
using namespace std;

int main() {
	// your code goes here
	int x = 7; int b = 8;
	int c = 0;
	c = x++*b--;
	cout<<c<<endl;
	return 0;
}