Contact: aviboots(AT)netvision.net.il
41,790 questions
54,475 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 */