home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_100 / 160_01 / outputs < prev    next >
Text File  |  1985-11-26  |  14KB  |  555 lines

  1. ###accnt.tst
  2. 101     300.00
  3. 102     301.50
  4. 103     418.66
  5. ###arith.tst
  6. 3 2 -8 2
  7. 3.00000 2.50000 -8.00000
  8. ###asst.tst
  9. ###asst2.tst
  10. c: dec=65 oct=101 hex=41 ASCII=A
  11. i: dec=65 oct=101 hex=41 unsigned=65
  12. c: dec=88 oct=130 hex=58 ASCII=X
  13. i: dec=-4 oct=177774 hex=fffc unsigned=65532
  14. ###badpow.tst
  15. 2 to the power 0 equals 1
  16. 2 to the power 1 equals 1
  17. 2 to the power 2 equals 1
  18. 2 to the power 3 equals 1
  19. 2 to the power 4 equals 1
  20. 2 to the power 5 equals 1
  21. 2 to the power 6 equals 1
  22. 2 to the power 7 equals 1
  23. 2 to the power 8 equals 1
  24. 2 to the power 9 equals 1
  25. ###bdrill.tst
  26.  
  27.     a = 0000000000010101
  28.     b = 0000000000011001
  29. a + b = 0000000000101110
  30. a & b = 0000000000010001
  31. a | b = 0000000000011101
  32. a ^ b = 0000000000001100
  33. ###blast.tst
  34. 10
  35. 9
  36. 8
  37. 7
  38. 6
  39. 5
  40. 4
  41. 3
  42. 2
  43. 1
  44. 0
  45. Blast off!
  46. ###blast2.tst
  47. 10
  48. 9
  49. 8
  50. 7
  51. 6
  52. 5
  53. 4
  54. 3
  55. We have ignition!
  56. 2
  57. 1
  58. 0
  59. Blast off!
  60. ###cap.tst
  61. Abc Xyz
  62. 123 Q W E
  63. ###cap2.tst
  64. Abc Xyz
  65. 123 Q W E
  66. ###codes1.tst
  67.   0 0x00 0000
  68.   1 0x01 0001
  69.   2 0x02 0002
  70.   3 0x03 0003
  71.   4 0x04 0004
  72.   5 0x05 0005
  73.   6 0x06 0006
  74.   7 0x07 0007
  75.   8 0x08 0010
  76.   9 0x09 0011
  77.  10 0x0a 0012
  78.  11 0x0b 0013
  79.  12 0x0c 0014
  80.  13 0x0d 0015
  81.  14 0x0e 0016
  82.  15 0x0f 0017
  83.  16 0x10 0020
  84.  17 0x11 0021
  85.  18 0x12 0022
  86.  19 0x13 0023
  87.  20 0x14 0024
  88.  21 0x15 0025
  89.  22 0x16 0026
  90.  23 0x17 0027
  91.  24 0x18 0030
  92.  25 0x19 0031
  93.  26 0x1a 0032
  94.  27 0x1b 0033
  95.  28 0x1c 0034
  96.  29 0x1d 0035
  97.  30 0x1e 0036
  98.  31 0x1f 0037
  99.  32 0x20 0040 ' '
  100.  33 0x21 0041 '!'
  101.  34 0x22 0042 '"'
  102.  35 0x23 0043 '#'
  103.  36 0x24 0044 '$'
  104.  37 0x25 0045 '%'
  105.  38 0x26 0046 '&'
  106.  39 0x27 0047 '''
  107.  40 0x28 0050 '('
  108.  41 0x29 0051 ')'
  109.  42 0x2a 0052 '*'
  110.  43 0x2b 0053 '+'
  111.  44 0x2c 0054 ','
  112.  45 0x2d 0055 '-'
  113.  46 0x2e 0056 '.'
  114.  47 0x2f 0057 '/'
  115.  48 0x30 0060 '0' digit
  116.  49 0x31 0061 '1' digit
  117.  50 0x32 0062 '2' digit
  118.  51 0x33 0063 '3' digit
  119.  52 0x34 0064 '4' digit
  120.  53 0x35 0065 '5' digit
  121.  54 0x36 0066 '6' digit
  122.  55 0x37 0067 '7' digit
  123.  56 0x38 0070 '8' digit
  124.  57 0x39 0071 '9' digit
  125.  58 0x3a 0072 ':'
  126.  59 0x3b 0073 ';'
  127.  60 0x3c 0074 '<'
  128.  61 0x3d 0075 '='
  129.  62 0x3e 0076 '>'
  130.  63 0x3f 0077 '?'
  131.  64 0x40 0100 '@'
  132.  65 0x41 0101 'A' uppercase
  133.  66 0x42 0102 'B' uppercase
  134.  67 0x43 0103 'C' uppercase
  135.  68 0x44 0104 'D' uppercase
  136.  69 0x45 0105 'E' uppercase
  137.  70 0x46 0106 'F' uppercase
  138.  71 0x47 0107 'G' uppercase
  139.  72 0x48 0110 'H' uppercase
  140.  73 0x49 0111 'I' uppercase
  141.  74 0x4a 0112 'J' uppercase
  142.  75 0x4b 0113 'K' uppercase
  143.  76 0x4c 0114 'L' uppercase
  144.  77 0x4d 0115 'M' uppercase
  145.  78 0x4e 0116 'N' uppercase
  146.  79 0x4f 0117 'O' uppercase
  147.  80 0x50 0120 'P' uppercase
  148.  81 0x51 0121 'Q' uppercase
  149.  82 0x52 0122 'R' uppercase
  150.  83 0x53 0123 'S' uppercase
  151.  84 0x54 0124 'T' uppercase
  152.  85 0x55 0125 'U' uppercase
  153.  86 0x56 0126 'V' uppercase
  154.  87 0x57 0127 'W' uppercase
  155.  88 0x58 0130 'X' uppercase
  156.  89 0x59 0131 'Y' uppercase
  157.  90 0x5a 0132 'Z' uppercase
  158.  91 0x5b 0133 '['
  159.  92 0x5c 0134 '\'
  160.  93 0x5d 0135 ']'
  161.  94 0x5e 0136 '^'
  162.  95 0x5f 0137 '_'
  163.  96 0x60 0140 '`'
  164.  97 0x61 0141 'a' lowercase
  165.  98 0x62 0142 'b' lowercase
  166.  99 0x63 0143 'c' lowercase
  167. 100 0x64 0144 'd' lowercase
  168. 101 0x65 0145 'e' lowercase
  169. 102 0x66 0146 'f' lowercase
  170. 103 0x67 0147 'g' lowercase
  171. 104 0x68 0150 'h' lowercase
  172. 105 0x69 0151 'i' lowercase
  173. 106 0x6a 0152 'j' lowercase
  174. 107 0x6b 0153 'k' lowercase
  175. 108 0x6c 0154 'l' lowercase
  176. 109 0x6d 0155 'm' lowercase
  177. 110 0x6e 0156 'n' lowercase
  178. 111 0x6f 0157 'o' lowercase
  179. 112 0x70 0160 'p' lowercase
  180. 113 0x71 0161 'q' lowercase
  181. 114 0x72 0162 'r' lowercase
  182. 115 0x73 0163 's' lowercase
  183. 116 0x74 0164 't' lowercase
  184. 117 0x75 0165 'u' lowercase
  185. 118 0x76 0166 'v' lowercase
  186. 119 0x77 0167 'w' lowercase
  187. 120 0x78 0170 'x' lowercase
  188. 121 0x79 0171 'y' lowercase
  189. 122 0x7a 0172 'z' lowercase
  190. 123 0x7b 0173 '{'
  191. 124 0x7c 0174 '|'
  192. 125 0x7d 0175 '}'
  193. 126 0x7e 0176 '~'
  194. 127 0x7f 0177
  195. ###codes2.tst
  196.  49 0x31 0061 '1' digit
  197.  97 0x61 0141 'a' lowercase
  198.  65 0x41 0101 'A' uppercase
  199.  33 0x21 0041 '!'
  200.  10 0x0a 0012
  201. ###codes3.tst
  202.  49 0x31 0061 '1' digit
  203.  97 0x61 0141 'a' lowercase
  204.  65 0x41 0101 'A' uppercase
  205.  33 0x21 0041 '!'
  206.  10 0x0a 0012
  207. ###codes4.tst
  208.   0 0x00 0000 C
  209.   1 0x01 0001 C
  210.   2 0x02 0002 C
  211.   3 0x03 0003 C
  212.   4 0x04 0004 C
  213.   5 0x05 0005 C
  214.   6 0x06 0006 C
  215.   7 0x07 0007 C
  216.   8 0x08 0010 C
  217.   9 0x09 0011 S C
  218.  10 0x0a 0012 S C
  219.  11 0x0b 0013 C
  220.  12 0x0c 0014 S C
  221.  13 0x0d 0015 S C
  222.  14 0x0e 0016 C
  223.  15 0x0f 0017 C
  224.  16 0x10 0020 C
  225.  17 0x11 0021 C
  226.  18 0x12 0022 C
  227.  19 0x13 0023 C
  228.  20 0x14 0024 C
  229.  21 0x15 0025 C
  230.  22 0x16 0026 C
  231.  23 0x17 0027 C
  232.  24 0x18 0030 C
  233.  25 0x19 0031 C
  234.  26 0x1a 0032 C
  235.  27 0x1b 0033 C
  236.  28 0x1c 0034 C
  237.  29 0x1d 0035 C
  238.  30 0x1e 0036 C
  239.  31 0x1f 0037 C
  240.  32 0x20 0040 ' ' S P
  241.  33 0x21 0041 '!' P
  242.  34 0x22 0042 '"' P
  243.  35 0x23 0043 '#' P
  244.  36 0x24 0044 '$' P
  245.  37 0x25 0045 '%' P
  246.  38 0x26 0046 '&' P
  247.  39 0x27 0047 ''' P
  248.  40 0x28 0050 '(' P
  249.  41 0x29 0051 ')' P
  250.  42 0x2a 0052 '*' P
  251.  43 0x2b 0053 '+' P
  252.  44 0x2c 0054 ',' P
  253.  45 0x2d 0055 '-' P
  254.  46 0x2e 0056 '.' P
  255.  47 0x2f 0057 '/' P
  256.  48 0x30 0060 '0' D AN
  257.  49 0x31 0061 '1' D AN
  258.  50 0x32 0062 '2' D AN
  259.  51 0x33 0063 '3' D AN
  260.  52 0x34 0064 '4' D AN
  261.  53 0x35 0065 '5' D AN
  262.  54 0x36 0066 '6' D AN
  263.  55 0x37 0067 '7' D AN
  264.  56 0x38 0070 '8' D AN
  265.  57 0x39 0071 '9' D AN
  266.  58 0x3a 0072 ':' P
  267.  59 0x3b 0073 ';' P
  268.  60 0x3c 0074 '<' P
  269.  61 0x3d 0075 '=' P
  270.  62 0x3e 0076 '>' P
  271.  63 0x3f 0077 '?' P
  272.  64 0x40 0100 '@' P
  273.  65 0x41 0101 'A' UC L AN
  274.  66 0x42 0102 'B' UC L AN
  275.  67 0x43 0103 'C' UC L AN
  276.  68 0x44 0104 'D' UC L AN
  277.  69 0x45 0105 'E' UC L AN
  278.  70 0x46 0106 'F' UC L AN
  279.  71 0x47 0107 'G' UC L AN
  280.  72 0x48 0110 'H' UC L AN
  281.  73 0x49 0111 'I' UC L AN
  282.  74 0x4a 0112 'J' UC L AN
  283.  75 0x4b 0113 'K' UC L AN
  284.  76 0x4c 0114 'L' UC L AN
  285.  77 0x4d 0115 'M' UC L AN
  286.  78 0x4e 0116 'N' UC L AN
  287.  79 0x4f 0117 'O' UC L AN
  288.  80 0x50 0120 'P' UC L AN
  289.  81 0x51 0121 'Q' UC L AN
  290.  82 0x52 0122 'R' UC L AN
  291.  83 0x53 0123 'S' UC L AN
  292.  84 0x54 0124 'T' UC L AN
  293.  85 0x55 0125 'U' UC L AN
  294.  86 0x56 0126 'V' UC L AN
  295.  87 0x57 0127 'W' UC L AN
  296.  88 0x58 0130 'X' UC L AN
  297.  89 0x59 0131 'Y' UC L AN
  298.  90 0x5a 0132 'Z' UC L AN
  299.  91 0x5b 0133 '[' P
  300.  92 0x5c 0134 '\' P
  301.  93 0x5d 0135 ']' P
  302.  94 0x5e 0136 '^' P
  303.  95 0x5f 0137 '_' P
  304.  96 0x60 0140 '`' P
  305.  97 0x61 0141 'a' LC L AN
  306.  98 0x62 0142 'b' LC L AN
  307.  99 0x63 0143 'c' LC L AN
  308. 100 0x64 0144 'd' LC L AN
  309. 101 0x65 0145 'e' LC L AN
  310. 102 0x66 0146 'f' LC L AN
  311. 103 0x67 0147 'g' LC L AN
  312. 104 0x68 0150 'h' LC L AN
  313. 105 0x69 0151 'i' LC L AN
  314. 106 0x6a 0152 'j' LC L AN
  315. 107 0x6b 0153 'k' LC L AN
  316. 108 0x6c 0154 'l' LC L AN
  317. 109 0x6d 0155 'm' LC L AN
  318. 110 0x6e 0156 'n' LC L AN
  319. 111 0x6f 0157 'o' LC L AN
  320. 112 0x70 0160 'p' LC L AN
  321. 113 0x71 0161 'q' LC L AN
  322. 114 0x72 0162 'r' LC L AN
  323. 115 0x73 0163 's' LC L AN
  324. 116 0x74 0164 't' LC L AN
  325. 117 0x75 0165 'u' LC L AN
  326. 118 0x76 0166 'v' LC L AN
  327. 119 0x77 0167 'w' LC L AN
  328. 120 0x78 0170 'x' LC L AN
  329. 121 0x79 0171 'y' LC L AN
  330. 122 0x7a 0172 'z' LC L AN
  331. 123 0x7b 0173 '{' P
  332. 124 0x7c 0174 '|' P
  333. 125 0x7d 0175 '}' P
  334. 126 0x7e 0176 '~' P
  335. 127 0x7f 0177 C
  336. ###copy2.tst
  337. x
  338. ###dmpdem.tst
  339.  
  340. 00003274:  74 65 73 74 69 6e 67 20 31 20 32 20 33 0a 00 00
  341.  
  342. 0000326c:  c8 43 00 00 00 00 00 00
  343.  
  344. 00000040:  c0 1d 30 1b
  345. ###fact.tst
  346. 3! = 6
  347. ###factl.tst
  348. ###fast.tst
  349. ###getbn.tst
  350.    33 0x0021 0000041
  351. ###getbn2.tst
  352.     5 0x0005 0000005
  353.    15 0x000f 0000017
  354. ###gettt.tst
  355. 12345678901234567890      100      200      300
  356.                    a      101      201      301
  357.                    b      102      202      302
  358. ###guess.tst
  359. Each time I guess, please answer
  360.  H if I'm high
  361.  L if I'm low
  362.  E if I guessed it
  363. I guess 8
  364. I guess 4
  365. I guess 2
  366. Your number is 1
  367. Thanks for the game
  368. ###guess2.tst
  369. Each time I guess, please answer
  370. H if I'm high
  371. L if I'm lowE if I guessed it
  372. I guess 8
  373. I guess 4
  374. I guess 2
  375. Your number is 1
  376. Thanks for the game
  377. ###hello.tst
  378. hello, world
  379. ###hello2.tst
  380. hello, world
  381. ###hello3.tst
  382. hello, world
  383. ###hello4.tst
  384. hello, world
  385. ###hello5.tst
  386. hello, world
  387. ###inits.tst
  388. 1 2 x
  389. ###loadtt.tst
  390. 12345678901234567890      100      200      300
  391.                    a      101      201      301
  392.                    b      102      202      302
  393. ###maxmin.tst
  394. ###mortg.tst
  395. Enter principal (e.g. 82500.00): Enter annual interest rate (e.g. 16.25): Enter number of years: 
  396. principal=10000.00  interest=18.0000%  years=1
  397.  
  398.  payment      total   interest  principal    balance
  399.   number    payment    payment    payment
  400.                                             10000.00
  401.        1     916.80     150.00     766.80    9233.20
  402.        2     916.80     138.50     778.30    8454.90
  403.        3     916.80     126.82     789.98    7664.92
  404.        4     916.80     114.97     801.83    6863.10
  405.        5     916.80     102.95     813.85    6049.24
  406.        6     916.80      90.74     826.06    5223.18
  407.        7     916.80      78.35     838.45    4384.73
  408.        8     916.80      65.77     851.03    3533.70
  409.        9     916.80      53.01     863.79    2669.91
  410.       10     916.80      40.05     876.75    1793.15
  411.       11     916.80      26.90     889.90     903.25
  412.       12     916.80      13.55     903.25       0.00
  413. ###mortg2.tst
  414. Enter principal (e.g. 82500.00): Enter annual interest rate (e.g. 16.25): Enter number of years: 
  415. principal=  10000.00  interest=18.0000%  years=1
  416.  
  417.  payment      total   interest  principal    balance
  418.   number    payment    payment    payment
  419.                                              1000000
  420.        1      91680      15000      76680     923320
  421.        2      91680      13850      77830     845490
  422.        3      91680      12682      78998     766492
  423.        4      91680      11497      80183     686309
  424.        5      91680      10295      81385     604924
  425.        6      91680       9074      82606     522318
  426.        7      91680       7835      83845     438473
  427.        8      91680       6577      85103     353370
  428.        9      91680       5301      86379     266991
  429.       10      91680       4005      87675     179316
  430.       11      91680       2690      88990      90326
  431.       12      91681       1355      90326          0
  432. ###powdem.tst
  433. 2 to the power 0 equals 1
  434. 2 to the power 1 equals 2
  435. 2 to the power 2 equals 4
  436. 2 to the power 3 equals 8
  437. 2 to the power 4 equals 16
  438. 2 to the power 5 equals 32
  439. 2 to the power 6 equals 64
  440. 2 to the power 7 equals 128
  441. 2 to the power 8 equals 256
  442. 2 to the power 9 equals 512
  443. ###pr2a.tst
  444.     a =     1a4d
  445.     b =        0
  446. a + b =     1a4d
  447. ###pr2b.tst
  448.     a = 1.230000e+02
  449.     b = 0.000000e+00
  450. a + b = 1.230000e+02
  451. ###prsam.tst
  452. Enter a string:
  453. CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC
  454. C            CCCCCCCCCCCCCCCCCCCCCCCCCC         CCCCCCCCCCCC
  455. CCC        CCCCCCCCCCCCCCCCCCCCCCCC                 CCCCCCCC
  456. CCCC      CCCCCCCCCCCCCCCCCCCCCCC                     CCCCCC
  457. CCCC      CCCCCCCCCCCCCCCCCCCCCC            CCCCC      CCCCC
  458. CCCC      CCCCCCCCCCCCCCCCCCCCC           CCCCCCCC      CCCC
  459. CCCC      CCCCCCCCCCCCCCCCCCCCC          CCCCCCCCCC     CCCC
  460. CCCC      CCCCCCCCCCCCCCCCCCCCC         CCCCCCCCCCC     CCCC
  461. CCCC      CCCCCCCCCCCCCCCCCCCCC        CCCCCCCCCCC      CCCC
  462. CCCC      CCCCCCCCCCCCCCCCCCCCC       CCCCCCCCCCC       CCCC
  463. CCCC      CCCCCCCCCCCCCCCCCCCCC      CCCCCCCCCCC        CCCC
  464. CCCC      CCCCCCCCCCCCCCCCCCC C     CCCCCCCCCCC         CCCC
  465. CCCC      CCCCCCCCCCCCCCCCCC  C     CCCCCCCCCC          CCCC
  466. CCCC      CCCCCCCCCCCCCCCCC   C      CCCCCCCC           CCCC
  467. CCCC      CCCCCCCCCCCCCCC     CC                       CCCCC
  468. C                             CCCCC                 CCCCCCCC
  469. C                             CCCCCCCCC         CCCCCCCCCCCC
  470. C             CCCCC                                        C
  471. C             CCCCC                                        C
  472. CCCC      CCCCCCCCCCCCC   CCCCCCCCCC      CCCCCCCCCCCC     C
  473. CCCCC      CCCCCCCCCCC   CCCCCCCCCCC      CCCCCCCCCCCCCC   C
  474. CCCCC      CCCCCCCCCCC   CCCCCCCCCCC      CCCCCCCCCCCCCCC  C
  475. CCCCCC      CCCCCCCCC   CCCCCCCCCCCC      CCCCCCCCCCCCCCCC C
  476. CCCCCC      CCCCCCCCC   CCCCCCCCCCCC      CCCCCCCCCCCCCCCCCC
  477. CCCCCCC      CCCCCCC   CCCCCCCCCCCCC      CCCCCCC CCCCCCCCCC
  478. CCCCCCC      CCCCCCC   CCCCCCCCCCCCC              CCCCCCCCCC
  479. CCCCCCCC      CCCCC   CCCCCCCCCCCCCC      CCCCCC  CCCCCCCCCC
  480. CCCCCCCC      CCCCC   CCCCCCCCCCCCCC      CCCCCCC CCCCCCCCCC
  481. CCCCCCCCC      CCC   CCCCCCCCCCCCCCC      CCCCCCCCCCCCCCCC C
  482. CCCCCCCCC      CCC   CCCCCCCCCCCCCCC      CCCCCCCCCCCCCCC  C
  483. CCCCCCCCCC      C   CCCCCCCCCCCCCCCC      CCCCCCCCCCCCCC   C
  484. CCCCCCCCCC          CCCCCCCCCCCCCCCC      CCCCCCCCCCCC     C
  485. CCCCCCCCCCC        CCCCCCCCCCCCC                           C
  486. CCCCCCCCCCC        CCCCCCCCCCCCC                           C
  487. CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC
  488. ###recpt1.tst
  489. First = 1
  490. Second = 1
  491. ###recpt2.tst
  492. First = 1
  493. Second = 2
  494. ###recpt3.tst
  495. First = 1
  496. Second = 2
  497. ###revers.tst
  498. 54321
  499. able was i ere i saw elba
  500. emit eht si won
  501. ###shuf52.tst
  502.  0 49 40 21 46 12 43 38 30 34  1 44 31 
  503.  3 10 27 20 35 32 25 36 28 47 33 18 23 
  504. 16 39 24 13  7 19 42 15  5 45  8  2  6 
  505. 41 22 17  9  4 50 14 48 37 26 11 51 29 
  506.  
  507. ###sizes.tst
  508. ###slow.tst
  509. ###tower.tst
  510. Start:
  511. Peg 0: 5 4 3 2 1
  512. Peg 1:
  513. Peg 2:
  514. Move disk 1 from 0 to 2
  515. Move disk 2 from 0 to 1
  516. Move disk 1 from 2 to 1
  517. Move disk 3 from 0 to 2
  518. Move disk 1 from 1 to 0
  519. Move disk 2 from 1 to 2
  520. Move disk 1 from 0 to 2
  521. Move disk 4 from 0 to 1
  522. Move disk 1 from 2 to 1
  523. Move disk 2 from 2 to 0
  524. Move disk 1 from 1 to 0
  525. Move disk 3 from 2 to 1
  526. Move disk 1 from 0 to 2
  527. Move disk 2 from 0 to 1
  528. Move disk 1 from 2 to 1
  529. Move disk 5 from 0 to 2
  530. Move disk 1 from 1 to 0
  531. Move disk 2 from 1 to 2
  532. Move disk 1 from 0 to 2
  533. Move disk 3 from 1 to 0
  534. Move disk 1 from 2 to 1
  535. Move disk 2 from 2 to 0
  536. Move disk 1 from 1 to 0
  537. Move disk 4 from 1 to 2
  538. Move disk 1 from 0 to 2
  539. Move disk 2 from 0 to 1
  540. Move disk 1 from 2 to 1
  541. Move disk 3 from 0 to 2
  542. Move disk 1 from 1 to 0
  543. Move disk 2 from 1 to 2
  544. Move disk 1 from 0 to 2
  545. Finish:
  546. Peg 0:
  547. Peg 1:
  548. Peg 2: 5 4 3 2 1
  549. ###vacat.tst
  550. vacation.desc = leave for Hawaii
  551. vacation.plan = 1984
  552. vacation.start = 1983
  553. vacation.finish = 1983
  554. ###EOF
  555.