/*
 * This template is valid both in C and in C++,
 * so you can expand it with code from both languages.
 * NOTE: it is recommended to use this even if you don't
 * understand the following code.
 */

#include <assert.h>
#include <stdio.h>

// input data
long long V[15];
int i;

int main() {
  //  uncomment the following lines if you want to read/write from files
  //  freopen("input.txt", "r", stdin);
  //  freopen("output.txt", "w", stdout);

  for (i = 0; i < 15; i++)
    assert(1 == scanf("%lld", &V[i]));

  long long sol[15] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
  // insert your code here

  for (i = 0; i < 15; i++)
    printf("%lld ", sol[i]);
  printf("\n");
  return 0;
}
