#include <stdio.h>
int main() {
   int i;
   int n = 20;
   for( i = 0; i < n; n-- )
      printf("+");
   return 0;
}