#include void solve() { int n, k; std::cin >> n >> k; n -= k; while (k--) std::cout << 0 << " "; for (int x = 0; n > 0; ++x) { std::cout << x << " "; if (--n == 0) break; std::cout << x + 2 << " "; --n; } std::cout << std::endl; } int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); solve(); return 0; }