#include<stdio.h>
int main()
{
int sum_3=0, sum_4=0; //Variable to store the sum of multiples of 3 and 4
for(int i=3; i<=150; i++) //Iterating from 3 to 150
{
if(i%3==0) //Checking if i is a multiple of 3
sum_3 += i; //Adding i to the sum of multiples of 3
if(i%4==0) //Checking if i is a multiple of 4
sum_4 += i; //Adding i to the sum of multiples of 4
}
printf("Sum of multiples of 3: %d\\", sum_3); //Printing the sum of multiples of 3
printf("Sum of multiples of 4: %d\\", sum_4); //Printing the sum of multiples of 4
return 0;
}