I'm using
\documentclass{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
%axis
\draw (0,0) -- coordinate (x axis mid) (10,0);
\draw (0,0) -- coordinate (y axis mid) (0,10);
\foreach \y in {0,1,...,10}
\draw (1pt,\y) -- (-3pt,\y)
node[anchor=east] {\y};
\end{tikzpicture}
\end{document}
to get ticks along y-axis. I want to get ticks label after multiplying be 10 something like this
\foreach \y in {0,1,...,10}
\draw (1pt,\y) -- (-3pt,\y)
node[anchor=east] {\y*10};
I wonder how I can get this. Any help will be highly appreciated. Thanks

\documentclass{...}, the required\usepackage's,\begin{document}, and\end{document}. That may seem tedious to you, but think of the extra work it represents for TeX.SX users willing to give you a hand. Help them help you: remove that one hurdle between you and a solution to your problem. – jub0bs Feb 06 '14 at 18:57