#include<iostream> using namespace std; int main(){ int s=0; for(int i=3;i<=100;i+=3){ s++;} cout<<s; return 0;}