#include <iostream>
using namespace std;

int main() {
	// your code goes here
	int *arr= {1, 22, 5, 20};			//NOT WORKING IN C++
	cout<<arr.size();
	return 0;
}