This commit is contained in:
2025-05-07 14:05:25 +03:00
parent 785c2b0e50
commit 50a27f1d6c
7 changed files with 128 additions and 0 deletions

View File

@ -0,0 +1,11 @@
#include <stdio.h>
#include "lcm.c"
int main (void)
{
int i1, i2 = 0;
puts("Enter int1 and int 2");
scanf("%d%d", &i1, &i2);
printf("%s%d\n", "Lowest common integer: ", lcm(i1, i2));
return 0;
}