Get posts by multiple ID’s (query)

Did you look at the documentation for WP_Query?

The p parameter takes only a single integer.

Use post__in.

$args = array(
    'post__in'    => array( 206, 189 ),
    'post_type'   => 'product',
);