Q7.What is the output of the following snippet of code?
```
c1 = 0
c2 = 0
for x in range(1, 101):
for y in range(1, 101):
if x + y == 199:
c1 = c1 + 1
c2 = c2 + 1
print(c2 // c1)
```
Save
Check
Details
Q7
29 Oct 2023
Q7.What is the output of the following snippet of code?
```
c1 = 0
c2 = 0
for x in range(1, 101):
for y in range(1, 101):
if x + y == 199:
c1 = c1 + 1
c2 = c2 + 1
print(c2 // c1)
```