#define _USE_MATH_DEFINES #define _CRT_SECURE_NO_WARNINGS #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; using ll = long long; using ull = unsigned long long; const ll inf = 1ll << 60; const ll mod = (ll)1e9 + 7; #define all(v) v.begin(), v.end() #define rall(v) v.rbegin(), v.rend() #define print(s) cout << s; #define println(s) cout << s << endl; #define printd(s, f) cout << fixed << setprecision(f) << s << endl; int main() { int d[] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; ll res = 0; for (int i = 1; i <= 12; i++) { for (int j = 1; j <= d[i - 1]; j++) { int y = 0; for (int k = j; k > 0; k /= 10) { y += k % 10; } if (i == y) { res++; } } } println(res); }