Answer:
Create boxes with the following content
- Initialize sum to 0, product to 1 and number to 1
- Check if number is a prime. If yes, update sum += number and product *= number
- Increase number by 1
- If number is <= 50, go back to "check" block.
The check block has a diamond shape.
At the "yes" branch of the check block, you can create separate blocks for updating the sum and the product.
Connect the blocks using arrows.
Indicate the start and the end of the flow using the appropriate symbols.
The block to check if a number is a prime you could further decompose into the steps needed to do such a check.