#include <iostream>
using namespace std;

int main() {
	
	int x = 10;
	int y = 11;
	int z = 12;
	
	cout << x++ + --x + y++ - y-- + z;
	
	return 0;
}