#include <stdio.h>
int main() {
int myNumbers[] = {10, 25, 50, 75, 100};
printf("%lu", sizeof(myNumbers));
return 0;
}