Merge pull request #318 from vakeeshanvictor/patch-2

Create Addition.pal
This commit is contained in:
Luke Oliff 2018-10-08 08:57:26 -07:00 committed by GitHub
commit 595ce79de1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

13
code/vakeeshanvictor.pal Normal file
View File

@ -0,0 +1,13 @@
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.