#include <iostream>
using namespace std;

int main() {
  int t[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9};
  
  for(unsigned int x=0; x < 10; x++) {
    if(x == (10 - 1)) cout << t[x];
    else cout << t[x] << " ";
  }
  cout << "heyhey";
}