#include <stdio.h>
  
int main() {
  printf("%d\n", -3 % 4);
  return 0;
}
