/*
 * NOTE: it is recommended to use this even if you don't
 * understand the following code.
 */

#include <fstream>
#include <iostream>

using namespace std;

// input data
long long V[15];

int main() {
//  uncomment the following lines if you want to read/write from files
//  ifstream cin("input.txt");
//  ofstream cout("output.txt");

    for (int i = 0; i < 15; i++)
        cin >> 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 (int i = 0; i < 15; i++)
        cout << sol[i] << " ";
    cout << endl;
    return 0;
}
