Josif_tepe

Untitled

Aug 9th, 2025
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.26 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main(){
  4.        
  5.     int a, b;
  6.     scanf("%d%d", &a, &b);
  7.    
  8.     while(a <= b) {
  9.         if(a % 2 == 0 && a % 3 == 0 && a % 5 == 0) {
  10.             printf("%d\n", a);
  11.         }
  12.         a++;
  13.     }
  14.    
  15.    
  16.    
  17.     return 0;
  18. }
  19.  
Advertisement
Add Comment
Please, Sign In to add comment