I need to add both the chapter number and the title in one row with centering: something like "Chapter 2 Title of Chapter".
My code is
\documentclass[12pt,a4paper,oneside]{report}
\usepackage[left=1.5in,top=1in,right=1in,bottom=5em]{geometry}
\begin{document}
\chapter{INTRODUCTION}
\section{ sec1}
....................
\subsection{subsec1}
..................
\end{document}
What do I need to do?
