Write a query to select all reviews from the reviews table where the customer_id is 1 and the product_id is 1, or the customer_id is 2 and the product_id is 2, but exclude those reviews where the rating is less than 3.

Expected Output
idcustomer_idproduct_idratingcomment
1223Comment for product 2
50114Comment for product 1
51223Comment for product 2
100113Comment for product 1