#include<iostream>
using namespace std;

int main()
{
 // Initialize arrays
 int numList[7]={20,17,45,32,11,48,26};

 // Output array members
 for(int i=0; i<7; i++)
 {
   cout << numList[i] << " ";
 }
 // Output new line
 cout << endl;

 // Count numbers below 20
 int countBelow20=0;
 for(int i=0; i<7; i++)
 {
   if(numList[i]<20)
     countBelow20++;
 }
 cout << "Total number of elements below 20 are: "
      << countBelow20 << endl;

 // Count multiples of 4
 int countMultiples4=0;
 for(int i=0; i<7; i++)
 {
   if(numList[i]%4==0)
     countMultiples4++;
 }
 cout << "Total number of multiples of 4 are: "
      << countMultiples4 << endl;

}