#include #define REP(i,n) for( int i = 1; i <= n; i++ ) using namespace std; int main(){ int cnt = 0; int day[]= {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; for(int i = 1; i <= 12; i++){ for(int j = 1; j <= day[i]; j++){ if( i == (j % 10) + (j / 10) ) cnt++; } } cout << cnt << endl; }