func int main() {
  boolean a;
  boolean b;
  a = True;
  b = !a;
  print(a);
  print(b);
  return 0;
}