// This program will write the name, address and telephone
// number of the programmer.

// NG JING JIE

#include <iostream>
using namespace std;

int main()
{
	cout<<"Programmer:NG JING JIE" << endl;
	cout<<"\t   238, JALAN SIMBANG, TAMAN PERLING" << endl;
	cout<<"\t   81200 JOHOR BAHRU,JOHOR" <<endl<<endl;
	cout<<"Telephone:0167675880" << endl;

	return 0;
}
