I have a problem, don't know how to put this two arrows on picture. You can see picture how need to be and where I stuck with that. Also I provide code that you can see what I done till now.Thanks for helping
\begin{center}
\begin{tikzpicture}
\tikzstyle{vertex}=[circle,fill=black!3]
\tikzstyle{edge}={->,thick}
\node[vertex] (v1) at (1,2) {1};
\node[vertex] (v2) at (2,0) {2};
\node[vertex] (v3) at (0,-2) at {3};
\draw[directed] (v1) -- (v3);
\draw[directed] (v2) -- (v1);
\draw[directed] (v3) -- (v2);
\path (v3) edge [bend left] node[] {}(v1);
\path (v2) edge [bend right] node[] {}(v1);
\draw (1,-0.3) node[bellow]{2};
\draw (0.4,1) node[right]{1};
\draw (1.3,0.8) node[above]{1};



\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. – Rmano May 27 '20 at 16:44