#include using namespace std; int main() { int a = 3; cout << ++a << a << a++; return 0; }