#include "printlib.h" int main() { bool x, y; x = true; y = false; println_bool(!x); println_bool(!y); return 0; } // EXPECTED // 0 // 1