RosettaCodeData/Task/Greatest-common-divisor/MATLAB/greatest-common-divisor.m
2023-07-01 13:44:08 -04:00

2 lines
103 B
Mathematica

function [gcdValue] = greatestcommondivisor(integer1, integer2)
gcdValue = gcd(integer1, integer2);