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