klasscho

Untitled

Dec 22nd, 2019
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. program Project13;
  2. var
  3. a, b, S: Integer;
  4. begin
  5. Writeln('Inter a value of "a" : ');
  6. Readln(a);
  7. Writeln('Inter a value of "b" : ');
  8. Readln(b);
  9. S := a*b;
  10. Writeln('The value of square:' ,S);
  11. end.
Advertisement
Add Comment
Please, Sign In to add comment