#include <stdio.h>

int main(void) {
	// your code goes here
	int marks[]= {40,50,60,70,80};
	for(int i=0;i<5;i++){
		printf("%d",marks[i]);
	}
	return 0;
}
