#include <iostream>

int main()
{
    int x = int(5); //copy ctor
    int y = 1 + int(); //default ctor
    std::cout << x << ' ' << y << std::endl;
}