#include using namespace std; #ifdef LOCAL #include #else #define debug(...) void() #endif int main() { ios::sync_with_stdio(false); cin.tie(0); int n; cin >> n; int ans = 0; for (int t = 0; t <= n / 5; t++) { for (int g = 0; g <= t; g++) { for (int pg = 0; pg <= n / 3; pg++) { if (t * 5 + g * 2 + pg * 3 == n) ans++; } } } cout << ans << '\n'; return 0; }