1a8ea26d7c94526518670e54f44336f433d0ac77cCarl Worth#define one 1
2a8ea26d7c94526518670e54f44336f433d0ac77cCarl Worth#define two 2
3a8ea26d7c94526518670e54f44336f433d0ac77cCarl Worth#define three 3
4a8ea26d7c94526518670e54f44336f433d0ac77cCarl Worth#define five 5
5a8ea26d7c94526518670e54f44336f433d0ac77cCarl Worth#if five < two
6a8ea26d7c94526518670e54f44336f433d0ac77cCarl Worthfailure_1
7a8ea26d7c94526518670e54f44336f433d0ac77cCarl Worth#else
8a8ea26d7c94526518670e54f44336f433d0ac77cCarl Worthsuccess_1
9a8ea26d7c94526518670e54f44336f433d0ac77cCarl Worth#endif
10a8ea26d7c94526518670e54f44336f433d0ac77cCarl Worth#if three >= two
11a8ea26d7c94526518670e54f44336f433d0ac77cCarl Worthsuccess_2
12a8ea26d7c94526518670e54f44336f433d0ac77cCarl Worth#else
13a8ea26d7c94526518670e54f44336f433d0ac77cCarl Worthfailure_2
14a8ea26d7c94526518670e54f44336f433d0ac77cCarl Worth#endif
15a8ea26d7c94526518670e54f44336f433d0ac77cCarl Worth#if two + three <= five
16a8ea26d7c94526518670e54f44336f433d0ac77cCarl Worthsuccess_3
17a8ea26d7c94526518670e54f44336f433d0ac77cCarl Worth#else
18a8ea26d7c94526518670e54f44336f433d0ac77cCarl Worthfailure_3
19a8ea26d7c94526518670e54f44336f433d0ac77cCarl Worth#endif
20a8ea26d7c94526518670e54f44336f433d0ac77cCarl Worth#if five - two == three
21a8ea26d7c94526518670e54f44336f433d0ac77cCarl Worthsuccess_4
22a8ea26d7c94526518670e54f44336f433d0ac77cCarl Worth#else
23a8ea26d7c94526518670e54f44336f433d0ac77cCarl Worthfailure_4
24a8ea26d7c94526518670e54f44336f433d0ac77cCarl Worth#endif
25a8ea26d7c94526518670e54f44336f433d0ac77cCarl Worth#if one > three
26a8ea26d7c94526518670e54f44336f433d0ac77cCarl Worthfailure_5
27a8ea26d7c94526518670e54f44336f433d0ac77cCarl Worth#else
28a8ea26d7c94526518670e54f44336f433d0ac77cCarl Worthsuccess_5
29a8ea26d7c94526518670e54f44336f433d0ac77cCarl Worth#endif
30a8ea26d7c94526518670e54f44336f433d0ac77cCarl Worth#if one != five
31a8ea26d7c94526518670e54f44336f433d0ac77cCarl Worthsuccess_6
32a8ea26d7c94526518670e54f44336f433d0ac77cCarl Worth#else
33a8ea26d7c94526518670e54f44336f433d0ac77cCarl Worthfailure_6
34a8ea26d7c94526518670e54f44336f433d0ac77cCarl Worth#endif
35