#include<stdio.h>

/* Mon Jan  3 23:26:28 JST 2005 */

/* #define FOO "foo" */

#ifdef FOO
#define BAR "foo is defined"
#endif

#ifndef FOO
#define BAR "foo is not defined"
#endif

main()
{    
  int bar;
  bar = BAR; 
  printf("%s",bar);
  printf("\n");
}    

