-
Notifications
You must be signed in to change notification settings - Fork 0
/
numbers.aiml
973 lines (971 loc) · 28.2 KB
/
numbers.aiml
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
<?xml version="1.0" encoding="UTF-8"?>
<aiml version="1.0">
<!-- -->
<!-- Free software (c) 2011 ALICE A.I. Foundation. -->
<!-- This program is open source code released under -->
<!-- the terms of the GNU General Public License -->
<!-- as published by the Free Software Foundation. -->
<!-- Complies with AIML 1.0 Tag Set Specification -->
<!-- as adopted by the ALICE A.I. Foundation. -->
<!-- -->
<category><pattern>1</pattern><template>
<random>
<li>Do you mean you are 1 years old?</li>
<li>I in Roman numerals.</li>
<li>one?</li>
<li>one seems like a good number.</li>
</random>
</template></category>
<category><pattern>2</pattern><template>
<random>
<li>Do you mean you are 2 years old?</li>
<li>II in Roman numerals.</li>
<li>two?</li>
<li>two seems like a good number.</li>
</random>
</template></category>
<category><pattern>3</pattern><template>
<random>
<li>Do you mean you are 3 years old?</li>
<li>III in Roman numerals.</li>
<li>three?</li>
<li>three seems like a good number.</li>
</random>
</template></category>
<category><pattern>4</pattern><template>
<random>
<li>Do you mean you are 4 years old?</li>
<li>IV in Roman numerals.</li>
<li>four?</li>
<li>four seems like a good number.</li>
</random>
</template></category>
<category><pattern>5</pattern><template>
<random>
<li>Do you mean you are 5 years old?</li>
<li>V in Roman numerals.</li>
<li>five?</li>
<li>five seems like a good number.</li>
</random>
</template></category>
<category><pattern>6</pattern><template>
<random>
<li>Do you mean you are 6 years old?</li>
<li>VI in Roman numerals.</li>
<li>six?</li>
<li>six seems like a good number.</li>
</random>
</template></category>
<category><pattern>7</pattern><template>
<random>
<li>Do you mean you are 7 years old?</li>
<li>VII in Roman numerals.</li>
<li>seven?</li>
<li>seven seems like a good number.</li>
</random>
</template></category>
<category><pattern>8</pattern><template>
<random>
<li>Do you mean you are 8 years old?</li>
<li>VIII in Roman numerals.</li>
<li>eight?</li>
<li>eight seems like a good number.</li>
</random>
</template></category>
<category><pattern>9</pattern><template>
<random>
<li>Do you mean you are 9 years old?</li>
<li>IX in Roman numerals.</li>
<li>nine?</li>
<li>nine seems like a good number.</li>
</random>
</template></category>
<category><pattern>10</pattern><template>
<random>
<li>Do you mean you are 10 years old?</li>
<li>X in Roman numerals.</li>
<li>ten?</li>
<li>ten seems like a good number.</li>
</random>
</template></category>
<category><pattern>11</pattern><template>
<random>
<li>Do you mean you are 11 years old?</li>
<li>XI in Roman numerals.</li>
<li>eleven?</li>
<li>eleven seems like a good number.</li>
</random>
</template></category>
<category><pattern>12</pattern><template>
<random>
<li>Do you mean you are 12 years old?</li>
<li>XII in Roman numerals.</li>
<li>twelve?</li>
<li>twelve seems like a good number.</li>
</random>
</template></category>
<category><pattern>13</pattern><template>
<random>
<li>Do you mean you are 13 years old?</li>
<li>XIII in Roman numerals.</li>
<li>thirteen?</li>
<li>thirteen seems like a good number.</li>
</random>
</template></category>
<category><pattern>14</pattern><template>
<random>
<li>Do you mean you are 14 years old?</li>
<li>XIV in Roman numerals.</li>
<li>fourteen?</li>
<li>fourteen seems like a good number.</li>
</random>
</template></category>
<category><pattern>15</pattern><template>
<random>
<li>Do you mean you are 15 years old?</li>
<li>XV in Roman numerals.</li>
<li>fifteen?</li>
<li>fifteen seems like a good number.</li>
</random>
</template></category>
<category><pattern>16</pattern><template>
<random>
<li>Do you mean you are 16 years old?</li>
<li>XVI in Roman numerals.</li>
<li>sixteen?</li>
<li>sixteen seems like a good number.</li>
</random>
</template></category>
<category><pattern>17</pattern><template>
<random>
<li>Do you mean you are 17 years old?</li>
<li>XVII in Roman numerals.</li>
<li>seventeen?</li>
<li>seventeen seems like a good number.</li>
</random>
</template></category>
<category><pattern>18</pattern><template>
<random>
<li>Do you mean you are 18 years old?</li>
<li>XVIII in Roman numerals.</li>
<li>eighteen?</li>
<li>eighteen seems like a good number.</li>
</random>
</template></category>
<category><pattern>19</pattern><template>
<random>
<li>Do you mean you are 19 years old?</li>
<li>XIX in Roman numerals.</li>
<li>nineteen?</li>
<li>nineteen seems like a good number.</li>
</random>
</template></category>
<category><pattern>20</pattern><template>
<random>
<li>Do you mean you are 20 years old?</li>
<li>XX in Roman numerals.</li>
<li>twenty?</li>
<li>twenty seems like a good number.</li>
</random>
</template></category>
<category><pattern>21</pattern><template>
<random>
<li>Do you mean you are 21 years old?</li>
<li>XXI in Roman numerals.</li>
<li>twenty-one?</li>
<li>twenty-one seems like a good number.</li>
</random>
</template></category>
<category><pattern>22</pattern><template>
<random>
<li>Do you mean you are 22 years old?</li>
<li>XXII in Roman numerals.</li>
<li>twenty-two?</li>
<li>twenty-two seems like a good number.</li>
</random>
</template></category>
<category><pattern>23</pattern><template>
<random>
<li>Do you mean you are 23 years old?</li>
<li>XXIII in Roman numerals.</li>
<li>twenty-three?</li>
<li>twenty-three seems like a good number.</li>
</random>
</template></category>
<category><pattern>24</pattern><template>
<random>
<li>Do you mean you are 24 years old?</li>
<li>XXIV in Roman numerals.</li>
<li>twenty-four?</li>
<li>twenty-four seems like a good number.</li>
</random>
</template></category>
<category><pattern>25</pattern><template>
<random>
<li>Do you mean you are 25 years old?</li>
<li>XXV in Roman numerals.</li>
<li>twenty-five?</li>
<li>twenty-five seems like a good number.</li>
</random>
</template></category>
<category><pattern>26</pattern><template>
<random>
<li>Do you mean you are 26 years old?</li>
<li>XXVI in Roman numerals.</li>
<li>twenty-six?</li>
<li>twenty-six seems like a good number.</li>
</random>
</template></category>
<category><pattern>27</pattern><template>
<random>
<li>Do you mean you are 27 years old?</li>
<li>XXVII in Roman numerals.</li>
<li>twenty-seven?</li>
<li>twenty-seven seems like a good number.</li>
</random>
</template></category>
<category><pattern>28</pattern><template>
<random>
<li>Do you mean you are 28 years old?</li>
<li>XXVIII in Roman numerals.</li>
<li>twenty-eight?</li>
<li>twenty-eight seems like a good number.</li>
</random>
</template></category>
<category><pattern>29</pattern><template>
<random>
<li>Do you mean you are 29 years old?</li>
<li>XXIX in Roman numerals.</li>
<li>twenty-nine?</li>
<li>twenty-nine seems like a good number.</li>
</random>
</template></category>
<category><pattern>30</pattern><template>
<random>
<li>Do you mean you are 30 years old?</li>
<li>XXX in Roman numerals.</li>
<li>thirty?</li>
<li>thirty seems like a good number.</li>
</random>
</template></category>
<category><pattern>31</pattern><template>
<random>
<li>Do you mean you are 31 years old?</li>
<li>XXXI in Roman numerals.</li>
<li>thirty-one?</li>
<li>thirty-one seems like a good number.</li>
</random>
</template></category>
<category><pattern>32</pattern><template>
<random>
<li>Do you mean you are 32 years old?</li>
<li>XXXII in Roman numerals.</li>
<li>thirty-two?</li>
<li>thirty-two seems like a good number.</li>
</random>
</template></category>
<category><pattern>33</pattern><template>
<random>
<li>Do you mean you are 33 years old?</li>
<li>XXXIII in Roman numerals.</li>
<li>thirty-three?</li>
<li>thirty-three seems like a good number.</li>
</random>
</template></category>
<category><pattern>34</pattern><template>
<random>
<li>Do you mean you are 34 years old?</li>
<li>XXXIV in Roman numerals.</li>
<li>thirty-four?</li>
<li>thirty-four seems like a good number.</li>
</random>
</template></category>
<category><pattern>35</pattern><template>
<random>
<li>Do you mean you are 35 years old?</li>
<li>XXXV in Roman numerals.</li>
<li>thirty-five?</li>
<li>thirty-five seems like a good number.</li>
</random>
</template></category>
<category><pattern>36</pattern><template>
<random>
<li>Do you mean you are 36 years old?</li>
<li>XXXVI in Roman numerals.</li>
<li>thirty-six?</li>
<li>thirty-six seems like a good number.</li>
</random>
</template></category>
<category><pattern>37</pattern><template>
<random>
<li>Do you mean you are 37 years old?</li>
<li>XXXVII in Roman numerals.</li>
<li>thirty-seven?</li>
<li>thirty-seven seems like a good number.</li>
</random>
</template></category>
<category><pattern>38</pattern><template>
<random>
<li>Do you mean you are 38 years old?</li>
<li>XXXVIII in Roman numerals.</li>
<li>thirty-eight?</li>
<li>thirty-eight seems like a good number.</li>
</random>
</template></category>
<category><pattern>39</pattern><template>
<random>
<li>Do you mean you are 39 years old?</li>
<li>XXXIX in Roman numerals.</li>
<li>thirty-nine?</li>
<li>thirty-nine seems like a good number.</li>
</random>
</template></category>
<category><pattern>40</pattern><template>
<random>
<li>Do you mean you are 40 years old?</li>
<li>XL in Roman numerals.</li>
<li>forty?</li>
<li>forty seems like a good number.</li>
</random>
</template></category>
<category><pattern>41</pattern><template>
<random>
<li>Do you mean you are 41 years old?</li>
<li>XLI in Roman numerals.</li>
<li>forty-one?</li>
<li>forty-one seems like a good number.</li>
</random>
</template></category>
<category><pattern>42</pattern><template>
<random>
<li>Do you mean you are 42 years old?</li>
<li>XLII in Roman numerals.</li>
<li>forty-two?</li>
<li>forty-two seems like a good number.</li>
</random>
</template></category>
<category><pattern>43</pattern><template>
<random>
<li>Do you mean you are 43 years old?</li>
<li>XLIII in Roman numerals.</li>
<li>forty-three?</li>
<li>forty-three seems like a good number.</li>
</random>
</template></category>
<category><pattern>44</pattern><template>
<random>
<li>Do you mean you are 44 years old?</li>
<li>XLIV in Roman numerals.</li>
<li>forty-four?</li>
<li>forty-four seems like a good number.</li>
</random>
</template></category>
<category><pattern>45</pattern><template>
<random>
<li>Do you mean you are 45 years old?</li>
<li>XLV in Roman numerals.</li>
<li>forty-five?</li>
<li>forty-five seems like a good number.</li>
</random>
</template></category>
<category><pattern>46</pattern><template>
<random>
<li>Do you mean you are 46 years old?</li>
<li>XLVI in Roman numerals.</li>
<li>forty-six?</li>
<li>forty-six seems like a good number.</li>
</random>
</template></category>
<category><pattern>47</pattern><template>
<random>
<li>Do you mean you are 47 years old?</li>
<li>XLVII in Roman numerals.</li>
<li>forty-seven?</li>
<li>forty-seven seems like a good number.</li>
</random>
</template></category>
<category><pattern>48</pattern><template>
<random>
<li>Do you mean you are 48 years old?</li>
<li>XLVIII in Roman numerals.</li>
<li>forty-eight?</li>
<li>forty-eight seems like a good number.</li>
</random>
</template></category>
<category><pattern>49</pattern><template>
<random>
<li>Do you mean you are 49 years old?</li>
<li>XLIX in Roman numerals.</li>
<li>forty-nine?</li>
<li>forty-nine seems like a good number.</li>
</random>
</template></category>
<category><pattern>50</pattern><template>
<random>
<li>Do you mean you are 50 years old?</li>
<li>L in Roman numerals.</li>
<li>fifty?</li>
<li>fifty seems like a good number.</li>
</random>
</template></category>
<category><pattern>51</pattern><template>
<random>
<li>Do you mean you are 51 years old?</li>
<li>LI in Roman numerals.</li>
<li>fifty-one?</li>
<li>fifty-one seems like a good number.</li>
</random>
</template></category>
<category><pattern>52</pattern><template>
<random>
<li>Do you mean you are 52 years old?</li>
<li>LII in Roman numerals.</li>
<li>fifty-two?</li>
<li>fifty-two seems like a good number.</li>
</random>
</template></category>
<category><pattern>53</pattern><template>
<random>
<li>Do you mean you are 53 years old?</li>
<li>LIII in Roman numerals.</li>
<li>fifty-three?</li>
<li>fifty-three seems like a good number.</li>
</random>
</template></category>
<category><pattern>54</pattern><template>
<random>
<li>Do you mean you are 54 years old?</li>
<li>LIV in Roman numerals.</li>
<li>fifty-four?</li>
<li>fifty-four seems like a good number.</li>
</random>
</template></category>
<category><pattern>55</pattern><template>
<random>
<li>Do you mean you are 55 years old?</li>
<li>LV in Roman numerals.</li>
<li>fifty-five?</li>
<li>fifty-five seems like a good number.</li>
</random>
</template></category>
<category><pattern>56</pattern><template>
<random>
<li>Do you mean you are 56 years old?</li>
<li>LVI in Roman numerals.</li>
<li>fifty-six?</li>
<li>fifty-six seems like a good number.</li>
</random>
</template></category>
<category><pattern>57</pattern><template>
<random>
<li>Do you mean you are 57 years old?</li>
<li>LVII in Roman numerals.</li>
<li>fifty-seven?</li>
<li>fifty-seven seems like a good number.</li>
</random>
</template></category>
<category><pattern>58</pattern><template>
<random>
<li>Do you mean you are 58 years old?</li>
<li>LVIII in Roman numerals.</li>
<li>fifty-eight?</li>
<li>fifty-eight seems like a good number.</li>
</random>
</template></category>
<category><pattern>59</pattern><template>
<random>
<li>Do you mean you are 59 years old?</li>
<li>LIX in Roman numerals.</li>
<li>fifty-nine?</li>
<li>fifty-nine seems like a good number.</li>
</random>
</template></category>
<category><pattern>60</pattern><template>
<random>
<li>Do you mean you are 60 years old?</li>
<li>LX in Roman numerals.</li>
<li>sixty?</li>
<li>sixty seems like a good number.</li>
</random>
</template></category>
<category><pattern>61</pattern><template>
<random>
<li>Do you mean you are 61 years old?</li>
<li>LXI in Roman numerals.</li>
<li>sixty-one?</li>
<li>sixty-one seems like a good number.</li>
</random>
</template></category>
<category><pattern>62</pattern><template>
<random>
<li>Do you mean you are 62 years old?</li>
<li>LXII in Roman numerals.</li>
<li>sixty-two?</li>
<li>sixty-two seems like a good number.</li>
</random>
</template></category>
<category><pattern>63</pattern><template>
<random>
<li>Do you mean you are 63 years old?</li>
<li>LXIII in Roman numerals.</li>
<li>sixty-three?</li>
<li>sixty-three seems like a good number.</li>
</random>
</template></category>
<category><pattern>64</pattern><template>
<random>
<li>Do you mean you are 64 years old?</li>
<li>LXIV in Roman numerals.</li>
<li>sixty-four?</li>
<li>sixty-four seems like a good number.</li>
</random>
</template></category>
<category><pattern>65</pattern><template>
<random>
<li>Do you mean you are 65 years old?</li>
<li>LXV in Roman numerals.</li>
<li>sixty-five?</li>
<li>sixty-five seems like a good number.</li>
</random>
</template></category>
<category><pattern>66</pattern><template>
<random>
<li>Do you mean you are 66 years old?</li>
<li>LXVI in Roman numerals.</li>
<li>sixty-six?</li>
<li>sixty-six seems like a good number.</li>
</random>
</template></category>
<category><pattern>67</pattern><template>
<random>
<li>Do you mean you are 67 years old?</li>
<li>LXVII in Roman numerals.</li>
<li>sixty-seven?</li>
<li>sixty-seven seems like a good number.</li>
</random>
</template></category>
<category><pattern>68</pattern><template>
<random>
<li>Do you mean you are 68 years old?</li>
<li>LXVIII in Roman numerals.</li>
<li>sixty-eight?</li>
<li>sixty-eight seems like a good number.</li>
</random>
</template></category>
<category><pattern>69</pattern><template>
<random>
<li>Do you mean you are 69 years old?</li>
<li>LXIX in Roman numerals.</li>
<li>sixty-nine?</li>
<li>sixty-nine seems like a good number.</li>
</random>
</template></category>
<category><pattern>70</pattern><template>
<random>
<li>Do you mean you are 70 years old?</li>
<li>LXX in Roman numerals.</li>
<li>seventy?</li>
<li>seventy seems like a good number.</li>
</random>
</template></category>
<category><pattern>71</pattern><template>
<random>
<li>Do you mean you are 71 years old?</li>
<li>LXXI in Roman numerals.</li>
<li>seventy-one?</li>
<li>seventy-one seems like a good number.</li>
</random>
</template></category>
<category><pattern>72</pattern><template>
<random>
<li>Do you mean you are 72 years old?</li>
<li>LXXII in Roman numerals.</li>
<li>seventy-two?</li>
<li>seventy-two seems like a good number.</li>
</random>
</template></category>
<category><pattern>73</pattern><template>
<random>
<li>Do you mean you are 73 years old?</li>
<li>LXXIII in Roman numerals.</li>
<li>seventy-three?</li>
<li>seventy-three seems like a good number.</li>
</random>
</template></category>
<category><pattern>74</pattern><template>
<random>
<li>Do you mean you are 74 years old?</li>
<li>LXXIV in Roman numerals.</li>
<li>seventy-four?</li>
<li>seventy-four seems like a good number.</li>
</random>
</template></category>
<category><pattern>75</pattern><template>
<random>
<li>Do you mean you are 75 years old?</li>
<li>LXXV in Roman numerals.</li>
<li>seventy-five?</li>
<li>seventy-five seems like a good number.</li>
</random>
</template></category>
<category><pattern>76</pattern><template>
<random>
<li>Do you mean you are 76 years old?</li>
<li>LXXVI in Roman numerals.</li>
<li>seventy-six?</li>
<li>seventy-six seems like a good number.</li>
</random>
</template></category>
<category><pattern>77</pattern><template>
<random>
<li>Do you mean you are 77 years old?</li>
<li>LXXVII in Roman numerals.</li>
<li>seventy-seven?</li>
<li>seventy-seven seems like a good number.</li>
</random>
</template></category>
<category><pattern>78</pattern><template>
<random>
<li>Do you mean you are 78 years old?</li>
<li>LXXVIII in Roman numerals.</li>
<li>seventy-eight?</li>
<li>seventy-eight seems like a good number.</li>
</random>
</template></category>
<category><pattern>79</pattern><template>
<random>
<li>Do you mean you are 79 years old?</li>
<li>LXXIX in Roman numerals.</li>
<li>seventy-nine?</li>
<li>seventy-nine seems like a good number.</li>
</random>
</template></category>
<category><pattern>80</pattern><template>
<random>
<li>Do you mean you are 80 years old?</li>
<li>LXXX in Roman numerals.</li>
<li>eighty?</li>
<li>eighty seems like a good number.</li>
</random>
</template></category>
<category><pattern>81</pattern><template>
<random>
<li>Do you mean you are 81 years old?</li>
<li>LXXXI in Roman numerals.</li>
<li>eighty-one?</li>
<li>eighty-one seems like a good number.</li>
</random>
</template></category>
<category><pattern>82</pattern><template>
<random>
<li>Do you mean you are 82 years old?</li>
<li>LXXXII in Roman numerals.</li>
<li>eighty-two?</li>
<li>eighty-two seems like a good number.</li>
</random>
</template></category>
<category><pattern>83</pattern><template>
<random>
<li>Do you mean you are 83 years old?</li>
<li>LXXXIII in Roman numerals.</li>
<li>eighty-three?</li>
<li>eighty-three seems like a good number.</li>
</random>
</template></category>
<category><pattern>84</pattern><template>
<random>
<li>Do you mean you are 84 years old?</li>
<li>LXXXIV in Roman numerals.</li>
<li>eighty-four?</li>
<li>eighty-four seems like a good number.</li>
</random>
</template></category>
<category><pattern>85</pattern><template>
<random>
<li>Do you mean you are 85 years old?</li>
<li>LXXXV in Roman numerals.</li>
<li>eighty-five?</li>
<li>eighty-five seems like a good number.</li>
</random>
</template></category>
<category><pattern>86</pattern><template>
<random>
<li>Do you mean you are 86 years old?</li>
<li>LXXXVI in Roman numerals.</li>
<li>eighty-six?</li>
<li>eighty-six seems like a good number.</li>
</random>
</template></category>
<category><pattern>87</pattern><template>
<random>
<li>Do you mean you are 87 years old?</li>
<li>LXXXVII in Roman numerals.</li>
<li>eighty-seven?</li>
<li>eighty-seven seems like a good number.</li>
</random>
</template></category>
<category><pattern>88</pattern><template>
<random>
<li>Do you mean you are 88 years old?</li>
<li>LXXXVIII in Roman numerals.</li>
<li>eighty-eight?</li>
<li>eighty-eight seems like a good number.</li>
</random>
</template></category>
<category><pattern>89</pattern><template>
<random>
<li>Do you mean you are 89 years old?</li>
<li>LXXXIX in Roman numerals.</li>
<li>eighty-nine?</li>
<li>eighty-nine seems like a good number.</li>
</random>
</template></category>
<category><pattern>90</pattern><template>
<random>
<li>Do you mean you are 90 years old?</li>
<li>XC in Roman numerals.</li>
<li>ninety?</li>
<li>ninety seems like a good number.</li>
</random>
</template></category>
<category><pattern>91</pattern><template>
<random>
<li>Do you mean you are 91 years old?</li>
<li>XCI in Roman numerals.</li>
<li>ninety-one?</li>
<li>ninety-one seems like a good number.</li>
</random>
</template></category>
<category><pattern>92</pattern><template>
<random>
<li>Do you mean you are 92 years old?</li>
<li>XCII in Roman numerals.</li>
<li>ninety-two?</li>
<li>ninety-two seems like a good number.</li>
</random>
</template></category>
<category><pattern>93</pattern><template>
<random>
<li>Do you mean you are 93 years old?</li>
<li>XCIII in Roman numerals.</li>
<li>ninety-three?</li>
<li>ninety-three seems like a good number.</li>
</random>
</template></category>
<category><pattern>94</pattern><template>
<random>
<li>Do you mean you are 94 years old?</li>
<li>XCIV in Roman numerals.</li>
<li>ninety-four?</li>
<li>ninety-four seems like a good number.</li>
</random>
</template></category>
<category><pattern>95</pattern><template>
<random>
<li>Do you mean you are 95 years old?</li>
<li>XCV in Roman numerals.</li>
<li>ninety-five?</li>
<li>ninety-five seems like a good number.</li>
</random>
</template></category>
<category><pattern>96</pattern><template>
<random>
<li>Do you mean you are 96 years old?</li>
<li>XCVI in Roman numerals.</li>
<li>ninety-six?</li>
<li>ninety-six seems like a good number.</li>
</random>
</template></category>
<category><pattern>97</pattern><template>
<random>
<li>Do you mean you are 97 years old?</li>
<li>XCVII in Roman numerals.</li>
<li>ninety-seven?</li>
<li>ninety-seven seems like a good number.</li>
</random>
</template></category>
<category><pattern>98</pattern><template>
<random>
<li>Do you mean you are 98 years old?</li>
<li>XCVIII in Roman numerals.</li>
<li>ninety-eight?</li>
<li>ninety-eight seems like a good number.</li>
</random>
</template></category>
<category><pattern>99</pattern><template>
<random>
<li>Do you mean you are 99 years old?</li>
<li>XCIX in Roman numerals.</li>
<li>ninety-nine?</li>
<li>ninety-nine seems like a good number.</li>
</random>
</template></category>
<category><pattern>100</pattern><template>
<random>
<li>Do you mean you are 100 years old?</li>
<li>C in Roman numerals.</li>
<li>one hundred?</li>
<li>one hundred seems like a good number.</li>
</random>
</template></category>
<category><pattern>101</pattern><template>
<random>
<li>Do you mean you are 101 years old?</li>
<li>CI in Roman numerals.</li>
<li>one hundred one?</li>
<li>one hundred one seems like a good number.</li>
</random>
</template></category>
<category><pattern>102</pattern><template>
<random>
<li>Do you mean you are 102 years old?</li>
<li>CII in Roman numerals.</li>
<li>one hundred two?</li>
<li>one hundred two seems like a good number.</li>
</random>
</template></category>
<category><pattern>103</pattern><template>
<random>
<li>Do you mean you are 103 years old?</li>
<li>CIII in Roman numerals.</li>
<li>one hundred three?</li>
<li>one hundred three seems like a good number.</li>
</random>
</template></category>
<category><pattern>104</pattern><template>
<random>
<li>Do you mean you are 104 years old?</li>
<li>CIV in Roman numerals.</li>
<li>one hundred four?</li>
<li>one hundred four seems like a good number.</li>
</random>
</template></category>
<category><pattern>105</pattern><template>
<random>
<li>Do you mean you are 105 years old?</li>
<li>CV in Roman numerals.</li>
<li>one hundred five?</li>
<li>one hundred five seems like a good number.</li>
</random>
</template></category>
<category><pattern>106</pattern><template>
<random>
<li>Do you mean you are 106 years old?</li>
<li>CVI in Roman numerals.</li>
<li>one hundred six?</li>
<li>one hundred six seems like a good number.</li>
</random>
</template></category>
<category><pattern>107</pattern><template>
<random>
<li>Do you mean you are 107 years old?</li>
<li>CVII in Roman numerals.</li>
<li>one hundred seven?</li>
<li>one hundred seven seems like a good number.</li>
</random>
</template></category>
<category><pattern>108</pattern><template>
<random>
<li>Do you mean you are 108 years old?</li>
<li>CVIII in Roman numerals.</li>
<li>one hundred eight?</li>
<li>one hundred eight seems like a good number.</li>
</random>
</template></category>
<category><pattern>109</pattern><template>
<random>
<li>Do you mean you are 109 years old?</li>
<li>CIX in Roman numerals.</li>
<li>one hundred nine?</li>
<li>one hundred nine seems like a good number.</li>
</random>
</template></category>
<category><pattern>110</pattern><template>
<random>
<li>Do you mean you are 110 years old?</li>
<li>CX in Roman numerals.</li>
<li>one hundred ten?</li>
<li>one hundred ten seems like a good number.</li>
</random>
</template></category>
<category><pattern>111</pattern><template>
<random>
<li>Do you mean you are 111 years old?</li>
<li>CXI in Roman numerals.</li>
<li>one hundred eleven?</li>
<li>one hundred eleven seems like a good number.</li>
</random>
</template></category>
<category><pattern>112</pattern><template>
<random>
<li>Do you mean you are 112 years old?</li>
<li>CXII in Roman numerals.</li>
<li>one hundred twelve?</li>
<li>one hundred twelve seems like a good number.</li>
</random>
</template></category>
<category><pattern>113</pattern><template>
<random>
<li>Do you mean you are 113 years old?</li>
<li>CXIII in Roman numerals.</li>
<li>one hundred thirteen?</li>
<li>one hundred thirteen seems like a good number.</li>
</random>
</template></category>
<category><pattern>114</pattern><template>
<random>
<li>Do you mean you are 114 years old?</li>
<li>CXIV in Roman numerals.</li>
<li>one hundred fourteen?</li>
<li>one hundred fourteen seems like a good number.</li>
</random>
</template></category>
<category><pattern>115</pattern><template>
<random>
<li>Do you mean you are 115 years old?</li>
<li>CXV in Roman numerals.</li>
<li>one hundred fifteen?</li>
<li>one hundred fifteen seems like a good number.</li>
</random>
</template></category>
<category><pattern>116</pattern><template>
<random>
<li>Do you mean you are 116 years old?</li>
<li>CXVI in Roman numerals.</li>
<li>one hundred sixteen?</li>
<li>one hundred sixteen seems like a good number.</li>
</random>
</template></category>
<category><pattern>117</pattern><template>
<random>
<li>Do you mean you are 117 years old?</li>
<li>CXVII in Roman numerals.</li>
<li>one hundred seventeen?</li>
<li>one hundred seventeen seems like a good number.</li>
</random>
</template></category>
<category><pattern>118</pattern><template>
<random>
<li>Do you mean you are 118 years old?</li>
<li>CXVIII in Roman numerals.</li>
<li>one hundred eighteen?</li>
<li>one hundred eighteen seems like a good number.</li>
</random>
</template></category>
<category><pattern>119</pattern><template>
<random>
<li>Do you mean you are 119 years old?</li>
<li>CXIX in Roman numerals.</li>
<li>one hundred nineteen?</li>
<li>one hundred nineteen seems like a good number.</li>
</random>
</template></category>
<category><pattern>120</pattern><template>
<random>
<li>Do you mean you are 120 years old?</li>
<li>CXX in Roman numerals.</li>
<li>one hundred twenty?</li>
<li>one hundred twenty seems like a good number.</li>
</random>
</template></category>
</aiml>