#include <iostream>
using namespace std;

int main() {
	int i = 10;
	i = i++;
	cout << i;
	return 0;
}