/* Test der booleschen Ausdrcke */
/* Datei: pifaus3.c */
#include <stdio.h>
#if (100000L -17) > 200000L
#define ERGEBNIS  1
#else
#define ERGEBNIS 0
#endif

int main ()
{
printf ("\nTest mit Berechnung: %d", ERGEBNIS);
return 0;
}
