#include <iostream>
using namespace std;

int main() {
	int a;
	while ( cin >> a ) {
	  	cout << a << '\n';
	}
	cout << "Finished";
	return 0;
}