Output of this program

What is the output of the following program?

#include <iostream>
int main() {
    int x = 10;
    int y = x++;
    std::cout << x << " " << y;
}