The greatest common divisor (GCD) calculates the largest positive integer that divides both of the two input numbers without leaving a remainder.
Interface
Inputs
| Parameter | Details | Possible Types |
|---|---|---|
| Value | One of the two numbers for which the GCD is calculated. Primary Input | i32u32u64 |
| Other Value | The other of the two numbers for which the GCD is calculated. Default: | i32u32u64 |
Outputs
| Product | Details | Possible Types |
|---|---|---|
| Result | The value produced by the node operation. Primary Output | u32u64i32 |