1 #include "bytes.h"
2 #include "words.h"
3 
main()4 int main() {
5   bool result = false;
6   if (loopBytes())
7     result |= true;
8   if (loopWords())
9     result |= true;
10 
11   if (result)
12     return 0;
13 
14   return result;
15 }
16