Contact: aviboots(AT)netvision.net.il
42,187 questions
54,895 answers
573 users
#include <stdio.h> int main() { int a = 13, b = 15, c = 17; int num = a * b * c; printf("The smallest number that divides 13, 15, and 17 is: %d\n", num); } /* run: The smallest number that divides 13, 15, and 17 is: 3315 */