#include<stdio.h>
void main()
{
    int count=0;
    //scanf("%d",&n);
    for(int x=4;x<100;x=x+3){
        if(x%2==0){
            count+=1;
        }
        else{
            count-=1;
        }
        
    }
    printf("%d",count)
}