/*
 * This template is valid both in C and in C++,
 * so you can expand it with code from both languages.
 */

#include <stdio.h>
#include <assert.h>

// constraints
#define MAXL 8

// input data
char date[MAXL+1];

int main() {
//  uncomment the following lines if you want to read/write from files
//  freopen("input.txt", "r", stdin);
//  freopen("output.txt", "w", stdout);

    assert(1 == scanf("%s", date));

    // insert your code here
    
    printf("%d\n", 42); // change 42 with actual answer
    return 0;
}
