mult_table.src 124 B

123456789101112
  1. int value, counter;
  2. read(value);
  3. counter = 1;
  4. while(counter <= 10)
  5. {
  6. write(value * counter);
  7. counter = counter + 1;
  8. }