-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathqa7_counting_test.txt
More file actions
3470 lines (3470 loc) · 127 KB
/
qa7_counting_test.txt
File metadata and controls
3470 lines (3470 loc) · 127 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1 Mary got the milk there.
2 John moved to the bedroom.
3 How many objects is Mary carrying? one 1
4 Sandra went back to the bathroom.
5 John got the football there.
6 How many objects is Mary carrying? one 1
7 Mary journeyed to the bathroom.
8 Mary gave the milk to Sandra.
9 How many objects is Mary carrying? none 1 8
10 John went back to the bathroom.
11 John left the football.
12 How many objects is John carrying? none 5 11
13 Sandra gave the milk to John.
14 John journeyed to the garden.
15 How many objects is John carrying? one 5 11 13
1 Daniel took the milk there.
2 John moved to the hallway.
3 How many objects is Daniel carrying? one 1
4 Daniel left the milk.
5 Daniel journeyed to the office.
6 How many objects is Daniel carrying? none 1 4
7 John went back to the office.
8 John went to the hallway.
9 How many objects is Daniel carrying? none 1 4
10 Mary travelled to the bedroom.
11 Mary got the football there.
12 How many objects is Mary carrying? one 11
13 Sandra went back to the kitchen.
14 Daniel moved to the kitchen.
15 How many objects is Mary carrying? one 11
1 Sandra went to the hallway.
2 Sandra grabbed the apple there.
3 How many objects is Sandra carrying? one 2
4 Daniel moved to the kitchen.
5 Sandra got the milk there.
6 How many objects is Sandra carrying? two 2 5
7 Mary got the football there.
8 Sandra went back to the office.
9 How many objects is Mary carrying? one 7
10 Sandra put down the apple.
11 Daniel journeyed to the hallway.
12 How many objects is Sandra carrying? one 2 5 10
13 Daniel went back to the kitchen.
14 Mary travelled to the hallway.
15 How many objects is Sandra carrying? one 2 5 10
1 Sandra travelled to the bathroom.
2 Daniel journeyed to the bedroom.
3 Daniel went to the hallway.
4 Sandra journeyed to the hallway.
5 Daniel went back to the bedroom.
6 John moved to the garden.
7 Daniel journeyed to the hallway.
8 John grabbed the apple there.
9 How many objects is John carrying? one 8
10 John gave the apple to Mary.
11 Mary passed the apple to John.
12 How many objects is John carrying? one 8 10 11
13 Mary journeyed to the hallway.
14 John dropped the apple there.
15 How many objects is John carrying? none 8 10 11 14
16 Sandra went to the garden.
17 Mary went to the kitchen.
18 How many objects is Mary carrying? none 10 11
19 Mary picked up the football there.
20 Mary picked up the milk there.
21 How many objects is Mary carrying? two 10 11 19 20
1 John moved to the hallway.
2 Mary grabbed the milk there.
3 How many objects is Mary carrying? one 2
4 John went back to the kitchen.
5 Sandra got the football there.
6 How many objects is Sandra carrying? one 5
7 Mary picked up the apple there.
8 Mary dropped the milk.
9 How many objects is Mary carrying? one 2 7 8
10 John travelled to the hallway.
11 Sandra left the football.
12 How many objects is Mary carrying? one 2 7 8
13 John moved to the garden.
14 John went back to the kitchen.
15 How many objects is Sandra carrying? none 5 11
1 Daniel went to the bathroom.
2 John moved to the office.
3 Daniel went to the kitchen.
4 John got the apple there.
5 How many objects is John carrying? one 4
6 John left the apple.
7 Mary got the football there.
8 How many objects is Mary carrying? one 7
9 John moved to the hallway.
10 Mary dropped the football.
11 How many objects is Mary carrying? none 7 10
12 Daniel went to the hallway.
13 Sandra journeyed to the hallway.
14 How many objects is Mary carrying? none 7 10
15 Mary got the football there.
16 Mary left the football.
17 How many objects is Mary carrying? none 7 10 15 16
1 Mary went to the garden.
2 Sandra went back to the bathroom.
3 Sandra went to the kitchen.
4 Sandra went back to the bedroom.
5 Mary got the apple there.
6 Mary left the apple.
7 How many objects is Mary carrying? none 5 6
8 Sandra went back to the kitchen.
9 Mary got the apple there.
10 How many objects is Mary carrying? one 5 6 9
11 Mary moved to the bedroom.
12 Mary journeyed to the hallway.
13 How many objects is Mary carrying? one 5 6 9
14 Daniel went to the bedroom.
15 Mary got the milk there.
16 How many objects is Mary carrying? two 5 6 9 15
17 Sandra moved to the office.
18 Sandra journeyed to the bedroom.
19 How many objects is Mary carrying? two 5 6 9 15
1 John grabbed the apple there.
2 John gave the apple to Mary.
3 How many objects is John carrying? none 1 2
4 Mary passed the apple to John.
5 John discarded the apple.
6 How many objects is John carrying? none 1 2 4 5
7 John went back to the office.
8 Daniel journeyed to the hallway.
9 How many objects is John carrying? none 1 2 4 5
10 Mary got the apple there.
11 Mary gave the apple to Daniel.
12 How many objects is Mary carrying? none 2 4 10 11
13 Daniel passed the apple to Mary.
14 Mary passed the apple to Daniel.
15 How many objects is Mary carrying? none 2 4 10 11 13 14
1 Sandra picked up the apple there.
2 Daniel moved to the office.
3 How many objects is Sandra carrying? one 1
4 Sandra discarded the apple there.
5 Daniel went back to the kitchen.
6 How many objects is Sandra carrying? none 1 4
7 Sandra moved to the bedroom.
8 Sandra went back to the hallway.
9 How many objects is Sandra carrying? none 1 4
10 Mary travelled to the kitchen.
11 Sandra travelled to the office.
12 John travelled to the office.
13 Sandra went back to the bathroom.
14 John went back to the bathroom.
15 Sandra journeyed to the bedroom.
16 Sandra went back to the hallway.
17 Daniel travelled to the garden.
18 Mary journeyed to the hallway.
19 John picked up the football there.
20 How many objects is John carrying? one 19
21 Mary went back to the kitchen.
22 John discarded the football.
23 How many objects is John carrying? none 19 22
1 John journeyed to the hallway.
2 Mary went back to the garden.
3 Mary went to the bedroom.
4 Daniel grabbed the milk there.
5 How many objects is Daniel carrying? one 4
6 John went to the bathroom.
7 John picked up the apple there.
8 How many objects is Daniel carrying? one 4
9 Sandra journeyed to the hallway.
10 Daniel discarded the milk.
11 How many objects is Daniel carrying? none 4 10
12 Daniel travelled to the bathroom.
13 Daniel went back to the kitchen.
14 How many objects is Daniel carrying? none 4 10
15 Mary went back to the bathroom.
16 John passed the apple to Mary.
17 How many objects is Daniel carrying? none 4 10
1 Mary travelled to the garden.
2 John journeyed to the kitchen.
3 John travelled to the hallway.
4 Daniel went back to the garden.
5 Daniel journeyed to the office.
6 Mary grabbed the football there.
7 How many objects is Mary carrying? one 6
8 John went to the garden.
9 Mary handed the football to John.
10 How many objects is Mary carrying? none 6 9
11 Daniel moved to the hallway.
12 John handed the football to Mary.
13 How many objects is Mary carrying? one 6 9 12
14 Sandra moved to the bedroom.
15 Mary gave the football to John.
16 How many objects is Mary carrying? none 6 9 12 15
17 John moved to the kitchen.
18 Mary went to the bathroom.
19 How many objects is Mary carrying? none 6 9 12 15
1 Sandra travelled to the garden.
2 John took the apple there.
3 How many objects is John carrying? one 2
4 Mary went back to the hallway.
5 John travelled to the hallway.
6 How many objects is John carrying? one 2
7 John journeyed to the garden.
8 Daniel went to the bathroom.
9 How many objects is John carrying? one 2
10 John passed the apple to Sandra.
11 Sandra passed the apple to John.
12 How many objects is Sandra carrying? none 10 11
13 John gave the apple to Sandra.
14 Sandra went to the office.
15 How many objects is Sandra carrying? one 10 11 13
1 Sandra travelled to the office.
2 Mary went back to the bedroom.
3 Mary moved to the kitchen.
4 Mary journeyed to the hallway.
5 Mary took the apple there.
6 Mary dropped the apple.
7 How many objects is Mary carrying? none 5 6
8 Daniel journeyed to the office.
9 Sandra went back to the bedroom.
10 How many objects is Mary carrying? none 5 6
11 Mary took the football there.
12 Mary left the football.
13 How many objects is Mary carrying? none 5 6 11 12
14 Sandra went back to the garden.
15 John went to the kitchen.
16 How many objects is Mary carrying? none 5 6 11 12
17 John journeyed to the hallway.
18 Mary went back to the bedroom.
19 How many objects is Mary carrying? none 5 6 11 12
1 John journeyed to the kitchen.
2 Sandra grabbed the apple there.
3 How many objects is Sandra carrying? one 2
4 Sandra handed the apple to Daniel.
5 Daniel discarded the apple.
6 How many objects is Sandra carrying? none 2 4
7 Daniel picked up the apple there.
8 Daniel gave the apple to Sandra.
9 How many objects is Sandra carrying? one 2 4 8
10 Sandra went to the kitchen.
11 Sandra passed the apple to John.
12 How many objects is Daniel carrying? none 4 5 7 8
13 John gave the apple to Sandra.
14 John travelled to the garden.
15 How many objects is Sandra carrying? one 2 4 8 11 13
1 Sandra grabbed the milk there.
2 John went back to the hallway.
3 How many objects is Sandra carrying? one 1
4 Sandra moved to the garden.
5 Sandra discarded the milk there.
6 How many objects is Sandra carrying? none 1 5
7 Sandra got the milk there.
8 Mary moved to the bedroom.
9 How many objects is Sandra carrying? one 1 5 7
10 Sandra went to the hallway.
11 Daniel got the apple there.
12 How many objects is Daniel carrying? one 11
13 Daniel moved to the office.
14 Sandra passed the milk to John.
15 How many objects is Daniel carrying? one 11
1 Mary took the milk there.
2 John got the football there.
3 How many objects is John carrying? one 2
4 Sandra went to the bathroom.
5 Mary put down the milk.
6 How many objects is John carrying? one 2
7 Sandra went back to the garden.
8 Sandra took the milk there.
9 How many objects is Sandra carrying? one 8
10 Sandra dropped the milk there.
11 Mary journeyed to the bedroom.
12 How many objects is Sandra carrying? none 8 10
13 John went to the office.
14 John grabbed the apple there.
15 How many objects is Sandra carrying? none 8 10
1 Mary grabbed the milk there.
2 Mary moved to the bathroom.
3 How many objects is Mary carrying? one 1
4 John went back to the hallway.
5 Mary grabbed the apple there.
6 How many objects is Mary carrying? two 1 5
7 Daniel journeyed to the hallway.
8 Sandra went back to the bedroom.
9 How many objects is Mary carrying? two 1 5
10 Mary discarded the apple.
11 Mary took the apple there.
12 How many objects is Mary carrying? two 1 5 10 11
13 Mary travelled to the office.
14 Mary left the apple there.
15 How many objects is Mary carrying? one 1 5 10 11 14
1 Mary picked up the football there.
2 Daniel went back to the bedroom.
3 How many objects is Mary carrying? one 1
4 Daniel went back to the bathroom.
5 Mary journeyed to the bedroom.
6 How many objects is Mary carrying? one 1
7 Mary dropped the football.
8 John went to the kitchen.
9 How many objects is Mary carrying? none 1 7
10 Mary travelled to the office.
11 Daniel went to the bedroom.
12 How many objects is Mary carrying? none 1 7
13 Mary journeyed to the hallway.
14 Mary travelled to the bathroom.
15 Daniel moved to the kitchen.
16 Mary grabbed the milk there.
17 How many objects is Mary carrying? one 1 7 16
1 Sandra travelled to the garden.
2 Daniel journeyed to the garden.
3 Daniel journeyed to the bathroom.
4 John travelled to the garden.
5 Daniel travelled to the bedroom.
6 Sandra went back to the office.
7 John travelled to the kitchen.
8 Daniel took the milk there.
9 How many objects is Daniel carrying? one 8
10 Daniel moved to the garden.
11 Mary travelled to the kitchen.
12 How many objects is Daniel carrying? one 8
13 Sandra travelled to the hallway.
14 Mary journeyed to the bedroom.
15 How many objects is Daniel carrying? one 8
16 Daniel moved to the kitchen.
17 Daniel left the milk.
18 How many objects is Daniel carrying? none 8 17
19 Daniel went back to the bathroom.
20 Sandra moved to the bedroom.
21 How many objects is Daniel carrying? none 8 17
1 Sandra travelled to the bedroom.
2 Sandra grabbed the football there.
3 How many objects is Sandra carrying? one 2
4 John journeyed to the hallway.
5 Mary went to the garden.
6 How many objects is Sandra carrying? one 2
7 Sandra went back to the office.
8 John journeyed to the bedroom.
9 How many objects is Sandra carrying? one 2
10 Sandra got the milk there.
11 Mary moved to the hallway.
12 How many objects is Sandra carrying? two 2 10
13 John went to the office.
14 Sandra passed the football to John.
15 How many objects is Sandra carrying? one 2 10 14
1 Mary took the milk there.
2 Mary went to the office.
3 How many objects is Mary carrying? one 1
4 Mary travelled to the hallway.
5 Sandra journeyed to the kitchen.
6 How many objects is Mary carrying? one 1
7 Sandra went back to the garden.
8 Daniel grabbed the apple there.
9 How many objects is Daniel carrying? one 8
10 Daniel discarded the apple.
11 Sandra moved to the bedroom.
12 How many objects is Daniel carrying? none 8 10
13 Daniel travelled to the hallway.
14 Mary journeyed to the bedroom.
15 How many objects is Daniel carrying? none 8 10
1 John went to the bathroom.
2 John grabbed the football there.
3 How many objects is John carrying? one 2
4 Daniel travelled to the hallway.
5 Mary moved to the hallway.
6 How many objects is John carrying? one 2
7 Sandra picked up the apple there.
8 John dropped the football.
9 How many objects is John carrying? none 2 8
10 Mary travelled to the bedroom.
11 Sandra went to the kitchen.
12 How many objects is Sandra carrying? one 7
13 John picked up the football there.
14 Mary got the milk there.
15 How many objects is Mary carrying? one 14
1 Mary picked up the milk there.
2 Sandra travelled to the office.
3 How many objects is Mary carrying? one 1
4 Mary handed the milk to Sandra.
5 Sandra dropped the milk.
6 How many objects is Mary carrying? none 1 4
7 John went to the office.
8 John grabbed the milk there.
9 How many objects is Mary carrying? none 1 4
10 Daniel went to the bedroom.
11 John passed the milk to Mary.
12 How many objects is Sandra carrying? none 4 5
13 Mary gave the milk to John.
14 Daniel went to the garden.
15 How many objects is Mary carrying? none 1 4 11 13
1 John went back to the office.
2 Daniel travelled to the garden.
3 Mary moved to the bathroom.
4 Mary journeyed to the bedroom.
5 Mary went to the bathroom.
6 Mary travelled to the hallway.
7 Mary journeyed to the office.
8 Mary went back to the hallway.
9 Mary picked up the apple there.
10 Sandra journeyed to the hallway.
11 How many objects is Mary carrying? one 9
12 Mary handed the apple to Sandra.
13 Sandra passed the apple to Mary.
14 How many objects is Mary carrying? one 9 12 13
15 Sandra journeyed to the kitchen.
16 Sandra travelled to the hallway.
17 How many objects is Mary carrying? one 9 12 13
18 Mary put down the apple there.
19 Sandra picked up the apple there.
20 How many objects is Sandra carrying? one 12 13 19
21 Sandra handed the apple to Mary.
22 Mary dropped the apple there.
23 How many objects is Mary carrying? none 9 12 13 18 21 22
1 Mary got the football there.
2 Daniel journeyed to the bathroom.
3 How many objects is Mary carrying? one 1
4 John moved to the hallway.
5 Sandra grabbed the milk there.
6 How many objects is Mary carrying? one 1
7 Daniel picked up the apple there.
8 Daniel dropped the apple.
9 How many objects is Daniel carrying? none 7 8
10 Daniel grabbed the apple there.
11 Daniel left the apple.
12 How many objects is Daniel carrying? none 7 8 10 11
13 Mary went to the office.
14 Sandra left the milk.
15 How many objects is Sandra carrying? none 5 14
1 Mary journeyed to the office.
2 John picked up the football there.
3 How many objects is John carrying? one 2
4 John discarded the football.
5 Sandra went to the bathroom.
6 How many objects is John carrying? none 2 4
7 Sandra picked up the milk there.
8 Daniel got the apple there.
9 How many objects is John carrying? none 2 4
10 Daniel discarded the apple there.
11 Daniel picked up the apple there.
12 How many objects is Sandra carrying? one 7
13 Sandra left the milk there.
14 Sandra journeyed to the office.
15 How many objects is Daniel carrying? one 8 10 11
1 John went back to the garden.
2 Daniel grabbed the milk there.
3 How many objects is Daniel carrying? one 2
4 Daniel passed the milk to John.
5 John gave the milk to Daniel.
6 How many objects is Daniel carrying? one 2 4 5
7 Daniel gave the milk to John.
8 John picked up the apple there.
9 How many objects is Daniel carrying? none 2 4 5 7
10 John passed the apple to Daniel.
11 Daniel handed the apple to John.
12 How many objects is John carrying? two 4 5 7 8 10 11
13 Sandra moved to the kitchen.
14 John passed the apple to Daniel.
15 How many objects is John carrying? one 4 5 7 8 10 11 14
1 John took the milk there.
2 Daniel travelled to the garden.
3 How many objects is John carrying? one 1
4 John went to the office.
5 John dropped the milk.
6 How many objects is John carrying? none 1 5
7 Mary grabbed the apple there.
8 Mary put down the apple.
9 How many objects is Mary carrying? none 7 8
10 Mary went back to the hallway.
11 Mary grabbed the football there.
12 How many objects is Mary carrying? one 7 8 11
13 John got the milk there.
14 Mary put down the football.
15 How many objects is Mary carrying? none 7 8 11 14
1 Mary travelled to the hallway.
2 John moved to the hallway.
3 Sandra went to the hallway.
4 Sandra took the milk there.
5 How many objects is Sandra carrying? one 4
6 Sandra passed the milk to John.
7 John picked up the football there.
8 How many objects is Sandra carrying? none 4 6
9 John travelled to the kitchen.
10 Mary went back to the office.
11 How many objects is John carrying? two 6 7
12 John passed the football to Daniel.
13 Mary travelled to the hallway.
14 How many objects is John carrying? one 6 7 12
15 John got the apple there.
16 John discarded the apple.
17 How many objects is John carrying? one 6 7 12 15 16
1 John went back to the office.
2 Daniel went to the kitchen.
3 Sandra travelled to the bathroom.
4 Sandra moved to the kitchen.
5 Mary journeyed to the office.
6 Sandra went to the bathroom.
7 John moved to the garden.
8 John went back to the bathroom.
9 John picked up the football there.
10 Daniel picked up the apple there.
11 How many objects is Daniel carrying? one 10
12 John journeyed to the bedroom.
13 Daniel journeyed to the hallway.
14 How many objects is Daniel carrying? one 10
15 Daniel travelled to the bathroom.
16 John took the milk there.
17 How many objects is Daniel carrying? one 10
18 Daniel journeyed to the garden.
19 Daniel discarded the apple.
20 How many objects is John carrying? two 9 16
21 John went to the garden.
22 John passed the football to Daniel.
23 How many objects is John carrying? one 9 16 22
1 Daniel went to the kitchen.
2 Daniel travelled to the hallway.
3 John moved to the office.
4 John moved to the kitchen.
5 Daniel moved to the bathroom.
6 John moved to the bathroom.
7 Daniel got the football there.
8 Daniel handed the football to John.
9 How many objects is Daniel carrying? none 7 8
10 John passed the football to Sandra.
11 Sandra handed the football to John.
12 How many objects is Daniel carrying? none 7 8
13 John handed the football to Sandra.
14 Sandra went back to the hallway.
15 How many objects is Daniel carrying? none 7 8
16 Sandra left the football.
17 John went back to the bedroom.
18 How many objects is John carrying? none 8 10 11 13
19 John went to the office.
20 Sandra picked up the football there.
21 How many objects is Sandra carrying? one 10 11 13 16 20
1 Daniel took the football there.
2 Daniel moved to the office.
3 How many objects is Daniel carrying? one 1
4 Daniel handed the football to Sandra.
5 John grabbed the apple there.
6 How many objects is Daniel carrying? none 1 4
7 Sandra handed the football to Daniel.
8 John dropped the apple.
9 How many objects is Daniel carrying? one 1 4 7
10 Daniel handed the football to Sandra.
11 Mary went back to the bedroom.
12 How many objects is John carrying? none 5 8
13 Sandra journeyed to the kitchen.
14 Mary picked up the apple there.
15 How many objects is Mary carrying? one 14
1 Sandra moved to the kitchen.
2 John travelled to the bedroom.
3 Sandra moved to the garden.
4 Sandra picked up the football there.
5 How many objects is Sandra carrying? one 4
6 Sandra went to the bedroom.
7 Sandra passed the football to John.
8 How many objects is Sandra carrying? none 4 7
9 John passed the football to Sandra.
10 Sandra handed the football to John.
11 How many objects is John carrying? one 7 9 10
12 John discarded the football there.
13 John picked up the football there.
14 How many objects is John carrying? one 7 9 10 12 13
15 John gave the football to Sandra.
16 John journeyed to the hallway.
17 How many objects is Sandra carrying? one 4 7 9 10 15
1 Sandra travelled to the hallway.
2 John went back to the office.
3 John moved to the bedroom.
4 John moved to the office.
5 Daniel travelled to the bedroom.
6 Daniel journeyed to the bathroom.
7 Mary journeyed to the garden.
8 Mary travelled to the bedroom.
9 Sandra went to the bathroom.
10 Daniel moved to the hallway.
11 Sandra went back to the hallway.
12 Sandra journeyed to the bedroom.
13 Sandra went back to the bathroom.
14 John moved to the bedroom.
15 John journeyed to the hallway.
16 Mary grabbed the football there.
17 How many objects is Mary carrying? one 16
18 Mary left the football.
19 Daniel went to the garden.
20 How many objects is Mary carrying? none 16 18
21 Sandra took the apple there.
22 Sandra took the milk there.
23 How many objects is Sandra carrying? two 21 22
24 John journeyed to the bathroom.
25 Daniel went back to the office.
26 How many objects is Sandra carrying? two 21 22
27 Daniel journeyed to the bedroom.
28 John journeyed to the office.
29 How many objects is Sandra carrying? two 21 22
1 John picked up the football there.
2 John dropped the football.
3 How many objects is John carrying? none 1 2
4 Mary moved to the office.
5 Daniel went back to the bedroom.
6 How many objects is John carrying? none 1 2
7 Sandra journeyed to the garden.
8 Daniel went to the garden.
9 How many objects is John carrying? none 1 2
10 Daniel went back to the bedroom.
11 John took the football there.
12 How many objects is John carrying? one 1 2 11
13 John moved to the kitchen.
14 Sandra moved to the office.
15 How many objects is John carrying? one 1 2 11
1 Daniel went back to the garden.
2 Daniel journeyed to the kitchen.
3 Mary journeyed to the office.
4 John went to the bedroom.
5 John picked up the football there.
6 Sandra journeyed to the office.
7 How many objects is John carrying? one 5
8 Mary went to the hallway.
9 John took the milk there.
10 How many objects is John carrying? two 5 9
11 Daniel travelled to the hallway.
12 John journeyed to the kitchen.
13 How many objects is John carrying? two 5 9
14 John dropped the football.
15 Daniel travelled to the garden.
16 How many objects is John carrying? one 5 9 14
17 Daniel took the apple there.
18 Daniel put down the apple.
19 How many objects is John carrying? one 5 9 14
1 Sandra moved to the garden.
2 Sandra picked up the football there.
3 How many objects is Sandra carrying? one 2
4 Sandra discarded the football there.
5 John journeyed to the hallway.
6 How many objects is Sandra carrying? none 2 4
7 Mary grabbed the milk there.
8 John went back to the bedroom.
9 How many objects is Sandra carrying? none 2 4
10 Daniel went back to the office.
11 Sandra went back to the bathroom.
12 How many objects is Mary carrying? one 7
13 Daniel moved to the hallway.
14 Mary handed the milk to Sandra.
15 How many objects is Mary carrying? none 7 14
1 Sandra travelled to the garden.
2 Sandra travelled to the bedroom.
3 Mary travelled to the bathroom.
4 John got the milk there.
5 How many objects is John carrying? one 4
6 John passed the milk to Daniel.
7 John went to the bedroom.
8 How many objects is John carrying? none 4 6
9 Mary went back to the bedroom.
10 Daniel dropped the milk.
11 How many objects is John carrying? none 4 6
12 Daniel went back to the bathroom.
13 Sandra moved to the garden.
14 How many objects is Daniel carrying? none 6 10
15 Sandra travelled to the hallway.
16 Sandra went back to the bathroom.
17 How many objects is Daniel carrying? none 6 10
1 Daniel picked up the apple there.
2 John went to the hallway.
3 How many objects is Daniel carrying? one 1
4 John travelled to the bedroom.
5 Daniel left the apple.
6 How many objects is Daniel carrying? none 1 5
7 John travelled to the kitchen.
8 Mary took the football there.
9 How many objects is Mary carrying? one 8
10 Sandra moved to the garden.
11 Mary put down the football.
12 How many objects is Mary carrying? none 8 11
13 Sandra journeyed to the office.
14 Sandra moved to the garden.
15 How many objects is Mary carrying? none 8 11
1 John went back to the hallway.
2 Mary went back to the office.
3 Sandra went back to the kitchen.
4 Sandra travelled to the bathroom.
5 Sandra got the milk there.
6 Sandra left the milk.
7 How many objects is Sandra carrying? none 5 6
8 Daniel went to the bedroom.
9 Daniel went to the bathroom.
10 How many objects is Sandra carrying? none 5 6
11 Daniel got the milk there.
12 Daniel dropped the milk.
13 How many objects is Sandra carrying? none 5 6
14 John journeyed to the bathroom.
15 Daniel went back to the office.
16 How many objects is Daniel carrying? none 11 12
17 John journeyed to the office.
18 Mary travelled to the hallway.
19 How many objects is Daniel carrying? none 11 12
1 Sandra went to the office.
2 Mary travelled to the kitchen.
3 John grabbed the apple there.
4 John handed the apple to Sandra.
5 How many objects is John carrying? none 3 4
6 Mary travelled to the hallway.
7 John went back to the garden.
8 How many objects is John carrying? none 3 4
9 Sandra grabbed the football there.
10 Sandra passed the apple to Daniel.
11 How many objects is John carrying? none 3 4
12 Daniel passed the apple to Sandra.
13 Sandra passed the apple to Daniel.
14 How many objects is Daniel carrying? one 10 12 13
15 Sandra left the football.
16 Daniel gave the apple to Sandra.
17 How many objects is Daniel carrying? none 10 12 13 16
1 Mary journeyed to the office.
2 Mary went back to the bathroom.
3 John got the milk there.
4 Sandra moved to the hallway.
5 How many objects is John carrying? one 3
6 Mary took the football there.
7 Mary journeyed to the hallway.
8 How many objects is John carrying? one 3
9 John moved to the hallway.
10 Mary passed the football to John.
11 How many objects is Mary carrying? none 6 10
12 John handed the football to Mary.
13 Sandra travelled to the bedroom.
14 How many objects is John carrying? one 3 10 12
15 Sandra journeyed to the office.
16 Daniel went to the office.
17 How many objects is Mary carrying? one 6 10 12
1 Daniel journeyed to the hallway.
2 Daniel journeyed to the garden.
3 Mary went back to the kitchen.
4 John took the apple there.
5 How many objects is John carrying? one 4
6 John moved to the garden.
7 Daniel went back to the office.
8 How many objects is John carrying? one 4
9 John travelled to the hallway.
10 John put down the apple.
11 How many objects is John carrying? none 4 10
12 Daniel took the football there.
13 Sandra travelled to the office.
14 How many objects is John carrying? none 4 10
15 Daniel gave the football to Sandra.
16 Sandra gave the football to Daniel.
17 How many objects is Daniel carrying? one 12 15 16
1 Mary travelled to the bedroom.
2 Mary journeyed to the office.
3 Sandra grabbed the milk there.
4 John went back to the garden.
5 How many objects is Sandra carrying? one 3
6 Sandra moved to the garden.
7 Sandra handed the milk to John.
8 How many objects is Sandra carrying? none 3 7
9 John travelled to the kitchen.
10 Mary moved to the hallway.
11 How many objects is Sandra carrying? none 3 7
12 Sandra moved to the hallway.
13 Daniel moved to the kitchen.
14 How many objects is Sandra carrying? none 3 7
15 John gave the milk to Daniel.
16 Daniel discarded the milk.
17 How many objects is John carrying? none 7 15
1 John journeyed to the bathroom.
2 Mary travelled to the office.
3 Sandra went back to the bathroom.
4 John went to the bedroom.
5 Mary went to the hallway.
6 Mary took the apple there.
7 How many objects is Mary carrying? one 6
8 Sandra went to the kitchen.
9 Sandra picked up the football there.
10 How many objects is Mary carrying? one 6
11 John travelled to the office.
12 Sandra dropped the football.
13 How many objects is Sandra carrying? none 9 12
14 Mary dropped the apple.
15 Sandra went to the bathroom.
16 How many objects is Sandra carrying? none 9 12
17 Sandra went back to the kitchen.
18 Sandra grabbed the football there.
19 How many objects is Sandra carrying? one 9 12 18
1 Sandra went to the office.
2 Sandra grabbed the football there.
3 How many objects is Sandra carrying? one 2
4 Mary journeyed to the bedroom.
5 Mary went to the bathroom.
6 How many objects is Sandra carrying? one 2
7 Sandra went back to the bedroom.
8 John grabbed the milk there.
9 How many objects is Sandra carrying? one 2
10 Sandra passed the football to John.
11 John put down the milk there.
12 How many objects is Sandra carrying? none 2 10
13 John picked up the milk there.
14 John passed the football to Sandra.
15 How many objects is John carrying? one 8 10 11 13 14
1 Daniel travelled to the bedroom.
2 Sandra went to the kitchen.
3 Sandra went back to the garden.
4 Mary went back to the kitchen.
5 Daniel went to the kitchen.
6 Mary picked up the apple there.
7 How many objects is Mary carrying? one 6
8 Daniel journeyed to the bathroom.
9 Sandra went to the kitchen.
10 How many objects is Mary carrying? one 6
11 Sandra took the football there.
12 Sandra travelled to the bathroom.
13 How many objects is Mary carrying? one 6
14 Sandra put down the football.
15 Daniel moved to the office.
16 How many objects is Sandra carrying? none 11 14
17 Mary journeyed to the bathroom.
18 Mary handed the apple to Sandra.
19 How many objects is Sandra carrying? one 11 14 18
1 Daniel travelled to the garden.
2 Sandra went to the hallway.
3 Sandra picked up the apple there.
4 John went to the garden.
5 How many objects is Sandra carrying? one 3
6 John journeyed to the bathroom.
7 John moved to the office.
8 How many objects is Sandra carrying? one 3
9 Sandra moved to the office.
10 Daniel got the milk there.
11 How many objects is Daniel carrying? one 10
12 Sandra got the football there.
13 Sandra handed the apple to John.
14 How many objects is Daniel carrying? one 10
15 Mary went to the bathroom.
16 Sandra travelled to the bathroom.
17 How many objects is Daniel carrying? one 10
1 John moved to the bedroom.
2 John went back to the kitchen.
3 Mary journeyed to the kitchen.
4 Daniel went to the bathroom.
5 John went back to the hallway.
6 Daniel took the milk there.
7 How many objects is Daniel carrying? one 6
8 Sandra moved to the bathroom.
9 Mary went back to the hallway.
10 How many objects is Daniel carrying? one 6
11 Daniel moved to the office.
12 Mary went to the office.
13 How many objects is Daniel carrying? one 6
14 Mary got the apple there.
15 Daniel discarded the milk.
16 How many objects is Daniel carrying? none 6 15
17 Daniel travelled to the garden.
18 John moved to the garden.
19 How many objects is Daniel carrying? none 6 15
1 Sandra got the apple there.
2 Sandra gave the apple to Daniel.
3 How many objects is Sandra carrying? none 1 2
4 Mary went back to the bathroom.
5 Sandra took the football there.
6 How many objects is Sandra carrying? one 1 2 5
7 Mary went to the garden.
8 John moved to the garden.
9 How many objects is Sandra carrying? one 1 2 5
10 Daniel gave the apple to Sandra.
11 Sandra left the football.
12 How many objects is Sandra carrying? one 1 2 5 10 11
13 Daniel went to the office.
14 Sandra discarded the apple there.
15 How many objects is Sandra carrying? none 1 2 5 10 11 14
1 Sandra travelled to the office.
2 Sandra picked up the apple there.
3 How many objects is Sandra carrying? one 2
4 John picked up the football there.
5 Sandra gave the apple to Daniel.
6 How many objects is Sandra carrying? none 2 5
7 Daniel dropped the apple.
8 Daniel took the apple there.
9 How many objects is Daniel carrying? one 5 7 8
10 Daniel handed the apple to Sandra.
11 Sandra gave the apple to Daniel.
12 How many objects is Daniel carrying? one 5 7 8 10 11
13 John went back to the bathroom.
14 John moved to the hallway.
15 How many objects is Daniel carrying? one 5 7 8 10 11
1 Daniel travelled to the bathroom.
2 Mary went back to the bedroom.
3 Mary went back to the hallway.
4 John got the apple there.
5 How many objects is John carrying? one 4
6 Daniel went to the hallway.
7 Mary moved to the kitchen.
8 How many objects is John carrying? one 4
9 John put down the apple.
10 John travelled to the garden.
11 How many objects is John carrying? none 4 9
12 Mary moved to the office.
13 Daniel moved to the garden.
14 How many objects is John carrying? none 4 9
15 John went to the bathroom.
16 Sandra journeyed to the hallway.
17 Daniel went to the office.
18 John picked up the apple there.
19 How many objects is John carrying? one 4 9 18
1 Sandra went to the hallway.
2 John went to the garden.
3 John moved to the hallway.
4 John went back to the bathroom.
5 John got the apple there.
6 Daniel went to the bathroom.
7 How many objects is John carrying? one 5
8 John handed the apple to Daniel.
9 Daniel passed the apple to John.
10 How many objects is John carrying? one 5 8 9
11 Daniel went to the garden.
12 Sandra moved to the bathroom.
13 How many objects is Daniel carrying? none 8 9
14 John journeyed to the bedroom.
15 Daniel went back to the hallway.
16 How many objects is Daniel carrying? none 8 9
17 John picked up the football there.
18 John travelled to the office.
19 How many objects is John carrying? two 5 8 9 17
1 John moved to the garden.
2 Sandra grabbed the apple there.
3 How many objects is Sandra carrying? one 2
4 Mary travelled to the hallway.
5 John went back to the bedroom.
6 How many objects is Sandra carrying? one 2
7 Sandra moved to the garden.
8 Sandra dropped the apple.
9 How many objects is Sandra carrying? none 2 8
10 Sandra travelled to the bathroom.
11 Daniel moved to the kitchen.
12 How many objects is Sandra carrying? none 2 8
13 Sandra journeyed to the office.
14 John went back to the garden.
15 How many objects is Sandra carrying? none 2 8
1 Sandra went to the hallway.
2 Mary travelled to the kitchen.
3 Daniel journeyed to the hallway.
4 John took the apple there.
5 How many objects is John carrying? one 4
6 John left the apple.
7 Mary got the milk there.
8 How many objects is Mary carrying? one 7
9 Mary put down the milk.
10 John went to the bedroom.
11 How many objects is John carrying? none 4 6
12 Sandra travelled to the bedroom.
13 John grabbed the football there.
14 How many objects is Mary carrying? none 7 9
15 John passed the football to Sandra.
16 John went back to the hallway.
17 How many objects is John carrying? none 4 6 13 15
1 Daniel moved to the bedroom.
2 Mary moved to the hallway.
3 Mary went back to the kitchen.
4 Mary journeyed to the garden.
5 Daniel went to the garden.
6 Daniel took the apple there.
7 How many objects is Daniel carrying? one 6
8 Sandra travelled to the kitchen.
9 Sandra travelled to the garden.
10 How many objects is Daniel carrying? one 6
11 Daniel passed the apple to Mary.
12 John moved to the bedroom.
13 How many objects is Daniel carrying? none 6 11
14 Mary went back to the kitchen.
15 Mary discarded the apple.
16 How many objects is Mary carrying? none 11 15
17 John travelled to the hallway.
18 John went to the office.
19 How many objects is Mary carrying? none 11 15
1 Mary journeyed to the kitchen.
2 John took the apple there.
3 How many objects is John carrying? one 2
4 John passed the apple to Mary.
5 Mary handed the apple to John.
6 How many objects is Mary carrying? none 4 5
7 John passed the apple to Mary.
8 Mary handed the apple to John.
9 How many objects is Mary carrying? none 4 5 7 8
10 John handed the apple to Mary.
11 Mary went back to the bedroom.
12 How many objects is Mary carrying? one 4 5 7 8 10
13 Mary gave the apple to Sandra.
14 Sandra travelled to the office.
15 How many objects is Mary carrying? none 4 5 7 8 10 13
1 Daniel went back to the hallway.
2 Mary journeyed to the kitchen.
3 Mary grabbed the apple there.
4 Mary moved to the office.
5 How many objects is Mary carrying? one 3
6 Mary handed the apple to Sandra.
7 Sandra passed the apple to Mary.
8 How many objects is Sandra carrying? none 6 7
9 John went back to the garden.
10 Sandra took the football there.
11 How many objects is Sandra carrying? one 6 7 10
12 Daniel moved to the bathroom.
13 Mary passed the apple to Sandra.
14 How many objects is Mary carrying? none 3 6 7 13
15 Mary picked up the milk there.
16 John moved to the kitchen.
17 How many objects is Mary carrying? one 3 6 7 13 15
1 Mary travelled to the bedroom.
2 John travelled to the garden.
3 Mary journeyed to the bathroom.
4 Sandra went back to the bathroom.