#include <iostream>

using namespace std ;

int main()
{
  int k = 0 ;
  while (k<15)
  {
    cout << k << ", " ;
//    k = k+1;
    k += 1 ;
  }
  return 0 ;
}