#include <stdio.h>

int main(void) {
  int a = 8;
  for(int i = 0; i<a; i++){
  	printf("Danes je četrtek!\n");
  }

    return 0;
}