#include <iostream>
using namespace std;

int main() {
	int x ;
	char y;
  cin >> x >> y;
  
   cout << x << endl << y;
}
