#include <iostream>
using namespace std;

int main()
{
	int age;                                           //INPUT
	double pay;                                        //INPUT
	char section;                                      //INPUT
	cin >> age >> pay >> section;                     //INPUT
	cout << "Your age is " << age << endl;           //OUTPUT
	cout << "Your pay is " << "$" << pay << endl;   //OUTPUT
	cout << "Your section is " << section << endl;  //OUTPUT
	return 0;
}