// This program will write the name, address and telephone
// number of the programmer.

// TAN ROUXUEN

#include <iostream>
using namespace std;

int main()
{
	cout << "PROGRAMMER : TAN ROUXUEN" << endl ;
	cout << "             90, TAMAN SURIA" << endl ;
	cout << "\t     GURUN , KEDAH 08300 " << endl ;
	cout << endl;
	cout << "TELEPHONE : 0174900932" << endl;

	return 0;
}
