/* * Author: Amit Dutta (amitdutta4255@gmail.com) | Date: 12 Dec 2025 * Repo: https://github.com/notamitgamer/bsc * License: MIT */ /* Write a program to calculate HCF of two positive number */ #include int main() { int a, b, temp; printf("Enter two number : "); scanf("%d %d", &a, &b); while (b > 0) { temp = a; a = b; b = temp % b; } printf("HCF = %d", a); return 0; }