#include <iostream>
#include<ctime>
using namespace std;

int main ()
{
  tm time {0, 0, 0, 21, 7, 2015 - 1900};
  mktime(&time);
  cout << time.tm_wday << endl;
}
