#!/bin/bash

j=1919
k=1918

while true; do
  k=$((k - 1))
  if (( j % k == 0 )); then
    break
  fi
done

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: