Program/Source Code: The source code to calculate the HCF using recursion is given below. The given program is compiled and executed successfully. // Rust program to calculate the// HCF using recursionfncalculateHCF(a:i32, b:i32)->i32{whilea!=b {ifa>b {returncalculateHCF(a-b, b); }...