Program calculator;
Var
N : integer ;
Op : char;
Begin
Repeat
Writeln('Enter a number : ');
Readln(N);
Writeln('Enter an operator : ');
Readln(Op);
Until ( Op = '=');
Then what should i do next to make the calculation and show it on the screen