I made some changes to Zarko's code from here to make my own flowchart.
\documentclass[a4paper,11pt,twoside]{book}
\usepackage[a4paper,left=2.5cm,right=2.5cm,top=2.5cm,bottom=2.5cm]{geometry}
\usepackage{amsmath, amsthm, amssymb, amsfonts}
\usepackage[english,greek]{babel}
\usepackage[utf8]{inputenc}
\usepackage{tikz}
% shapes
\usetikzlibrary{shapes}
%arrows
\usetikzlibrary{arrows,arrows.meta}
%decorations
\usetikzlibrary{decorations.text,decorations.pathreplacing,patterns,shadows.blur,fadings}
% miscellaneous
\usetikzlibrary{calc,quotes,positioning,fpu,angles,fit,spy,chains}
\begin{document}
\begin{tikzpicture}[
node distance = 8mm and 16mm,
start chain = A going below,
base/.style = {draw, minimum width=32mm, minimum height=8mm,
align=center, on chain=A},
startstop/.style = {ultra thick,double,base, rectangle, rounded corners, fill=white},
process/.style = {ultra thick,base, rectangle, fill=white},
io/.style = {ultra thick,base, trapezium,
trapezium left angle=70, trapezium right angle=110,
fill=white},
decision/.style = {ultra thick,base, diamond, fill=white},
every edge quotes/.style = {auto=right}]
]
\node [startstop] {Έναρξη}; % <-- A-1
\node [io] {Εισαγωγή}; %A-2
\node [decision] {Ερώτηση}; %Α-3
\node [io] {Απάντηση}; %A-4
\node [startstop] {Τέλος}; % <-- A-5
\node [process, right=of A-3] {Κάτι}; % <-- A-6
\draw [arrows=-Stealth]
(A-1) edge (A-2)
(A-2) edge (A-3)
(A-3) edge ["όχι"] (A-4)
(A-3) edge ["ναι"] (A-6)
(A-4) edge (A-5)
(A-6) |- ($(A-1.south east)!0.5!(A-2.north east)$)
-| ([xshift=7mm] A-2.north)
;
\end{tikzpicture}
\end{document}
This is how it looks like.
The problem is that I don't know how to draw the arrow from A-3 (diamond "Ερώτηση") to A-2 (parallelogram "Εισαγωγή") without the A-6 (rectangle "Κάτι"). I want something like this:
How can I do it?



