What will be the value of Y in the dataset below?

data str_test;
    x = 003785432098;
    y = '(' || substr(x,1,3) || ')';
run;