hacktoberfest-2018/code/vakeeshanvictor.pal

14 lines
255 B
Plaintext
Raw Permalink Normal View History

2018-10-08 15:49:20 +00:00
Program Lesson1_Program3;
Var
Num1, Num2, Sum : Integer;
Begin {no semicolon}
Write('Input number 1:');
Readln(Num1);
Writeln('Input number 2:');
Readln(Num2);
Sum := Num1 + Num2; {addition}
Writeln(Sum);
Readln;
End.