Q11Numerical3 Marks24 Dec 2023
What is the output of the following snippet of code?
```
s = 0
x = 2
while x <= 16:
count = 0
for r in range(1, x + 1):
if x % r == 0:
count += 1
if count == 2:
s = s + x
x = x + 1
print(s)
```
Press Enter to check.