#include <stdio.h>
#include <stdbool.h>
int main() {


bool flag = true;
while(flag) {
flag = false;
puts("-------------");
}

return 0;
}