fork(2) download
  1. #include <stdio.h>
  2. int main() {
  3. int a,i,b,lcm;
  4. scanf("%d%d", &a,&b);
  5. i=1;
  6. while (i>=a&&i>=b) {
  7. if(i%a==0&&i%b==0){
  8. lcm=i;
  9. break;
  10. }
  11. i++;
  12. }
  13. printf("%d",lcm);
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0.01s 5288KB
stdin
4 5
stdout
Standard output is empty