1 2
m : int32; n : int32; ; (m = 21); (n = 35); { while ((m != 0)) { { t : int32; ; (t = m); (m = (n %% m)); (n = t); } } } print n;