<%
String k = request.getParameter("k");
int tt = Integer.parseInt(k);
out.println(tt+"<br><br><br>");
while(tt>0){
out.print(tt%10);
tt= tt/10;
}
%>