klasscho

Untitled

Dec 22nd, 2019
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. program Project13;
  2.  
  3. {$APPTYPE CONSOLE}
  4.  
  5. {$R *.res}
  6.  
  7. uses
  8. System.SysUtils;
  9.  
  10. var
  11. a, b, S: Integer;
  12. begin
  13. Writeln('Inter a value of "a" : ');
  14. Readln(a);
  15. Writeln('Inter a value of "b" : ');
  16. Readln(b);
  17. S := a*b;
  18. Writeln('The value of square:' ,S);
  19. Readln;
  20. end.
Advertisement
Add Comment
Please, Sign In to add comment