[llvm-commits] CVS: llvm/test/Programs/MultiSource/Benchmarks/FreeBench/pcompress2/Makefile arithmetic.c compress.c compress.h pcompress2.c ref.in test.in unarithmetic.c uncompress.c uncompress.h

Chris Lattner lattner at cs.uiuc.edu
Sat Oct 11 16:31:59 PDT 2003


Changes in directory llvm/test/Programs/MultiSource/Benchmarks/FreeBench/pcompress2:

Makefile added (r1.1)
arithmetic.c added (r1.1)
compress.c added (r1.1)
compress.h added (r1.1)
pcompress2.c added (r1.1)
ref.in added (r1.1)
test.in added (r1.1)
unarithmetic.c added (r1.1)
uncompress.c added (r1.1)
uncompress.h added (r1.1)

---
Log message:

Initial checkin of the FreeBench benchmark suite


---
Diffs of the changes:  (+961 -0)

Index: llvm/test/Programs/MultiSource/Benchmarks/FreeBench/pcompress2/Makefile
diff -c /dev/null llvm/test/Programs/MultiSource/Benchmarks/FreeBench/pcompress2/Makefile:1.1
*** /dev/null	Sat Oct 11 16:18:58 2003
--- llvm/test/Programs/MultiSource/Benchmarks/FreeBench/pcompress2/Makefile	Sat Oct 11 16:18:47 2003
***************
*** 0 ****
--- 1,12 ----
+ LEVEL = ../../../../../..
+ 
+ PROG     = pcompress2
+ CPPFLAGS = -DVERSION='"1.00"' -DCOMPDATE="\"today\"" -DCFLAGS='""' -DHOSTNAME="\"thishost\"" 
+ #LDFLAGS  = -lm
+ ifdef LARGE_PROBLEM_SIZE
+ RUN_OPTIONS = ref.in
+ else
+ RUN_OPTIONS = test.in
+ endif
+ include $(LEVEL)/test/Programs/MultiSource/Makefile.multisrc
+ 


Index: llvm/test/Programs/MultiSource/Benchmarks/FreeBench/pcompress2/arithmetic.c
diff -c /dev/null llvm/test/Programs/MultiSource/Benchmarks/FreeBench/pcompress2/arithmetic.c:1.1
*** /dev/null	Sat Oct 11 16:18:58 2003
--- llvm/test/Programs/MultiSource/Benchmarks/FreeBench/pcompress2/arithmetic.c	Sat Oct 11 16:18:47 2003
***************
*** 0 ****
--- 1,228 ----
+ 
+ /* This program contains the source code from the 1987 CACM
+    article by Witten, Neal, and Cleary. */
+ 
+ #include <stdio.h>
+ #include <stdlib.h>
+ 
+ #define No_of_chars 256                 /* Number of character symbols      */
+ #define EOF_symbol (No_of_chars+1)      /* Index of EOF symbol              */
+ 
+ #define No_of_symbols (No_of_chars+1)   /* Total number of symbols          */
+ 
+ /* The indata and outdata buffer, defined and allocated in "compress.c" */
+ extern unsigned char *rle;
+ extern unsigned char *ari;
+ 
+ /* Positions in buffers */
+ unsigned int rle_pos;
+ unsigned int ari_pos;
+ 
+ /* TRANSLATION TABLES BETWEEN CHARACTERS AND SYMBOL INDEXES. */
+ 
+ static int char_to_index[No_of_chars];         /* To index from character          */
+ static unsigned char index_to_char[No_of_symbols+1]; /* To character from index    */
+ 
+ /* ADAPTIVE SOURCE MODEL */
+ 
+ static int freq[No_of_symbols+1];      /* Symbol frequencies                       */
+ static int cum_freq[No_of_symbols+1];  /* Cumulative symbol frequencies            */
+ 
+ /* DECLARATIONS USED FOR ARITHMETIC ENCODING AND DECODING */
+ 
+ /* SIZE OF ARITHMETIC CODE VALUES. */
+ 
+ #define Code_value_bits 16              /* Number of bits in a code value   */
+ typedef long code_value;                /* Type of an arithmetic code value */
+ 
+ #define Top_value (((long)1<<Code_value_bits)-1)      /* Largest code value */
+ 
+ 
+ /* HALF AND QUARTER POINTS IN THE CODE VALUE RANGE. */
+ 
+ #define First_qtr (Top_value/4+1)       /* Point after first quarter        */
+ #define Half	  (2*First_qtr)            /* Point after first half           */
+ #define Third_qtr (3*First_qtr)         /* Point after third quarter        */
+ 
+ 
+ /* CUMULATIVE FREQUENCY TABLE. */
+ 
+ #define Max_frequency 16383             /* Maximum allowed frequency count  */
+ 
+ 
+ static void start_model( void );
+ static void start_encoding( void );
+ static void encode_symbol(int symbol,int cum_freq[] );
+ static void update_model(int symbol);
+ static void done_encoding( void );
+ static void done_outputing_bits( void );
+ 
+ /* BIT OUTPUT ROUTINES. */
+ 
+ /* THE BIT BUFFER. */
+ 
+ static int buffer;                     /* Bits buffered for output                 */
+ static int bits_to_go;                 /* Number of bits free in buffer            */
+ 
+ 
+ /* INITIALIZE FOR BIT OUTPUT. */
+ 
+ static void start_outputing_bits( void )
+ {   buffer = 0;                                 /* Buffer is empty to start */
+     bits_to_go= 8;                              /* with.                    */
+ }
+ 
+ /* OUTPUT A BIT. */
+ 
+ static void output_bit( int bit )
+ {   buffer >>= 1; if (bit) buffer |= 0x80;      /* Put bit in top of buffer.*/
+     bits_to_go -= 1;
+     if (bits_to_go==0) {                        /* Output buffer if full.   */
+         ari[ari_pos++]=(unsigned char)buffer;
+ 	bits_to_go = 8;
+     }
+ }
+ 
+ /* FLUSH OUT THE LAST BITS. */
+ 
+ static void done_outputing_bits( void )
+ {
+   ari[ari_pos++]=(unsigned char)(buffer >> bits_to_go);
+ }
+ 
+ /* CURRENT STATE OF THE ENCODING. */
+ 
+ code_value low, high;           /* Ends of the current code region          */
+ long bits_to_follow;            /* Number of opposite bits to output after  */
+                                 /* the next bit.                            */
+ /* OUTPUT BITS PLUS FOLLOWING OPPOSITE BITS. */
+ 
+ static void bit_plus_follow( int bit )
+ {   output_bit(bit);                            /* Output the bit.          */
+     while (bits_to_follow>0) {
+         output_bit(!bit);                       /* Output bits_to_follow    */
+         bits_to_follow -= 1;                    /* opposite bits. Set       */
+     }                                           /* bits_to_follow to zero.  */
+ }
+ 
+ unsigned int do_ari(unsigned int insize)
+ {
+     rle_pos=0;
+     ari_pos=0;
+     
+     start_model();                              /* Set up other modules.    */
+     start_outputing_bits();
+     start_encoding();
+     for (;;) {                                  /* Loop through characters. */
+         int ch; int symbol;
+         ch = rle[rle_pos++];                    /* Read the next character. */
+         if (rle_pos>insize) break;             /* Exit loop when done.     */
+         symbol = char_to_index[ch];             /* Translate to an index.   */
+         encode_symbol(symbol,cum_freq);         /* Encode that symbol.      */
+         update_model(symbol);                   /* Update the model.        */
+     }
+     encode_symbol(EOF_symbol,cum_freq);         /* Encode the EOF symbol.   */
+     done_encoding();                            /* Send the last few bits.  */
+     done_outputing_bits();
+     return ari_pos;
+ }
+ 
+ /* ARITHMETIC ENCODING ALGORITHM. */
+ 
+ 
+ /* START ENCODING A STREAM OF SYMBOLS. */
+ 
+ static void start_encoding( void )
+ {   low = 0;                                    /* Full code range.         */
+     high = Top_value;
+     bits_to_follow = 0;                         /* No bits to follow next.  */
+ }
+ 
+ 
+ /* ENCODE A SYMBOL. */
+ 
+ static void encode_symbol(int symbol,int cum_freq[] )
+ {   long range;                 /* Size of the current code region          */
+     range = (long)(high-low)+1;
+     high = low +                                /* Narrow the code region   */
+       (range*cum_freq[symbol-1])/cum_freq[0]-1; /* to that allotted to this */
+     low = low +                                 /* symbol.                  */
+       (range*cum_freq[symbol])/cum_freq[0];
+     for (;;) {                                  /* Loop to output bits.     */
+         if (high<Half) {
+             bit_plus_follow(0);                 /* Output 0 if in low half. */
+         }
+         else if (low>=Half) {                   /* Output 1 if in high half.*/
+             bit_plus_follow(1);
+             low -= Half;
+             high -= Half;                       /* Subtract offset to top.  */
+         }
+         else if (low>=First_qtr                 /* Output an opposite bit   */
+               && high<Third_qtr) {              /* later if in middle half. */
+             bits_to_follow += 1;
+             low -= First_qtr;                   /* Subtract offset to middle*/
+             high -= First_qtr;
+         }
+         else break;                             /* Otherwise exit loop.     */
+         low = 2*low;
+         high = 2*high+1;                        /* Scale up code range.     */
+     }
+ }
+ 
+ 
+ /* FINISH ENCODING THE STREAM. */
+ 
+ static void done_encoding( void )
+ {   bits_to_follow += 1;                        /* Output two bits that     */
+     if (low<First_qtr) bit_plus_follow(0);      /* select the quarter that  */
+     else bit_plus_follow(1);                    /* the current code range   */
+ }                                               /* contains.                */
+ 
+ 
+ /* THE ADAPTIVE SOURCE MODEL */
+ 
+ /* INITIALIZE THE MODEL. */
+ 
+ static void start_model( void )
+ {   int i;
+     for (i = 0; i<No_of_chars; i++) {           /* Set up tables that       */
+         char_to_index[i] = i+1;                 /* translate between symbol */
+         index_to_char[i+1] = (unsigned char) i; /* indexes and characters.  */
+     }
+     for (i = 0; i<=No_of_symbols; i++) {        /* Set up initial frequency */
+         freq[i] = 1;                            /* counts to be one for all */
+         cum_freq[i] = No_of_symbols-i;          /* symbols.                 */
+     }
+     freq[0] = 0;                                /* Freq[0] must not be the  */
+ }                                               /* same as freq[1].         */
+ 
+ 
+ /* UPDATE THE MODEL TO ACCOUNT FOR A NEW SYMBOL. */
+ 
+ static void update_model( int symbol )
+ {   int i;                      /* New index for symbol                     */
+     if (cum_freq[0]==Max_frequency) {           /* See if frequency counts  */
+         int cum;                                /* are at their maximum.    */
+         cum = 0;
+         for (i = No_of_symbols; i>=0; i--) {    /* If so, halve all the     */
+             freq[i] = (freq[i]+1)/2;            /* counts (keeping them     */
+             cum_freq[i] = cum;                  /* non-zero).               */
+             cum += freq[i];
+         }
+     }
+     for (i = symbol; freq[i]==freq[i-1]; i--) ; /* Find symbol's new index. */
+     if (i<symbol) {
+         int ch_i, ch_symbol;
+         ch_i = index_to_char[i];                /* Update the translation   */
+         ch_symbol = index_to_char[symbol];      /* tables if the symbol has */
+         index_to_char[i] = (unsigned char) ch_symbol;           /* moved.                   */
+         index_to_char[symbol] = (unsigned char) ch_i;
+         char_to_index[ch_i] = symbol;
+         char_to_index[ch_symbol] = i;
+     }
+     freq[i] += 1;                               /* Increment the frequency  */
+     while (i>0) {                               /* count for the symbol and */
+         i -= 1;                                 /* update the cumulative    */
+         cum_freq[i] += 1;                       /* frequencies.             */
+     }
+ }


Index: llvm/test/Programs/MultiSource/Benchmarks/FreeBench/pcompress2/compress.c
diff -c /dev/null llvm/test/Programs/MultiSource/Benchmarks/FreeBench/pcompress2/compress.c:1.1
*** /dev/null	Sat Oct 11 16:18:58 2003
--- llvm/test/Programs/MultiSource/Benchmarks/FreeBench/pcompress2/compress.c	Sat Oct 11 16:18:47 2003
***************
*** 0 ****
--- 1,196 ----
+ /********************************************************/
+ /* pCompress/pUnCompress                                */
+ /* A three stage file compressor, using Burrows Wheeler */
+ /* blocksorting, Run Length Encoding and Arithmetic     */
+ /* coding to achieve good compression.                  */
+ /* The fact that the compression is not that good in    */
+ /* reality is probably my fault.                        */
+ /* It makes a neat benchmark anyways.                   */
+ /* ---------------------------------------------------- */
+ /* This is a part of FreeBench v1 and is only intended  */
+ /* to be used as a benchmark. The use of this software  */
+ /* for anyting else (such as compression) is not        */
+ /* recomended, and certainly not supported. Use gzip or */
+ /* bzip instead, they are both faster and better.       */
+ /* Peter Rundberg, April 2001                           */
+ /********************************************************/
+ 
+ #include <stdio.h>
+ #include <string.h>
+ #include <sys/types.h>
+ #include <sys/stat.h>
+ #include <unistd.h>
+ #include <stdlib.h>
+ 
+ FILE *fpi,*fpo; 
+ unsigned int *rot; /* Rotation info per byte */
+ static unsigned char *in; /* The infile */
+ unsigned char *bw; /* The B&W:d data */
+ unsigned char *rle; /* The RLE:d data */
+ unsigned char *ari; /* The ARI:d data */
+ static unsigned int size;
+ 
+ static void do_bwe();
+ static unsigned int do_rle();
+ unsigned int do_ari(unsigned int insize); /* In "arithmetic.c" */
+ 
+ void compress(int argc, char *argv[]) 
+ {
+   char *filename;
+   char outname[100];
+   struct stat buf; 
+   unsigned int filesize, outsize;
+ 
+   if (argc < 2) { 
+     fprintf(stderr,"USAGE: %s <FILENAME>\n",argv[0]);
+     exit(1);
+   }
+   filename = argv[1];
+ 
+   
+   /* Find the size of the infile */
+   stat(filename,&buf);
+   filesize=buf.st_size; 
+   
+   fpi=fopen(filename,"r"); /* open the infile */
+   if (fpi==NULL) {
+     fprintf(stderr,"ERROR: Could not find infile %s\n",filename);
+     exit(1);
+   }
+   
+   strcpy(outname,filename); /* name the outfile */
+   strcat(outname,".compr"); /* add the suffix '.compr' */
+   fpo=fopen(outname,"w");
+   if (fpo==NULL) {
+     fprintf(stderr,"ERROR: Could not open outfile (do you have write permission here?)\n");
+     exit(1);
+   }
+ 
+   /* Write the infile size to the outfile */
+   fwrite(&filesize,sizeof(unsigned int),1,fpo);
+ 
+   /* Allocate some memory... */
+   in=(unsigned char *)malloc(2*filesize*sizeof(unsigned char));
+   bw=(unsigned char *)malloc(filesize*sizeof(unsigned char));
+   rot=(unsigned int *)malloc(filesize*sizeof(unsigned int));
+   rle=(unsigned char *)malloc(2*filesize*sizeof(unsigned char));
+   ari=(unsigned char *)malloc(2*filesize*sizeof(unsigned char));
+   if (!in || !bw || !rot || !rle || !ari) {
+     fprintf(stderr,"ERROR: Out of memory\n");
+     exit(1);
+   }
+ 
+   if (fread(in,sizeof(unsigned char),filesize,fpi)!=filesize) {
+     printf("Something is fishy regarding the file size\n");
+     exit(1);
+   } 
+ 
+   size=filesize;
+   /* Do the Burrows Wheeler encoding */
+   do_bwe();
+   free(in); /* We can get rid of 'in' now */
+   free(rot); /* We can get rid of 'rot' now */
+   /* Do the RLE */
+   outsize=do_rle();
+   free(bw); /* We can get rid of 'bw' now */
+   /* Do the arithmetic encoding */
+   outsize=do_ari(outsize);
+   free(rle); /* We can get rid of 'rle' now */
+   /* Write to file */
+   fwrite(ari,sizeof(unsigned char),outsize,fpo);
+   free(ari); /* We can get rid of 'ari' now */
+ 
+   fclose(fpi);
+   fclose(fpo);
+ 
+ }
+ 
+ /* Compare two strings */
+ static int compare(const void *a, const void *b) 
+ {
+   unsigned int *first=(unsigned int *)a;
+   unsigned int *sec=(unsigned int *)b;
+   
+   /* Compare strings using memcmp */
+   return (memcmp(in+*first,in+*sec,size));
+ }
+ 
+ static void do_bwe() 
+ {
+   unsigned int i;
+   
+   /* 
+    * Put a copy of the string at the end of the string,
+    * this speeds up rotating.
+    */
+   memcpy(in+size,in,size);
+   
+   for (i=0;i<size;i++)  /* Initialize 'rot' vector... */
+     rot[i]=i;
+   
+   /* sort the strings using STDLIB qsort */
+   qsort(rot,size,sizeof(unsigned int),(*compare));
+   
+   /* make BW array... */
+   for (i=0;i<size;i++) { 
+     bw[i]=in[(rot[i]+size-1)%size];
+   }
+   
+   /* Find place of original string, and write it to the outfile*/
+   for (i=0;i<size;i++) { 
+     if (rot[i]==0) {
+       fwrite(&i,sizeof(unsigned int),1,fpo);
+       break;
+     }
+   }
+ }
+ 
+ static unsigned int do_rle()
+ {
+   unsigned int i, c, rlepos=0;
+   unsigned char teck, count;
+   /* RLE -- 
+    * If the same byte occurs twice or more in s row, put a byte 
+    * before to show number of repeats. If different bytes occur in a row
+    * put a byte before to show how large the block of unique bytes is.
+    * A set (1) bit 7 in the describer byte indicates repeats, a cleared
+    * bit 7 indicates block of unique bytes.
+    */
+   for (i=0;i<size;) {
+     c=1;
+     teck=bw[i];
+     while ((i+c)<size && teck==bw[i+c]) { /* How many repeats? */
+       c++;
+       if (c>=127)
+ 	break;
+     }
+     if (c==1) { /* No repeats */
+       if ((i+c)<size) {
+ 	while (bw[i+c-1]!=bw[i+c] && bw[i+c]!=bw[i+c+1])
+ 	  c++;
+       }
+ 
+       count=(unsigned char)c & 0x7f;
+       rle[rlepos++]=count;
+       memcpy(rle+rlepos,bw+i,c);
+       rlepos+=c;
+       i+=c;
+     } else {  /* c repeats */
+       if ((rlepos+2)>2*size) {
+ 	fprintf(stderr,"PANIC: RLE buf larger than %d bytes needed (repeat)\n",size);
+ 	exit(1);
+       }
+ 
+       count=(unsigned char)c | 0x80;
+       rle[rlepos]=count;
+       rle[rlepos+1]=teck;
+       rlepos+=2;
+       i+=c;
+     }
+   }      
+   
+   return rlepos;
+ }
+ 
+ 
+ 


Index: llvm/test/Programs/MultiSource/Benchmarks/FreeBench/pcompress2/compress.h
diff -c /dev/null llvm/test/Programs/MultiSource/Benchmarks/FreeBench/pcompress2/compress.h:1.1
*** /dev/null	Sat Oct 11 16:18:58 2003
--- llvm/test/Programs/MultiSource/Benchmarks/FreeBench/pcompress2/compress.h	Sat Oct 11 16:18:47 2003
***************
*** 0 ****
--- 1,18 ----
+ /********************************************************/
+ /* pCompress/pUnCompress                                */
+ /* A three stage file compressor, using Burrows Wheeler */
+ /* blocksorting, Run Length Encoding and Arithmetic     */
+ /* coding to achieve good compression.                  */
+ /* The fact that the compression is not that good in    */
+ /* reality is probably my fault.                        */
+ /* It makes a neat benchmark anyways.                   */
+ /* ---------------------------------------------------- */
+ /* This is a part of FreeBench v1 and is only intended  */
+ /* to be used as a benchmark. The use of this software  */
+ /* for anyting else (such as compression) is not        */
+ /* recomended, and certainly not supported. Use gzip or */
+ /* bzip instead, they are both faster and better.       */
+ /* Peter Rundberg, April 2001                           */
+ /********************************************************/
+ 
+ void compress(int argc, char *argv[]);


Index: llvm/test/Programs/MultiSource/Benchmarks/FreeBench/pcompress2/pcompress2.c
diff -c /dev/null llvm/test/Programs/MultiSource/Benchmarks/FreeBench/pcompress2/pcompress2.c:1.1
*** /dev/null	Sat Oct 11 16:18:59 2003
--- llvm/test/Programs/MultiSource/Benchmarks/FreeBench/pcompress2/pcompress2.c	Sat Oct 11 16:18:48 2003
***************
*** 0 ****
--- 1,61 ----
+ /********************************************************/
+ /* pCompress/pUnCompress                                */
+ /* A three stage file compressor, using Burrows Wheeler */
+ /* blocksorting, Run Length Encoding and Arithmetic     */
+ /* coding to achieve good compression.                  */
+ /* The fact that the compression is not that good in    */
+ /* reality is probably my fault.                        */
+ /* It makes a neat benchmark anyways.                   */
+ /* ---------------------------------------------------- */
+ /* This is a part of FreeBench v1 and is only intended  */
+ /* to be used as a benchmark. The use of this software  */
+ /* for anyting else (such as compression) is not        */
+ /* recomended, and certainly not supported. Use gzip or */
+ /* bzip instead, they are both faster and better.       */
+ /* Peter Rundberg, April 2001                           */
+ /********************************************************/
+ 
+ #define BENCHMARK
+ 
+ #include <stdio.h>
+ #include <string.h>
+ #include "compress.h"
+ #include "uncompress.h"
+ 
+ int main(int argc, char *argv[])
+ {
+ #ifndef BENCHMARK 
+   const char* argv0;
+ #else
+   char filename[100];
+ #endif  
+ 
+ #ifdef BENCHMARK  
+   fprintf(stderr,"Compile date: %s\n", COMPDATE);
+   fprintf(stderr,"Compiler switches: %s\n", CFLAGS);
+   compress(argc,argv); /* Compress four times to make it take some time... */
+   compress(argc,argv);
+   compress(argc,argv); 
+   compress(argc,argv);
+   strcpy(filename,argv[1]);
+   strcat(filename,".compr"); /* add the suffix '.compr' */
+   argv[1]=filename;
+   uncompress(argc,argv); /* Uncompress the stuff */
+   remove(filename);
+ #else
+   if((argv0 = strrchr(argv[0], '/')) == NULL)
+         argv0 = argv[0];
+     else
+         argv0 += 1;
+ 
+   if (!strcmp(argv0,"pcompress2")) {
+     compress(argc,argv);
+   } else if (!strcmp(argv0,"puncompress2")) {
+     uncompress(argc,argv);
+   } else {
+     printf("Call pCompress as 'pcompress2' or 'puncompress2', NOT %s\n",argv[0]);
+   }
+ #endif
+   return 0;
+ }
+ 


Index: llvm/test/Programs/MultiSource/Benchmarks/FreeBench/pcompress2/ref.in
diff -c /dev/null llvm/test/Programs/MultiSource/Benchmarks/FreeBench/pcompress2/ref.in:1.1
*** /dev/null	Sat Oct 11 16:18:59 2003
--- llvm/test/Programs/MultiSource/Benchmarks/FreeBench/pcompress2/ref.in	Sat Oct 11 16:18:48 2003
***************
*** 0 ****
--- 1,26 ----
+ PI calculation to estimate the FFT benchmarks
+ initializing...
+ nfft= 1048576
+ radix= 10000
+ calculating 4194304 digits of PI...
+ AGM iteration
+ precision= 48
+ precision= 80
+ precision= 176
+ precision= 352
+ precision= 688
+ precision= 1392
+ precision= 2784
+ precision= 5584
+ precision= 11168
+ precision= 22336
+ precision= 44688
+ precision= 89408
+ precision= 178816
+ precision= 357648
+ precision= 715312
+ precision= 1430640
+ precision= 2861280
+ precision= 5722592
+ 3.1415926535897932384626433832795028841971693993751058209749445923078164062862089986280348253421170679821480865132823066470938446095505822317253594081284811174502841027019385211055596446229489549303819644288109756659334461284756482337867831652712019091456485669234603486104543266482133936072602491412737245870066063155881748815209209628292540917153643678925903600113305305488204665213841469519415116094330572703657595919530921861173819326117931051185480744623799627495673518857527248912279381830119491298336733624406566430860213949463952247371907021798609437027705392171762931767523846748184676694051320005681271452635608277857713427577896091736371787214684409012249534301465495853710507922796892589235420199561121290219608640344181598136297747713099605187072113499999983729780499510597317328160963185950244594553469083026425223082533446850352619311881710100031378387528865875332083814206171776691473035982534904287554687311595628638823537875937519577818577805321712268066130019278766111!
 9590921642019893809525720106548586327886593615338182796823030195203530185296899577362259941389124972177528347913151557485724245415069595082953311686172785588907509838175463746493931925506040092770167113900984882401285836160356370766010471018194295559619894676783744944825537977472684710404753464620804668425906949129331367702898915210475216205696602405803815019351125338243003558764024749647326391419927260426992279678235478163600934172164121992458631503028618297455570674983850549458858692699569092721079750930295532116534498720275596023648066549911988183479775356636980742654252786255181841757467289097777279380008164706001614524919217321721477235014144197356854816136115735255213347574184946843852332390739414333454776241686251898356948556209921922218427255025425688767179049460165346680498862723279178608578438382796797668145410095388378636095068006422512520511739298489608412848862694560424196528502221066118630674427862203919494504712371378696095636437191728746776465757396241389086!
 5832645995813390478027590099465764078951269468398352595709825822620522
48940772671947826848260147699090264013639443745530506820349625245174939965143142980919065925093722169646151570985838741059788595977297549893016175392846813826868386894277415599185592524595395943104997252468084598727364469584865383673622262609912460805124388439045124413654976278079771569143599770012961608944169486855584840635342207222582848864815845602850601684273945226746767889525213852254995466672782398645659611635488623057745649803559363456817432411251507606947945109659609402522887971089314566913686722874894056010150330861792868092087476091782493858900971490967598526136554978189312978482168299894872265880485756401427047755513237964145152374623436454285844479526586782105114135473573952311342716610213596953623144295248493718711014576540359027993440374200731057853906219838744780847848968332144571386875194350643021845319104848100537061468067491927819119793995206141966342875444064374512371819217999839101591956181467514269123974894090718649423196156794520809514655022523160388193!
 0142093762137855956638937787083039069792077346722182562599661501421503068038447734549202605414665925201497442850732518666002132434088190710486331734649651453905796268561005508106658796998163574736384052571459102897064140110971206280439039759515677157700420337869936007230558763176359421873125147120532928191826186125867321579198414848829164470609575270695722091756711672291098169091528017350671274858322287183520935396572512108357915136988209144421006751033467110314126711136990865851639831501970165151168517143765761835155650884909989859982387345528331635507647918535893226185489632132933089857064204675259070915481416549859461637180270981994309924488957571282890592323326097299712084433573265489382391193259746366730583604142813883032038249037589852437441702913276561809377344403070746921120191302033038019762110110044929321516084244485963766983895228684783123552658213144957685726243344189303968642624341077322697802807318915441101044682325271620105265227211166039666557309254711055785!
 3763466820653109896526918620564769312570586356620185581007293606598764
86117910453348850346113657686753249441668039626579787718556084552965412665408530614344431858676975145661406800700237877659134401712749470420562230538994561314071127000407854733269939081454664645880797270826683063432858785698305235808933065757406795457163775254202114955761581400250126228594130216471550979259230990796547376125517656751357517829666454779174501129961489030463994713296210734043751895735961458901938971311179042978285647503203198691514028708085990480109412147221317947647772622414254854540332157185306142288137585043063321751829798662237172159160771669254748738986654949450114654062843366393790039769265672146385306736096571209180763832716641627488880078692560290228472104031721186082041900042296617119637792133757511495950156604963186294726547364252308177036751590673502350728354056704038674351362222477158915049530984448933309634087807693259939780541934144737744184263129860809988868741326047215695162396586457302163159819319516735381297416772947867242292465436680098067692!
 8238280689964004824354037014163149658979409243237896907069779422362508221688957383798623001593776471651228935786015881617557829735233446042815126272037343146531977774160319906655418763979293344195215413418994854447345673831624993419131814809277771038638773431772075456545322077709212019051660962804909263601975988281613323166636528619326686336062735676303544776280350450777235547105859548702790814356240145171806246436267945612753181340783303362542327839449753824372058353114771199260638133467768796959703098339130771098704085913374641442822772634659470474587847787201927715280731767907707157213444730605700733492436931138350493163128404251219256517980694113528013147013047816437885185290928545201165839341965621349143415956258658655705526904965209858033850722426482939728584783163057777560688876446248246857926039535277348030480290058760758251047470916439613626760449256274204208320856611906254543372131535958450687724602901618766795240616342522577195429162991930645537799140373404328752!
 6288896399587947572917464263574552540790914513571113694109119393251910
76020825202618798531887705842972591677813149699009019211697173727847684726860849003377024242916513005005168323364350389517029893922334517220138128069650117844087451960121228599371623130171144484640903890644954440061986907548516026327505298349187407866808818338510228334508504860825039302133219715518430635455007668282949304137765527939751754613953984683393638304746119966538581538420568533862186725233402830871123282789212507712629463229563989898935821167456270102183564622013496715188190973038119800497340723961036854066431939509790190699639552453005450580685501956730229219139339185680344903982059551002263535361920419947455385938102343955449597783779023742161727111723643435439478221818528624085140066604433258885698670543154706965747458550332323342107301545940516553790686627333799585115625784322988273723198987571415957811196358330059408730681216028764962867446047746491599505497374256269010490377819868359381465741268049256487985561453723478673303904688383436346553794986419270563872!
 9317487233208376011230299113679386270894387993620162951541337142489283072201269014754668476535761647737946752004907571555278196536213239264061601363581559074220202031872776052772190055614842555187925303435139844253223415762336106425063904975008656271095359194658975141310348227693062474353632569160781547818115284366795706110861533150445212747392454494542368288606134084148637767009612071512491404302725386076482363414334623518975766452164137679690314950191085759844239198629164219399490723623464684411739403265918404437805133389452574239950829659122850855582157250310712570126683024029295252201187267675622041542051618416348475651699981161410100299607838690929160302884002691041407928862150784245167090870006992821206604183718065355672525325675328612910424877618258297651579598470356222629348600341587229805349896502262917487882027342092222453398562647669149055628425039127577102840279980663658254889264880254566101729670266407655904290994568150652653053718294127033693137851786090407086!
 6711496558343434769338578171138645587367812301458768712660348913909562
009
93936103102916161528813843790990423174733639480457593149314052976347574811935670911013775172100803155902485309066920376719220332290943346768514221447737939375170344366199104033751117354719185504644902636551281622882446257591633303910722538374218214088350865739177150968288747826569959957449066175834413752239709683408005355984917541738188399944697486762655165827658483588453142775687900290951702835297163445621296404352311760066510124120065975585127617858382920419748442360800719304576189323492292796501987518721272675079812554709589045563579212210333466974992356302549478024901141952123828153091140790738602515227429958180724716259166854513331239480494707911915326734302824418604142636395480004480026704962482017928964766975831832713142517029692348896276684403232609275249603579964692565049368183609003238092934595889706953653494060340216654437558900456328822505452556405644824651518754711962184439658253375438856909411303150952617937800297412076651479394259029896959469955657612186561967!
 3378623625612521632086286922210327488921865436480229678070576561514463204692790682120738837781423356282360896320806822246801224826117718589638140918390367367222088832151375560037279839400415297002878307667094447456013455641725437090697939612257142989467154357846878861444581231459357198492252847160504922124247014121478057345510500801908699603302763478708108175450119307141223390866393833952942578690507643100638351983438934159613185434754649556978103829309716465143840700707360411237359984345225161050702705623526601276484830840761183013052793205427462865403603674532865105706587488225698157936789766974220575059683440869735020141020672358502007245225632651341055924019027421624843914035998953539459094407046912091409387001264560016237428802109276457931065792295524988727584610126483699989225695968815920560010165525637567856672279661988578279484885583439751874454551296563443480396642055798293680435220277098429423253302257634180703947699415979159453006975214829336655566156787364005366!
 6564165473217043903521329543529169414599041608753201868379370234888689
47915107163785290234529244077365949563051007421087142613497459561513849871375704710178795731042296906667021449863746459528082436944578977233004876476524133907592043401963403911473202338071509522201068256342747164602433544005152126693249341967397704159568375355516673027390074972973635496453328886984406119649616277344951827369558822075735517665158985519098666539354948106887320685990754079234240230092590070173196036225475647894064754834664776041146323390565134330684495397907090302346046147096169688688501408347040546074295869913829668246818571031887906528703665083243197440477185567893482308943106828702722809736248093996270607472645539925399442808113736943388729406307926159599546262462970706259484556903471197299640908941805953439325123623550813494900436427852713831591256898929519642728757394691427253436694153236100453730488198551706594121735246258954873016760029886592578662856124966552353382942878542534048308330701653722856355915253478445981831341129001999205981352205117336585640!
 7826484942764411376393866924803118364453698589175442647399882284621844900877769776312795722672655562596282542765318300134070922334365779160128093179401718598599933849235495640057099558561134980252499066984233017350358044081168552653117099570899427328709258487894436460050410892266917835258707859512983441729535195378855345737426085902908176515578039059464087350612322611200937310804854852635722825768203416050484662775045003126200800799804925485346941469775164932709504934639382432227188515974054702148289711177792376122578873477188196825462981268685817050740272550263329044976277894423621674119186269439650671515779586756482399391760426017633870454990176143641204692182370764887834196896861181558158736062938603810171215855272668300823834046564758804051380801633638874216371406435495561868964112282140753302655100424104896783528588290243670904887118190909494533144218287661810310073547705498159680772009474696134360928614849417850171807793068108546900094458995279424398139213505586422196!
 4834915126390128038320010977386806628779239718014613432445726400973742
57007359210031541508936793008169980536520276007277496745840028362405346037263416554259027601834840306811381855105979705664007509426087885735796037324514146786703688098806097164258497595138069309449401515422221943291302173912538355915031003330325111749156969174502714943315155885403922164097229101129035521815762823283182342548326111912800928252561902052630163911477247331485739107775874425387611746578671169414776421441111263583553871361011023267987756410246824032264834641766369806637857681349204530224081972785647198396308781543221166912246415911776732253264335686146186545222681268872684459684424161078540167681420808850280054143613146230821025941737562389942075713627516745731891894562835257044133543758575342698699472547031656613991999682628247270641336222178923903176085428943733935618891651250424404008952719837873864805847268954624388234375178852014395600571048119498842390606136957342315590796703461491434478863604103182350736502778590897578272731305048893989009923913503373250855!
 9826558670892426124294736701939077271307068691709264625484232407485503660801360466895118400936686095463250021458529309500009071510582362672932645373821049387249966993394246855164832611341461106802674466373343753407642940266829738652209357016263846485285149036293201991996882851718395366913452224447080459239660281715655156566611135982311225062890585491450971575539002439315351909021071194573002438801766150352708626025378817975194780610137150044899172100222013350131060163915415895780371177927752259787428919179155224171895853616805947412341933984202187456492564434623925319531351033114763949119950728584306583619353693296992898379149419394060857248639688369032655643642166442576079147108699843157337496488352927693282207629472823815374099615455987982598910937171262182830258481123890119682214294576675807186538065064870261338928229949725745303328389638184394477077940228435988341003583854238973542439564755568409522484455413923941000162076936368467764130178196593799715574685419463348937!
 4843912974239143365936041003523437770658886778113949861647874714079326
38587386247328896456435987746676384794665040741118256583788784548581489629612739984134427260860618724554523606431537101127468097787044640947582803487697589483282412392929605829486191966709189580898332012103184303401284951162035342801441276172858302435598300320420245120728725355811958401491809692533950757784000674655260314461670508276827722235341911026341631571474061238504258459884199076112872580591139356896014316682831763235673254170734208173322304629879928049085140947903688786878949305469557030726190095020764334933591060245450864536289354568629585313153371838682656178622736371697577418302398600659148161640494496501173213138957470620884748023653710311508984279927544268532779743113951435741722197597993596852522857452637962896126915723579866205734083757668738842664059909935050008133754324546359675048442352848747014435454195762584735642161981340734685411176688311865448937769795665172796623267148103386439137518659467300244345005449953997423723287124948347060440634716063258306498!
 2979551010954183623503030945309733583446283947630477564501500850757894954893139394489921612552559770143685894358587752637962559708167764380012543650237141278346792610199558522471722017772370041780841942394872540680155603599839054898572354674564239058585021671903139526294455439131663134530893906204678438778505423939052473136201294769187497519101147231528932677253391814660730008902776896311481090220972452075916729700785058071718638105496797310016787085069420709223290807038326345345203802786099055690013413718236837099194951648960075504934126787643674638490206396401976668559233565463913836318574569814719621084108096188460545603903845534372914144651347494078488442377217515433426030669883176833100113310869042193903108014378433415137092435301367763108491351615642269847507430329716746964066653152703532546711266752246055119958183196376370761799191920357958200759560530234626775794393630746305690108011494271410093913691381072581378135789400559950018354251184172136055727522103526803735!
 7265279224173736057511278872181908449006178013889710770822931002797665
935
83875890939568814856026322439372656247277603789081445883785501970284377936240782505270487581647032458129087839523245323789602984166922548964971560698119218658492677040395648127810217991321741630581055459880130048456299765112124153637451500563507012781592671424134210330156616535602473380784302865525722275304999883701534879300806260180962381516136690334111138653851091936739383522934588832255088706450753947395204396807906708680644509698654880168287434378612645381583428075306184548590379821799459968115441974253634439960290251001588827216474500682070419376158454712318346007262933955054823955713725684023226821301247679452264482091023564775272308208106351889915269288910845557112660396503439789627825001611015323516051965590421184494990778999200732947690586857787872098290135295661397888486050978608595701773129815531495168146717695976099421003618355913877781769845875810446628399880600616229848616935337386578773598336161338413385368421197893890018529569196780455448285848370117096721253!
 5338758621582310133103877668272115726949518179589754693992642197915523385766231676275475703546994148929041301863861194391962838870543677743224276809132365449485366768000001065262485473055861598999140170769838548318875014293890899506854530765116803337322265175662207526951791442252808165171667766727930354851542040238174608923283917032754257508676551178593950027933895920576682789677644531840404185540104351348389531201326378369283580827193783126549617459970567450718332065034556644034490453627560011250184335607361222765949278393706478426456763388188075656121689605041611390390639601620221536849410926053876887148379895599991120991646464411918568277004574243434021672276445589330127781586869525069499364610175685060167145354315814801054588605645501332037586454858403240298717093480910556211671546848477803944756979804263180991756422809873998766973237695737015808068229045992123661689025962730430679316531149401764737693873514093361833216142802149763399189835484875625298752423873077559555!
 9554651963944018218409984124898262367377146722606163364329640633572810
70788758164043814850188411431885988276944901193212968271588841338694346828590066640806314077757725705630729400492940302420498416565479736705485580445865720227637840466823379852827105784319753541795011347273625774080213476826045022851579795797647467022840999561601569108903845824502679265942055503958792298185264800706837650418365620945554346135134152570065974881916341359556719649654032187271602648593049039787489589066127250794828276938953521753621850796297785146188432719223223810158744450528665238022532843891375273845892384422535472653098171578447834215822327020690287232330053862163479885094695472004795231120150432932266282727632177908840087861480221475376578105819702226309717495072127248479478169572961423658595782090830733233560348465318730293026659645013718375428897557971449924654038681799213893469244741985097334626793321072686870768062639919361965044099542167627840914669856925715074315740793805323925239477557441591845821562518192155233709607483329234921034514626437449805596!
 1033079941453477845746999921285999993996122816152193148887693880222810830019860165494165426169685867883726095877456761825072759929508931805218729246108676399589161458550583972742098090978172932393010676638682404011130402470073508578287246271349463685318154696904669686939254725194139929146524238577625500474852954768147954670070503479995888676950161249722820403039954632788306959762493615101024365553522306906129493885990157346610237122354789112925476961760050479749280607212680392269110277722610254414922157650450812067717357120271802429681062037765788371669091094180744878140490755178203856539099104775941413215432844062503018027571696508209642734841469572639788425600845312140659358090412711359200419759851362547961606322887361813673732445060792441176399759746193835845749159880976674470930065463424234606342374746660804317012600520559284936959414340814685298150539471789004518357551541252235905906872648786357525419112888773717663748602766063496035367947026923229718683277173932361920!
 0777452212624751869833495151019864269887847171939664976907082521742336
56627259284406204302141137199227852699846988477023238238400556555178890876613601304770984386116870523105531491625172837327286760072481729876375698163354150746088386636406934704372066886512756882661497307886570156850169186474885416791545965072342877306998537139043002665307839877638503238182155355973235306860430106757608389086270498418885951380910304235957824951439885901131858358406674723702971497850841458530857813391562707603563907639473114554958322669457024941398316343323789759556808568362972538679132750555425244919435891284050452269538121791319145135009938463117740179715122837854601160359554028644059024964669307077690554810288502080858008781157738171917417760173307385547580060560143377432990127286772530431825197579167929699650414607066457125888346979796429316229655201687973000356463045793088403274807718115553309098870255052076804630346086581653948769519600440848206596737947316808641564565053004988161649057883115434548505266006982309315777650037807046612647060214575057932709!
 6204782561524714591896522360839664562410519551052235723973951288181640597859142791481654263289200428160913693777372229998332708208296995573772737566761552711392258805520189887620114168005468736558063347160373429170390798639652296131280178267971728982293607028806908776866059325274637840539769184808204102194471971386925608416245112398062011318454124478205011079876071715568315407886543904121087303240201068534194723047666672174986986854707678120512473679247919315085644477537985379973223445612278584329684664751333657369238720146472367942787004250325558992688434959287612400755875694641370562514001179713316620715371543600687647731867558714878398908107429530941060596944315847753970094398839491443235366853920994687964506653398573888786614762944341401049888993160051207678103588611660202961193639682134960750111649832785635316145168457695687109002999769841263266502347716728657378579085746646077228341540311441529418804782543876177079043000156698677679576090996693607559496515273634981189!
 6413043311662774712338817406037317439705406703109676765748695358789670
03192586625941051053358438465602339179674926784476370847497833365557900738419147319886271352595462518160434225372996286326749682405806029642114638643686422472488728343417044157348248183330164056695966886676956349141632842641497453334999948000266998758881593507357815195889900539512085351035726137364034367534714104836017546488300407846416745216737190483109676711344349481926268111073994825060739495073503169019731852119552635632584339099822498624067031076831844660729124874754031617969941139738776589986855417031884778867592902607004321266617919223520938227878880988633599116081923535557046463491132085918979613279131975649097600013996234445535014346426860464495862476909434704829329414041114654092398834443515913320107739441118407410768498106634724104823935827401944935665161088463125678529776973468430306146241803585293315973458303845541033701091676776374276210213701354854450926307190114731848574923318167207213727935567952844392548156091372812840633303937356242001604566455741458816605!
 2166608738748047243391212955877763906969037078828527753894052460758496231574369171131761347838827194168606625721036851321566478001476752310393578606896111259960281839309548709059073861351914591819510297327875571049729011487171897180046961697770017913919613791417162707018958469214343696762927459109940060084983568425201915593703701011049747339493877885989417433031785348707603221982970579751191440510994235883034546353492349826883624043327267415540301619505680654180939409982020609994140216890900708213307230896621197755306659188141191577836272927461561857103721724710095214236964830864102592887457999322374955191221951903424452307535133806856807354464995127203174487195403976107308060269906258076020292731455252078079914184290638844373499681458273372072663917670201183004648190002413083508846584152148991276106513741539435657211390328574918769094413702090517031487773461652879848235338297260136110984514841823808120540996125274580881099486972216128524897425555516076371675054896173016809!
 6138038119143611439921063800508321409876045993093248510251682944672606
661
38151745712559754953580239983146982203613380828499356705575524712902745397762140493182014658008021566536067765508783804304134310591804606800834591136640834887408005741272586704792258319127415739080914383138456424150940849133918096840251163991936853225557338966953749026620923261318855891580832455571948453875628786128859004106006073746501402627824027346962528217174941582331749239683530136178653673760642166778137739951006589528877427662636841830680190804609849809469763667335662282915132352788806157768278159588669180238940333076441912403412022316368577860357276941541778826435238131905028087018575047046312933353757285386605888904583111450773942935201994321971171642235005644042979892081594307167019857469273848653833436145794634175922573898588001698014757420542995801242958105456510831046297282937584161162532562516572498078492099897990620035936509934721582965174135798491047111660791587436986541222348341887722929446335178653856731962559852026072947674072616767145573649812105677716893!
 4849176607717052771876011999081441130586455779105256843048114402619384023224709392498029335507318458903553971330884461741079591625117148648744686112476054286734367090466784686702740918810142497111496578177242793470702166882956108777944050484375284433751088282647719785400065097040330218625561473321177711744133502816088403517814525419643203095760186946490886815452856213469883554445602495566684366029221951248309106053772019802183101032704178386654471812603971906884623708575180800353270471856594994761242481109992886791589690495639476246084240659309486215076903149870206735338483495508363660178487710608098042692471324100094640143736032656451845667924566695510015022983307984960799498824970617236744936122622296179081431141466094123415935930958540791390872083227335495720807571651718765994498569379562387555161757543809178052802946420044721539628074636021132942559160025707356281263873310600589106524570802447493754318414940148211999627645310680066311838237616396631809314446712986155275!
 9820145141027560068929750246304017351489194576360789352855505317331416
45705049964438909363084387448478396168405184527328840323452024705685164657164771393237755172947951261323982296023945485797545865174587877133181387529598094121742273003522965080891777050682592488223221549380483714547816472139768209633205083056479204820859204754998573203888763916019952409189389455767687497308569559580106595265030362661597506622250840674288982659075106375635699682115109496697445805472886936310203678232501823237084597901115484720876182124778132663304120762165873129708112307581598212486398072124078688781145016558251361789030708608701989758898074566439551574153631931919810705753366337380382721527988493503974800158905194208797113080512339332219034662499171691509485414018710603546037946433790058909577211808044657439628061867178610171567409676620802957665770512912099079443046328929473061595104309022214393718495606340561893425130572682914657832933405246350289291754708725648426003496296116541382300773133272983050016025672401418515204189070115428857992081219844931569990!
 5918201181973350012618772803681248199587707020753240636125931343859554254778196114293516356122349666152261473539967405158499860355295332924575238881013620234762466905581643896786309762736550472434864307121849437348530060638764456627218666170123812771562137974614986132874411771455244470899714452288566294244023018479120547849857452163469644897389206240194351831008828348024924908540307786387516591130287395878709810077271827187452901397283661484214287170553179654307650453432460053636147261818096997693348626407743519992868632383508875668359509726557481543194019557685043724800102041374983187225967738715495839971844490727914196584593008394263702087563539821696205532480321226749891140267852859967340524203109179789990571882194939132075343170798002373659098537552023891164346718558290685371189795262623449248339249634244971465684659124891855662958932990903523923333364743520370770101084388003290759834217018554228386161721041760301164591878053936744747205998502358289183369292233732399948!
 0437108419659473162654825748099482509991833006976569367159689364493348
86474421350084070066088359723503953234017958255703601693699098867113210979889707051728075585519126993067309925070407024556850778679069476612629808225163313639952117098452809263037592242674257559989289278370474445218936320348941552104459726188380030067761793138139916205806270165102445886924764924689192461212531027573139084047000714356136231699237169484813255420091453041037135453296620639210547982439212517254013231490274058589206321758949434548906846399313757091034633271415316223280552297297953801880162859073572955416278867649827418616421878988574107164906919185116281528548679417363890665388576422915834250067361245384916067413734017357277995634104332688356950781493137800736235418007061918026732855119194267609122103598746924117283749312616339500123959924050845437569850795704622266461900010350049018303415354584283376437811198855631877779253720116671853954183598443830520376281944076159410682071697030228515225057312609304689842343315273213136121658280807521263154773060442377475350!
 5952287174402666389148817173086436111389069420279088143119448799417154042103412190847094080254023932942945493878640230512927119097513536000921971105412096683111516328705423028470073120658032626417116165957613272351566662536672718998534199895236884830999302757419916463841427077988708874229277053891227172486322028898425125287217826030500994510824783572905691988555467886079462805371227042466543192145281760741482403827835829719301017888345674167811398954750448339314689630763396657226727043393216745421824557062524797219978668542798977992339579057581890622525473582205236424850783407110144980478726691990186438822932305382318559732869780922253529591017341407334884761005564018242392192695062083183814546983923664613639891012102177095976704908305081854704194664371312299692358895384930136356576186106062228705599423371631021278457446463989738188566746260879482018647487672727222062676465338099801966883680994159075776852639865146253336312450536402610569605513183813174261184420189088853196!
 3569869627950367384243130113317533053298020166888174813429886815855778
10343231753064784983210629718425184385534427620128234570716988530518326179641178579608888150329602290705614476220915094739035946646916235396809201394578175891088931992112260073928149169481615273842736264298098234063200244024495894456129167049508235812487391799648641133480324757775219708932772262349486015046652681439877051615317026696929704928316285504212898146706195331970269507214378230476875280287354126166391708245925170010714180854800636923259462019002278087409859771921805158532147392653251559035410209284665925299914353791825314545290598415817637058927906909896911164381187809435371521332261443625314490127454772695739393481546916311624928873574718824071503995009446731954316193855485207665738825139639163576723151005556037263394867208207808653734942440115799667507360711159351331959197120948964717553024531364770942094635696982226673775209945168450643623824211853534887989395673187806606107885440005508276570305587448541805778891719207881423351138662929667179643468760077047999537!
 8833878703487180218424373421122739402557176908196030920182401884270570460926225641783752652633583242406612533115294234579655695025068100183109004112453790153329661569705223792103257069370510908307894799990049993953221536227484766036136776979785673865846709366795885837887956259464648913766521995882869338018360119323685785585581955560421562508836502033220245137621582046181067051953306530606065010548871672453779428313388716313955969058320834168984760656071183471362181232462272588419902861420872849568796393254642853430753011052857138296437099903569488852851904029560473461311382638788975517885604249987483163828040468486189381895905420398898726506976202019955484126500053944282039301274816381585303964399254702016727593285743666616441109625663373054092195196751483287348089574777752783442210910731113518280460363471981856555729571447476825528578633493428584231187494400032296906977583159038580393535213588600796003420975473922967333106493956018122378128545843176055617338611267347807458!
 5067606304822940965304111830667108189303110887172816751957967534718853
722
93096161432040063813224658411111577583585811350185690478153689381377184728147519983505047812977185990847076219746058874232569958288925350419379582606162118423687685114183160683158679946016520577405294230536017803133572632670547903384012573059123396018801378254219270947673371919872873852480574212489211834708766296672072723256505651293331260595057777275424712416483128329820723617505746738701282095755443059683955556868611883971355220844528526400812520276655576774959696266126045652456840861392382657685833846984997787267065551918544686984694784957346226062942196245570853712727765230989554501930377321666491825781546772920052126671434632096378918523232150189761260343736840671941930377468809992968775824410478781232662531818459604538535438391144967753128642609252115376732588667226040425234910870269580996475958057946639734190640100363619040420331135793365424263035614570090112448008900208014780566037101541223288914657223931450760716706435568274377439657890679726874384730763464516775621!
 0309860409271709095128086309029738504452718289274968921210667008164858339553773591913695015316201890888748421079870689911480466927065094076204650277252865072890532854856143316081269300569378541786109696920253886503457718317668688592368148847527649846882194973972970773718718840041432312763650481453112285099002074240925585925292610302106736815434701525234878635164397623586041919412969769040526483234700991115424260127343802208933109668636789869497799400126016422760926082349304118064382913834735467972539926233879158299848645927173405922562074910530853153718291168163721939518870095778818158685046450769934394098743351443162633031724774748689791820923948083314397084067308407958935810896656477585990556376952523265361442478023082681183103773588708924061303133647737101162821461466167940409051861526036009252194721889091810733587196414214447865489952858234394705007983038853886083103571930600277119455802191194289992272235345870756624692617766317885514435021828702668561066500353105021631!
 8206017609217984684936863161293727951873078972637353717150256378733579
77180818487845886650433582437700414771041493492743845758710715973155943942641257027096512510811554824793940359768118811728247215825010949609662539339538092219559191818855267806214992317276316321833989693807561685591175299845013206712939240414459386239880938124045219148483164621014738918251010909677386906640415897361047643650006807710565671848628149637111883219244566394581449148616550049567698269030891118568798692947051352481609174324301538368470729289898284602223730145265567989862776796809146979837826876431159883210904371561129976652153963546442086919756737000573876497843768628768179249746943842746525631632300555130417422734164645512781278457777245752038654375428282567141288583454443513256205446424101103795546419058116862305964476958705407214198521210673433241075676757581845699069304604752277016700568454396923404171108988899341635058515788735343081552081177207188037910404698306957868547393765643363197978680367187307969392423632144845035477631567025539006542311792015346497792!
 9066241508328858395290542637687668968805033317227800185885069736232403894700471897619347344308437443759925034178807972235859134245813144049847701732361694719765715353197754997162785663119046912609182591249890367654176979903623755286526375733763526969344354400473067198868901968147428767790866979688522501636949856730217523132529265375896415171479559538784278499866456302878831962099830494519874396369070682762657485810439112232618794059941554063270131989895703761105323606298674803779153767511583043208498720920280929752649812569163425000522908872646925284666104665392171482080130502298052637836426959733707053922789153510568883938113249757071331029504430346715989448786847116438328050692507766274500122003526203709466023414648998390252588830148678162196775194583167718762757200505439794412459900771152051546199305098386982542846407255540927403132571632640792934183342147090412542533523248021932277075355546795871638358750181593387174236061551171013123525633485820365146141870049205704372!
 0182617331947157008675785393360786227395581857975872587441025420771054
75361294047460100094095444959662881486915903899071865980563617137692227290764197755177720104276496949611056220592502420217704269622154958726453989227697660310524980855759471631075870133208861463266412591148633881220284440694169488261529577625325019870359870674380469821942056381255833436421949232275937221289056420943082352544084110864545369404969271494003319782861318186188811118408257865928757426384450059944229568586460481033015388911499486935436030221810943466764000022362550573631294626296096198760564259963946138692330837196265954739234624134597795748524647837980795693198650815977675350553918991151335252298736112779182748542008689539658359421963331502869561192012298889887006079992795411188269023078913107603617634779489432032102773359416908650071932804017163840644987871753756781185321328408216571107549528294974936214608215583205687232185574065161096274874375098092230211609982633033915469494644491004515280925089745074896760324090768983652940657920198315265410658136823791984090!
 6457124689484702093577611931399802468134052003947819498662026240089021501661638135383815150377350229660746279529103840686855690701575166241929872444827194293310048548244545807188976330032325258215812803274679620028147624318286221710543528983482082734516801861317195933247110746622285087106661177034653528395776259977446721857158161264111432717943478859908928084866949141390977167369002777585026866465405659503948678411107901161040085727445629384254941675946054871172359464291058509099502149587931121961359083158826206823321561530868337308381732793281969838750870834838804638847844188400318471269745437093732983624028751979208023218787448828728437273780178270080587824107493575148899789117397461293203510814327032514090304874622629423443275712600866425083331876886507564292716055252895449215376517514921963671810494353178583834538652556566406572513635750643532365089367904317025978781771903148679638408288102094614900797151377170990619549696400708676671023300486726314755105372317571143223!
 1741141168062286420638890621019235522354671166213749969326932173704310
59872250394565749246169782609702533594750209138366737728944386964000281103440260847128990007468077648440887113413525033678773167977093727786821661178653442317322646378476978751443320953400016506921305464768909850502030150448808342618452087305309731894929164253229336124315143065782640702838984098416029503092418971209716016492656134134334222988279099217860426798124572853458013382609958771781131021673402565627440072968340661984806766158050216918337236803990279316064204368120799003162644491461902194582296909921227885539487835383056468648816555622943156731282743908264506116289428035016613366978240517701552196265227254558507386405852998303791803504328767038092521679075712040612375963276856748450791511473134400018325703449209097124358094479004624943134550289006806487042935340374360326258205357901183956490893543451013429696175452495739606214902887289327925206965353863964432253883275224996059869747598823299162635459733244451637553343774929289905811757863555556269374269109471170021654!
 1171821975051983178713710605106379555858890556885288798908475091576463907469361988150781468526213325247383765119299015610918977792200870579339646382749068069876916819749236562422608715417610043060890437797667851966189140414492527048088197149880154205778700652159400928977760133075684796699295543365613984773806039436889588764605498387147896848280538470173087111776115966350503997934386933911978988710915654170913308260764740630571141109883938809548143782847452883836807941888434266622207043872288741394780101772139228191199236540551639589347426395382482960903690028835932774585506080131798840716244656399794827578365019551422155133928197822698427863839167971509126241054872570092407004548848569295044811073808799654748156891393538094347455697212891982717702076661360248958146811913361412125878389557735719498631721084439890142394849665925173138817160266326193106536653504147307080441493916936326237376777709585031325599009576273195730864804246770121232702053374266705314244820816813030639!
 7378736642483672539837487690980602182785786216512738563513290148903509
883
27061725893257536399397905572917516009761545904477169226580631511102803843601737474215247608515209901615858231257159073342173657626714239047827958728150509563309280266845893764964977023297364131906098274063353108979246424213458374090116939196425045912881340349881063540088759682005440836438651661788055760895689672753153808194207733259791727843762566118431989102500749182908647514979400316070384554946538594602745244746681231468794344161099333890899263841184742525704457251745932573898956518571657596148126602031079762825416559050604247911401695790033835657486925280074302562341949828646791447632277400552946090394017753633565547193100017543004750471914489984104001586794617924161001645471655133707407395026044276953855383439755054887109978520540117516974758134492607943368954378322117245068734423198987884412854206474280973562580706698310697993526069339213568588139121480735472846322778490808700246777630360555123238665629517885371967303463470122293958160679250915321748903084088651606111!
 9011498443412350124646928028805996134283511884715449771278473361766285062169778717743824362565711779450064477718370221999106695021656757644044997940765037999954845002710665987813603802314126836905783190460792765297277694043613023051787080546511542469395265127101052927070306673024447125973939950514628404767431363739978259184541176413327906460636584152927019030276017339474866960348694976541752429306040727005059039503148522921392575594845078867977925253931765156416197168443524369794447355964260633391055126826061595726217036698506473281266724521989060549880280782881429796336696744124805982192146339565745722102298677599746738126069367069134081559412016115960190237753525556300606247983261249881288192937343476862689219239777833910733106588256813777172328315329082525092733047850724977139448333892552081175608452966590553940965568541706001179857293813998258319293679100391844099286575605993598910002969864460974714718470101531283762631146774209145574041815908800064943237855839308530828!
 3054760767995243573916312218860575496738322431956506554608528812019023
63644712703748634421727257879503428486312944916318475347531435041392096108796057730987201352484075057637199253650470908582513936863463863368042891767107602111159828875539940120076013947033661793715396306139863655492213741597905119083588290097656647300733879314678913181465109316761575821351424860442292445304113160652700974330088499034675405518640677342603583409608605533747362760935658853109760994238347382222087292464497684560579562516765574088410321731345627735856052358236389532038534024842273371639123973215995440828421666636023296545694703577184873442034227706653837387506169212768015766181095420097708363604361110592409117889540338021426523948929686439808926114635414571535194342850721353453018315875628275733898268898523557799295727645229391567477566676051087887648453493636068278050564622813598885879259940946446041705204470046315137975431737187756039815962647501410906658866162180038266989961965580587208639721176995219466789857011798332440601811575658074284182910615193917630059!
 1943144346051540477105700543390001824531177337189558576036071828605063564799790041397618089553636696031621931132502238517916720551806592635180362512145759262383693482226658955769946604919381124866090997981285718234940066155521961122072030922776462009993152442735894887105766238946938894464950939603304543408421024624010487233287500817491798755438793873814398942380117627008371960530943839400637561164585609431295175977139353960743227924892212670458081833137641658182695621058728924477400359470092686626596514220506300785920024882918608397437323538490839643261470005324235406470420894992102504047267810590836440074663800208701266642094571817029467522785400745085523777208905816839184465928294170182882330149715542352359117748186285929676050482038643431087795628929254056389466219482687110428281638939757117577869154301650586029652174595819888786804081103284327398671986213062055598552660364050462821523061545944744899088390819997387474529698107762014871340001225355222466954093152131153379!
 1579802697955571050850747387475075806876537644578252443263804614304288
92359348529610582693821034980004052484070844035611678171705128133788057056434506161193304244407982603779511985486945591520519600930412710072778493015550388953603382619293437970818743209499141595933963681106275572952780042548630600545238391510689989135788200194117865356821491185282078521301255185184937115034221595422445119002073935396274002081104655302079328672547405436527175958935007163360763216147258154076420530200453401835723382926619153083540951202263291650544261236191970516138393573266937601569144299449437448568097756963031295887191611292946818849363386473927476012269641588489009657170861605981472044674286642087653347998582220906198021732116142304194777549907387385679411898246609130916917722742072333676350326783405863019301932429963972044451792881228544782119535308989101253429755247276357302262813820918074397486714535907786335301608215599113141442050914472935350222308171936635093468658586563148555758624478186201087118897606529698992693281787055764351433820601410773292610!
 6343152533718224338526352021773544071528189813769875515757454693972715048846979361950047772097056179391382898984532742622728864710888327017372325881824465843624958059256033810521560620615571329915608489206434030339526226345145428367869828807425142256745180618414956468611163540497189768215422772247947403357152743681940989205011365340012384671429655186734415374161504256325671343024765512521921803578016924032669954174608759240920700466934039651017813485783569444076047023254075555776472845075182689041829396611331016013111907739863246277821902365066037404160672496249013743321724645409741299557052914243820807609836482346597388669134991978401310801558134397919485283043673901248208244481412809544377389832005986490915950532285791457688496257866588599917986752055455809900455646117875524937012455321717019428288461740273664997847550829422802023290122163010230977215156944642790980219082668986883426307160920791408519769523555348865774342527753119724743087304361951139611908003025587838764!
 4206085044730631299277888942729189727169890575925244679660189707482960
94919064876469370275077386643239191904225429023531892337729316673608699622803255718530891928440380507103006477684786324319100022392978525537237556621364474009676053943983823576460699246526008909062410590421545392790441152958034533450025624410100635953003959886446616959562635187806068851372346270799732723313469397145628554261546765063246567662027924520858134771760852169134094652030767339184114750414016892412131982688156866456148538028753933116023229255561894104299533564009578649534093511526645402441877594931693056044868642086275720117231952640502309977456764783848897346431721598062678767183800524769688408498918508614900343240347674268624595239589035858213500645099817824463608731775437885967767291952611121385919472545140030118050343787527766440276261894101757687268042817662386068047788524288743025914524707395054652513533945959878961977891104189029294381856720507096460626354173294464957661265195349570186001541262396228641389779673332907056737696215649818450684226369036784955597!
 0026079867996261019039331263768556968767029295371162528005543100786408728939225714512481135778627664902425161990277471090335933309304948380597856628844787441469841499067123764789582263294904679812089984857163571087831191848630254501620929805829208334813638405421720056121989353669371336733392464416125223196943471206417375491216357008573694397305979709719726666642267431117762176403068681310351899112271339724036887000996862922546465006385288620393800504778276912835603372548255793912985251506829969107754257647488325341412132800626717094009098223529657957997803018282428490221470748111124018607613415150387569830918652780658896682362523937845272634530420418802508442363190383318384550522367992357752929106925043261446950109861088899914658551881873582528164302520939285258077969737620845637482114433988162710031703151334402309526351929588680690821355853680161000213740851154484912685841268695899174149133820578492800698255195740201818105641297250836070356851055331787840829000041552511865!
 7794539633175385320921497205266078312602819611648580986845875251299974
040
92797683176639914655386108937587952214971731728131517932904431121815871023518740757222100123768721944747209349312324107065080618562372526732540733324875754482967573450019321902199119960797989373383673242576103938985349278777473980508080015544764061053522202325409443567718794565430406735896491017610775948364540823486130254718476485189575836674399791508512858020607820554462991723202028222914886959399729974297471155371858924238493855858595407438104882624648788053304271463011941589896328792678327322456103852197011130466587100500083285177311776489735230926661234588873102883515626446023671996644554727608310118788389151149340939344750073025855814756190881398752357812331342279866503522725367171230756861045004548970360079569827626392344107146584895780241408158405229536937499710665594894459246286619963556350652623405339439142111271810691052290024657423604130093691889255865784668461215679554256605416005071276641766056874274200329577160643448606201239821698271723197826816628249938714995!
 4491373020518436690767235774000539326626227603236597517189259018011042903842741855078948874388327030632832799630072006980122443651163940869222207453202446241211558043545420642151215850568961573564143130688834431852808539759277344336553841883403035178229462537020157821573732655231857635540989540332363823192198921711774494694036782961859208034038675758341115188241774391450773663840718804893582568685420116450313576333555094403192367203486510105610498727264721319865434354504091318595131451812764373104389725070049819870521762724940652146199592321423144397765467083517147493679861865527917158240806510637995001842959387991583501715807598837849622573985121298103263793762183224565942366853767991131401080431397323354490908249104991433258432988210339846981417157560108297065830652113470768036806953229719905999044512090872757762253510409023928887794246304832803191327104954785991801969678353214644411892606315266181674431935508170818754770508026540252941092182648582138575266881555841131985!
 6002213515888721036569608751506318753300294211868222189377554602722729
12905042922597877106678738400006167721546384412923711935218284998243509208918016855727981564218581911974909857305703326676464607287574305653726027689823732597450844796495456480307715981539558277791393736017174229960273531027687194494449179397851446315973144353518504914139415573293820485421235081739125497498193087143966151329420459193801062314217741991840601803479498876910515579055548069538785400664533759818628464199052204528033062636956264909108276271159038569950512465299960628554438383303276385998007929228466595035512112452840875162290602620118577753137479493620554964010730013488531507354873539056029089335264007132747326219603117734339436733857591245081493357369116645412817881714540230547506671365182582848980995121391939956332413365567770980030819102720409971486874181346670060940510214626902804491596465453301077546954130887141653125448130611924078211886900560277818242350226961893443525476335735364856193632544177566139817039306328721669057222597452091929172621998444096461582!
 6945638023950283712168644656178523556516412771282691868861557271620147493405227694659571219831494338162211400693630743044417328478610177774383797703723179525543410722344551255558999864618387676490397246116795901810003509892864120419516355110876320426761297982652942588295114127584126273279079880755975185157684126474220947972184330935297266521001566251455299474512763155091763673025946213293019040283795424632325855030109670692272022707486341900543830265068121414213505715417505750863990767394633514620908288893493837643939925690060406731142209331219593620298297235116325938677224147791162957278075239505625158160313335938231150051862689053065836812998810866326327198061127154885879809348791291370749823057592909186293919501472119758606727009254771802575033773079939713453953264619526999659638565491759045833358579910201271320458390320085387888163363768518208372788513117522776960978796214237216254521459128183179821604411131167140691482717098101545778193920231156387195080502467972579249!
 7605772625913328559726371211201905720771409148645074094926718035815157
57151405039761096384675556929897038354731410022380258346876735012977541327953206097115450648421218593649099791776687477448188287063231551586503289816422828823274686610659273219790716238464215348985247621678905026099804526648392954235728734397768049577409144953839157556548545905897649519851380100795801078375994577529919670054760225255203445398871253878017196071816407812484784725791240782454436168234523957068951427226975043187363326301110305342333582160933319121880660826834142891041517324721605335584999322454873077882290525232423486153152097693846104258284971496347534183756200301491570327968530186863157248840152663983568956363465743532178349319982554211730846774529708583950761645822963032442432823773745051702856069806788952176819815671078163340526675953942492628075696832610749532339053622309080708145591983735537774874202903901814293731152933464446815121294509759653430628421531944572711861490001765055817709530246887526325011970520947615941676872778447200019278913725184162285778!
 3792284439084301181121496366424659033634194540657183544771912446621259392656620306888520055599121235363718226922531781458792593750441448933981608657900876165024635197045828895481793756681046474614105142498870252139936870509372305447734112641354892806841059107716677821238332810262185587751312721179344448201440425745083063944738363793906283008973306241380614589414227694747931665717623182472168350678076487573420491557628217583972975134478990696589532548940335615613167403276472469212505759116251529654568544633498114317670257295661844775487469378464233737238981920662048511894378868224807279352022501796545343757274163910791972952950812942922205347717304184477915673991738418311710362524395716152714669005814700002633010452643547865903290733205468338872078735444762647925297690170912007874183736735087713376977683496344252419949951388315074877537433849458259765560996555954318040920178497184685497370696212088524377013853757681416632722412634423982152941645378000492507262765150789085071!
 2659970367087266927643083772296859851691223050374627443108529343052730
78865283977335246017463527703205938179125396915621063637625882937571373840754406468964783100704580613446731271591194608435935825987782835266531151065041623295329047772174083559349723758552138048305090009646676088301540612824308740645594431853413755220166305812111033453120745086824339432159043594430312431227471385842030390106070940315235556172767994160020393975099897629335325855575624808996691829864222677502360193257974726742578211119734709402357457222271212526852384295874273501563660093188045493338989741571490544182559738080871565281430102670460284316819230392535297795765862414392701549740879273131051636119137577008929564823323648298263024607975875767745377160102490804624301856524161756655600160859121534556267602192689982855377872583145144082654583484409478463178777374794653580169960779405568701192328608041130904629350871827125934668712766694873899824598527786499569165464029458935064964335809824765965165142090986755203808309203230487342703468288751604071546653834619611223013!
 7594515792526967436425319273900360386082364507626988274976187235754767628899507521148048525279508450339585708381304769378813211236742813194879502280663201700224603319896719706491637411758548518784840120548446725888514015627250198217190669608126277854859648183696214107217142149863619187747545096503089570994709343378569816744658282679119406119560378453978558392407612763441057667510243075598145527861678159496570625597550743065210853015979080733437360794328667578905334836695554868039134337201564988342208933999716414797469386969054800891930671380571715058573071488156499207140867582596028760564597824237702424698053280566327870419267684671162668794634869504645074202193739452592626686135529406247813612062026364981999994984051438682852589563422643287076632993048917234007254717641886853513723326678779217383475414800228033929973579361524127558295692768372312347989894462743304545667900620324205163962825884430854383072014956721064605332385372031432421126074244858450945804940818209276391!
 4000854042202355626021856434899414543995041098059181794888262805206644
108
63190016885681551692294862030107388971810077092905904807490924271410189335428184299959881696609938369616443815288772140852680887574882932587358099056707558170179491619061140019085537448827262009366856044755965574764856740081773817033073803054769736097865438593821872205839023444435088674998665060406458743460053318274362961778625180818931443632512051070946908135864405192295129324500788333987884293393424351263433652043858129128343452973086529097833006712617981303167943855357262969987403595704584522308563900989131794759487521263970783759448611394519602867512105616389760088800927461158608002078033415914517970730368351969777660763737853330120241201120469886092093390853657732223924124490515327809509558664594776344822699860748132973026309750288121035177231244650953496536930900186377640940943498373132513218620802148099226855029484546618147155574447096695301776904342720318927706047177845279391604722815343798035396798614243709566832214914654380145938292773933960327540480095522318166673!
 8035718393275707714204672383862461780397629237713120958078936384144792980258806552212926209362393063731349664018661951081158347117331202580586672763999276357907806381881306915636627412543125958993611964762610140556350339952314032311381965623632719896183725484533370206256346422395276694356837676136871196292181875457608161705303159072882870071231366630872275491866139577373054606599743781098764980241401124214277366808275139095931340415582626678951084677611866595766016599817808941498575497628438785610026379654317831363402513581416115190209649913354873313111502270068193013592959597164019719605362503355847998096348871803911161281359596856547886832585643789617315976200241962155289629790481982219946226948713746244472909345647002853769495885959160678928249105441251599630078136836749020937491573289627002865682934443134234735123929825916673950342599586897069726733258273590312128874666045146148785034614282776599160809039865257571726308183349444182019353338507129234577437557934406217871!
 1330063106003324053991693682603746176638565758877580201229366353270267
10068126182517291460820254189288593524449107013820621155382779356529691457650204864328286555793470720963480737269214118689546732276775133569019015372366903686538916129168888787640752549349424973342718117889275993159671935475898809792452526236365903632007085444078454479734829180208204492667063442043755532505052752283377888704080403353192340768563010934777212563908864041310107381785333831603813528082811904083256440184205374679299262203769871801806112262449090924264198582086175117711378905160914038157500336642415609521632819712233502316742260056794128140621721964184270578432895980288233505982820819666624903585778994033315227481777695284368163008853176969478369058067106482808359804669884109813515865490693331952239436328792399053481098783027450017206543369906611778455436468772363184446476806914282800455107468664539280539940910875493916609573161971503316696830992946634914279878084225722069714887558063748030886299511847318712477729191007022758889348693945628951580296537215040960310!
 7761289831263589964893410247036036645058687287589051406841238124247386385427908282733827973326885504935874303160274749063129572349742611221517417153133618622410913869500688835898962349276317316478340077460886655598733382113829928776911495492184192087771606068472874673681886167507221017261103830671787856694812948785048943063086169948798703160515884108282351274153538513365895332948629494495061868514779105804696039069372662670386512905201137810858616188886947957607413585534585151768051973334433495230120395770739623771316030242887200537320998253008977618973129817881944671731160647231476248457551928732782825127182446807824215216469567819294098238926284943760248852279003620219386696482215628093605373178040863727268426696421929946819214908701707533361094791381804063287387593848269535583077395761447997270003472880182785281389503217986345216111066608839314053226944905455527867894417579202440021450780192099804461382547805858048442416404775031536054906591430078158372430123137511562284!
 0158386442708907182848167575271238467824595343344496220100960710513706
08461801187543120725491334994247617115633321408934609156561550600317384218701570226103101916603887064661438897736318780940711527528174689576401581047016965247557740891644568677717158500583269943401677202156767724068128366565264122982439465133197359199709403275938502669557470231813203243716420586141033606524536939160050644953060161267822648942437397166717661231048975031885732165554988342121802846912529086101485527815277625623750456375769497734336846015607727035509629049392487088406281067943622418704747008368842671022558302403599841645951122485272633632645114017395248086194635840783753556885622317115520947223065437092606797351000565549381224575483728545711797393615756167641692895805257297522338558611388322171107362265816218842443178857488798109026653793426664216990914056536432249301334867988154886628665052346997235574738424830590423677143278792316422403877764330192600192284778313837632536121025336935812624086866699738275977365682227907215832478888642369346396164363308730139814!
 2114303060087306661648036789840913359262934023043249749268878316436026810113095707161419128306865773235326396536773903176613613159655535849993986005651559219367599777179330197446881483711032065036931928945214026509154651843099365534933371834252984336799159394174662239003895276738133306177476295749438687169784537672194935065908757119177208754771071899379608947745126547575018711948707387367858902006173733210756933022163206284320656711920969505857611739616323262177089454262146098584102378132158177276022227381334954104810030732751077999489919779638835307344434575329759142637684054422647842160631227696469671564739990437159033239065607266441164386054048388471619121090087010191307260710441141432419767968285478855247794764818029597360494397004795960402927462992035720997619501403483153809477146010563334469988208221205872815107291829712119178764248803546723169165418522567292344291871281632325969654135485895771332083399112887759172261152733790103413620856145779923987783250835507301998!
 1845902595835598926055329967377049172245493532968330000223018151722657
57875240588322490858212800897479093261007625787704286560069961762121768454789964407050662417102133274867962374302291553582007801411653480656474882306150033920689837947662550365498228053296628621179306284301704924023019857199789488368971830438051821744191476604297524372516834354112170386313794114220952958857980601529387527537990309388716835720957607152219002793792927863036372687658226812419933848081660216037221547101430073775377926990695871212892880190520316012858618254944133538207848834653116326504076424283908701210151942319616522684220037112304643006734420647477180213530701240988603533991526679238711017062218658835737812109351797756044256346949997872511254408545222748109148743072598696020402759411789425812818821599523596589791811440776533543217575952555361581280011638467203193465072968079907939637149617743121194020212975731251652537680173591015573381537720019524445436200718484756634154074423286210609976132434875488474345396659813387174660930205350702719529839432714253711557!
 6660002578442303107342955153394506048622276496668762407932435319299263925373107689213535257232108088981933916866827894828117047262450194840970097576092098372409007471797334078814182519584259809624174761013825264395513525931188504563626418830033853965243599741693132289471987830842760040136807470390409723847394583489618653979059411859931035616843686921948538205578039577388136067954990008512325944252972448666676683464140218991594456530942344065066785194841776677947047204195882204329538032631053749488312218039127967844610013972675389219511911783658766252808369005324900459741094706877291232821430463533728351995364827432583311914445901780960778288358373011185754365995898272453192531058811502630754257149394302445393187017992360816661130542625399583389794297160207033876781503301028012009599725222228080142357109476035192554443492998676781789104555906301595380976187592035893734197896235893112598390259831026719330418921510968915622506965911982832345550305908173073519550372166587028805!
 3992138576037035377105178021280129566841984140362872725623214428754302
210
90947272107347413497551419073704331827662617727599688882602722524713368335345281669277959132886138176634985772893690096574956228710302436259077241221909430087175569262575806570991201665962243608024287002454736203639484125595488172727247365346778364720191830399871762703751572464992228946793232269361917764161461879561395669956778306829031658969943076733350823499079062410020250613405734430069574547468217569044165154063658468046369262127421107539904218871612761778701425886482577522388918459952337629237791558574454947736129552595222657863646211837759847370034797140820699414558071908021359073226923310083175951065901912129479540860364075735875020589020870457967000705526250581142066390745921527330940682364944159089100922029668052332526619891131184201629163107689408472356436680818216865721968826835840278550078280404345371018365109695178233574303050485265373807353107418591770561039739506264035544227515610110726177937063472380499066692216197119425912044508464174638358993823994651739550!
 9000859479990136026674261494290066467115067175422177038774507673563742154782905911012619157555870238957001405117822646989944917908301795475876760168094100135837613578591356924455647764464178667115391951357696104864922490083446715486383054477914330097680486878348184672733758436892724310447406807685278625585165092088263813233623148733336714764520450876627614950389949504809560460989604329123358348859990294526400284994280878624039811814884767301216754161106629995553668193123287425702063738352020086863691311733469731741219153633246745325630871347302792174956227014687325867891734558379964351358800959350877556356248810493852999007675135513527792412429277488565888566513247302514710210575352516511814850902750476845518252096331899068527614435138213662152368890578786699432288816028377482035506016029894009119713850179871683633744139275973644017007014763706655703504338121113576415018451821413619823495159601064752712575935185304332875537783057509567425442684712219618709178560783936144511!
 3833356491032564057338986671781239722375193164306170138595394743678433
92670986712452211189690840236327411496601243483098929941738030588417166613073040067588380432111555379440605497721705942821514886165672771240903387727745629097110134885184374118695655449745736845218066982911045058004299887953899027804383596282409421860556287788428802127553884803728640019441614257499904272009595204654170598104989967504511936471172772220436102614079750809686975176600237187748348016120310234680567112644766123747627852190241202569943534716226660893675219833111813511146503854895025120655772636145473604426859498074396932331297127377157347099713952291182653485155587137336629120242714302503763269501350911612952993785864681307226486008270881333538193703682598867893321238327053297625857382790097826460545598555131836688844628265133798491667839409761353766251798258249663458771950124384040359140849209733754642474488176184070023569580177410177696925077814893386672557898564589851056891960924398841569280696983352240225634570497312245269354193837004843183357196516626721575524!
 1934019330990183193091965829209696562476676836596470195957547393455143374137087615173236772042273856742791706982045499530959188724349395240944416789988463198455048523936629720797774528143994182567894577957125524268260899408633173715388962628896294021121088844273765686245276121303710173007851357154045330415079594477761435974378037424366469732471384104921243141389035790924160364063140381498314819052517209371039640268089948325722979545640427017577229041732347960736187878899133183058430693948259613187138164234672187308451338772190869751049428437693250249816566738162606159417682525099937416728839517440669325496534031014522253161890092353764863784828813442098700480962271712264074895719390029185733074601043607291909457679946149292904279816877294264877299528584346477753869069501489841339245403941446802636254021186143170312511175776428299146445334089209769616990983726523617687456058947049681701369749095230720826828878907301900182534258053434217059287139317379931424108526473909482845!
 9641809361413847583113613057610846236683723769591349261582451622155213
48792441450417568480641206365201703863301295327776990231186480200675569056822950163549319923059142463962170253297475731140942201801993680350264956369558664259067626856873721103391567938398957655651931778830002416135395624377778408017488193730950206999008908993280883974303677365955248913001566332940779071396154645340887915103006513219344866732482759079468078798194250195826223203951312520141099605312606965554042486705499867869230217469890095478507256729787947698888310934874644264007181831603316555115342761556224054744733780492462149521332585276988473362691826491743389878247892784689188280546699823036899397834137475870258057163494135684339293960681920617733317917382085624364336353598634944968907810640196740744365836670715869245211829978938040771375012908586465789057714268335827689785547176871844277261205092664861020515356428406323684818072879407171279668200607275595559040402331787494473464547606281895415121391629184442976510669479693540168660100551960776873353965116149309375709!
 6855455938151378956903925101495326562814701199832699220006639287537471313523642158926512620407288771657835840521964605410543544364216656224456504299901025658692727914275293117208279393775132610605288123537345106837293989358087124386938593438917571337630072031976081660446468393772580690923729752348670291691042636926209019960520412102407764819031601408586355842760953708655816427399534934654631450404019952853725200495780525465625115410925243799132626271360909940290226206283675213230506518393405745011209934146491843332364656937172591448932415900624202061288573292613359680872650004562828455757459659212053034131011182750130696150983551563200431078460190656549380654252522916199181995960275232770224985573882489988270746593635576858256051806896428537685077201222034792099393617926820659014216561592530673794456894907085326356819683186177226824991147261573203580764629811624401331673789278868922903259334986179702199498192573961767307583441709855922217017182571277753449150820527843090461!
 9460835217402005838672849709411023266953921445461066215006410674740207
00918991195137646690448126725369153716229079138540393756007783515337416774794210038400230895185099454877903934612222086506016050035177626483161115332558770507354127924990985937347378708119425305512143697974991495186053592040383023571635272763087469321962219006426088618367610334600225547747781364101269190656968649501268837629690723396127628722304114181361006026404403003599698891994582739762411461374480405969706257676472376606554161857469052722923822827518679915698339074767114610302277660602006124687647772881909679161335401988140275799217416767879923160396356949285151363364721954061117176738737255572852294005436178517650230754469386930787349911035218253292972604455321079788771144989887091151123725060423875373484125708606406905205845212275453384800820530245045651766951857691320004281675805492481178051983264603244579282973012910531838563682120621553128866856495651261389226136706409395333457052698695969235035309422454386527867767302754040270224638448355323991475136344104405009233!
 0361271496081355490531539021002299595756583705381261965683144286057956696622154721695620870013727768536960840704833325132793112232507148630206951245395003735723346807094656483089209801534878705633491092366057554050864111521441481434630437273271045027768661953107858323334857840297160925215326092558932655600672124359464255065996771770388445396181632879614460817789272171836908880126778207430106422524634807454300476492885553409062185153654355474125476152769772667769772777058315801412185688011705028365275543214803488004442979998062157904564161957212784508928489806426497427090579129069217807298769477975112447305991406050629946894280931034216416629935614828130998870745292716048433630818404126469637925843094185442216359084576146078558562473814931427078266215185541603870206876980461747400808324343665382354555109449498431093494759944672673665352517662706772194183191977196378015702169933675083760057163454643671776723387588643405644871566964321041282595645349841388412890420682047007615!
 5969168430389993483667935425492103281133631847225923055543830582069416
756
29992013373175489122037230349072681068534454035993561823576312837767640631013125335212141994611869350833176587852047112364331226765129964171325217513553261867681942338790365468908001827135283584888444111761234101179918709236507184857856221021104009776994453121795022479578069506532965940383987369907240797679040826794007618729547835963492793904576973661643405359792219285870574957481696694062334272619733518136626063735982575552496509807260123668283605928341855848026958413772558970883789942910549800331113884603401939166122186696058491571485733568286149500019097591125218800396419762163559375743718011480559442298730418196808085647265713547612831629200449880315402105530597076666362749328308916880932359290081787411985738317192616728834918402429721290434965526942726402559641463525914348400675867690350382320572934132981593533044446496829441367323442158380761694831219333119819061096142952201536170298575105594326461468505452684975764807808009221335811378197749271768545075538328768874474!
 5915937311624706010912446098294248412875202244625944776387494919978404468292573609685345498432665368628444893657041118177938064416165312236002149187687694673984075171763075168498563592014868929431059402024579696229245666448819675762943495353263821716133957577907663707645695702597388004384158058943361371065518599876007549241872117148892952217377211460811543449826654798725800566747240511220073834592715757277152185899469481179406444663994323700442911407472181802248258377360173466853007449855647154200361235933973129144585915228874087195087086322188372882628228846318437172619033057771476515641438223067918473860391476831081413582757558536435977216500282778037134228696887873497950960311088991961433866640684506974207877002805093672033872326296378560386532164323488155575570184690890746478791224363755566686780676105449550172607911429308312857612544819444494732448190937953690082063846316782250648095318104065702543276043857035059228189198780658654121842992172737209551032422510797180778!
 3304260908679427342895573555925272380551144043800123904168771644518022
64916816419274011064516224311017000566911217331894234005479596846698042980173625704067332821299621536848814041021944634246462207455756439604529853130714090846084996537678037932018991408658146621753193376659701143306086250098295669176388460567629729314649114937046244693519840395344491351411936679333019366176636525551491749823079870722808608596261126605042892969665356525166888855721122768027727437089173896397722575648905334010388559311256799915165890250164869614272070059160561661597024519890518329692789355503039346812197615821839804839605625230914626384473862960398489243861872985077759287927220685548072104978176532862101874767668972488411395603494803767270363169210073508340738652616845074824964485974281349364803724261167042668708319250409976153190768557703274217850100064419841242073964001396036015838105659284136845741191027364202741637234882145241013477165296031284086584197879511165115298278146203791398550063999603265912485253084936903131301007999771913622308660110999291428712!
 4938854161203802041134018888721969347790449752745428807280350930582875442075513481666092787935356652125562013998824962847872621443236285367650259145046837763528258765213915648097214192967554938437558260025316853635673137926247587804944594418342917275698837622626184636545274349766241113845130548144983631178978448973207671950878415861887969295581973325069995140260151167552975057543781024223895792578656212843273120220071673057406928686936393018676595825132649914595026091706934751940897535746401683081179884645247361895605647942635807056256328118926966302647953595109712765913623318086692153578860781275991053717140220450618607537486630635059148391646765672320571451688617079098469593223672494673758309960704258922048155079913275208858378111768521426933478692189524062265792104362034885292626798401395321645879115157905046057971083898337186403802441751134722647254701079479399695355466961972676325522991465493349966323418595145036098034409221220671256769872342794070885707047429317332918!
 8523896721971353924492426178641188637790962814486917869468177591717150
66911148002075943201206196963779510322708902956608556222545260261046073613136886900928172106819861855378098201847115416363032626569928342415502360097804641710852553761272890533504550613568414377585442967797701466029438768722511536380119175815402812081825560648541078793359892106442724489861896162941341800129513068363860929410008313667337215300835269623573717533073865333820484219030818644918409372394403340524490955455801640646076158101030176748847501766190869294609876920169120218168829104087070956095147041692114702741339005225334083481287035303102391969997859741390859360543359969707560446013424245368249609877258131102473279856207212657249900346829388687230489556225320446360263985422525841646432427161141981780248259556354490721922658386366266375083594431487763515614571074552801615967704844271419443518327569840755267792641126176525061596523545718795667317091331935876162825592078308018520689015150471334038610031005591481785211038475454293338918844412051794396997019411269511952656!
 4919594189975418393234647424290702718875223534393673633663200307232747037407123982562024662651974090199762452056198557625760008708173083288344381831070054514493545885422678578551915372292379555494333410174420169600090696415612732297770221217951868376359082255128816470021992348864043959153018464004714321186360622527011541122283802778538911098490201342741014121559769965438877197485376431158229838533123071751132961904559007938064276695819014842627991221792947987348901868471676503827328552059082984529806259250352128451925927986593506132961946796252373972565584157853744567558998032405492186962888490332560851455344391660226257775512916200772796852629387937530454181080729285891989715381797343496187232927614747850192611450413274873242970583408471112333746274617274626582415324271059322506255302314738759251724787322881491455915605036334575424233779160374952502493022351481961381162563911415610326844958072508273431765944054098269765269344579863479709743124498271933113863873159636361218!
 6234972614095560799206283169994200720548115253533939460768500199098865
53861433495781650089961649079678142901148387645682174914075623767618453775144031475411206760160726460556859257799322070337333398916369504346690694828436629980037414527627716547623825546170883189810868806847853705536480469350958818025360529740793538676511195079373282083146268960071075175520614433784114549950136432446328193346389050936545714506900864483440180428363390513578157273973334537284263372174065775771079830517555721036795976901889958494130195999573017901240193908681356585539661941371794487632079868800371607303220547423572266896801882123424391885984168972277652194032493227314793669234004848976059037958094696041754279613782553781223947646147832926976545162290281701100437846038756544151739433960048915318817576650500951697402415644771293656614253949368884230517400129920556854289853897942669956777027089146513736892206104415481662156804219838476730871787590279209175900695273456682026513373111518000181434120962601658629821076663523361774007837783423709152644063054071807843358!
 0610729611055500204151316963730468492133568372654003075098290893646120478911147530370498939528334578240828173864413227100029683119402033234564208264732762338302946393789983758365545599193408662350909679611340048670271231765266637107787251118603540375544874186935197336566217723592293967764632515620234875701137957120962377234313702120310049651521119760131764194082034373485128526029133349151250831198028501778557107253731491392157091051309650598859999315608636554774035518981667335358800482146650997414337611827777233519107412175728415925808725913150746060256349037772633739144613770380213183474473011130326702969173350477016321066162278300272692833655840117914194478087482533607144032962522857750098085996090409363126356213281620714534061042241120830100085872642521122624801426475194261843258533867538740547434910727100497542811594660171361225904401589916002298278017960351940800465135347526987776095278399843680869089891978396935321799801391354425527179102253970108106321430485113782914!
 9851138196914304349750018998068164441212327332830719282436240673319655
469
26778511931527751134464689055042481133614349846048490512583456832664415284897139723760403282126602535166939140820499473204860216277597917712347510975024030789357599377150950217516935558270725339118923340702238320775858021371747783787783910152341320984894234596136923404979982793041444631627072147961174569757196812392919137409829258055619552074342432959828989805292333664154192563673806894942014712413405250722040617943552525552250087487900865683145428351677505422948032747830440564385815919526667582829297052261276287110401348017872248017896840524079243605827424674430767216452703134513541676496689012747868010102951338626986497482121186290403376915685762406992963724930972016287072001898354236903641492702369619385473724803298550451120891928798298744678641291594175316756025334353106267452545071141814832398806072971402347255207134907983989823552687239509093656678789923837125789762487559904432288953883773173489411227570714109597900479193010467407504114353817824646307959895556389918847!
 7378134134707024674736211204898622699188851745625173251934135203811586335012391305444191007362844756751416105041097350585276204448919097890198431548528053398577784431393388399431044446566924455088594631408175122033139068159659251054685801313383815217641821043342978882611963044311138879625874609022613090084997543039577124323061690626291940392143974027089477766370248815549932245882597902063125743691094639325280624164247686849545532493801763937161563684785982371590238542126584061536722860713170267474013114526106376538339031592194346981760535838031061288785205154693363924108846763200956708971836749057816308515813816196688222204757043759061433804072585386208356517699842677452319582418268369827016023741493836349662935157685406139734274647089968561817016055110488097155485911861718966802597354170542398513556001872033507906094642127114399319604652742405088222535977348151913543857125325854049394601086579379805862014336607882521971780902581737087091646045272797715350991034073642502038!
 6386718220522879694458387652947951048660717390229327455426785669776865
93992341683412227466301506215532050265534146099524935605085492175654913483095890653617569381763747364418337897422970070354520666317092960759198962773242309025239744386101426309868773391388251868431650102796491149773758288891345034114886594867021549210108432808078342808941729800898329753694064496990312539986391958160146899522088066228540841486427478628197554662927881462160717138188018084057208471586890683691939338186427845453795671927239797236465166759201105799566396259853551276355876814021340982901629687342985079247184605687482833138125916196247615690287590107273310329914062386460833337863825792630239159000355760903247728133888733917809696660146961503175422675112599331552967421333630022296490648093458200818106180210022766458040027821333675857301901137175467276305904435313131903609248909724642792845554991349000518029570708291905255678188991389962513866231938005361134622429461024895407240485712325662888893172211643294781619055486805494344103409068071608802822795968695013364381!
 4268252170472870863010137301155236861416908375675747637239763185757038109443390564564468524183028148107998376918512127201935044041804604721626939445788377090105974693219720558114078775989772072009689382249303236830515862657281114637996983137517937623215111252349734305240622105244234353732905655163406669506165892878218707756794176080712973781335187117931650033155523822487730653444179453415395202424449703410120874072188109388268167512042299404948179449472732894770111574139441228455521828424922240658752689172272780607116754046973008037039618787796694882555614674384392570115829546661358678671897661297311267200072971553613027503556167817765442287442114729881614802705243806817653573275578602505847084013208837932816008769081300492491473682517035382219619039014999523495387105997351143478292339499187936608692301375596368532373806703591144243268561512109404259582639301678017128669239283231057658851714020211196957064799814031505633045141564414623163763809904402816256917576489142569714!
 1635984393174332702378123369380430128926263753826677950341693343236075
00248175741808750388475094939454896209740485442635637164995949920980884294790363666297526003243856352945844728944547166209297495496616877414120882130477022816116456044007236351581149729739218966737382647204722642221242016560150284971306332795814302516013694825567014780935790889657134926158161346901806965089556310121218491805847922720691871696316330044858020102860657858591269974637661741463934159569539554203314628026518951167938074573315759846086173702687867602943677780500244673391332431669880354073232388281847501051641331189537036488422690270478052742490603492082954755054003457160184072574536938145531175354210726557835615499874447480427323457880061873149341566046352979779455075359304795687209316724536547208381685855606043801977030764246083489876101345709394877002946175792061952549255757109038525171488525265671045349813419803390641529876343695420256080277614421914318921393908834543131769685101840103844472348948869520981943531906506555354617335814045544837884752526253949665869!
 9920584176527801253410338964698186424300341467913806190280596078548880107897055169462152287730901044674624979799926271209516847795684825833414022664772108433624375937416105367340419547389641978954253350363018614009515347669614762556518738232924685473569358028960115367917873035531593783630822486151777705415775765617593585120166929431111388635821596676188303261041646517148469793854226216871614001223782137797741312689772667129920259220174087700769562834739322010881593562862819285635718933849588506038531581797606794798408783609759601497334205727046035217906056476032855692762734951822032361441125841824262477120120357763888959743182328278713146080535335744942976217967890345681698895535185044783256163807094769516990862471000197488092050095219436323787197648703392238115403634754886268459561597551937654101150140670012269274743938885899438597302454148010612359080362745852884935632515853843832424932526660875889083187007091002373771065769850564339288543376583425967506537150053335144899!
 0829388773735205145933304962653141514138612443793588507094468804548697
53581702129084907873478068143663233228194158273456713564431715379678180581958524648400840329099819437817181773023170039897330504953873561162610239994332597801268934326055847102787649010709234438846340117355568659035852449193701810416262085042992586974358170981338940459344719374938776242324098528327622666049423851297094532455862521036008292866497241749191419889661295580767709795947953060131191590117739431042090490794244488685130868444937059090260061206494257447103535476578592427081304106185462198818300906345881870387558562749115873754210646679513464875867715438380185213482819158124625993351601989355951679689328522058247994210345127158771633452229954188396804488355297533612868372259353900792016669413390911687588039888288692160023732573615882071635162713328105181876021048521806755266486739089009071951380586267351243122156916379022773287054108420378415256832887180469879525130732663402785190594173389203585403956770356113293544825856282876106106982297214209619935093313121711878910!
 7876687204454887608941017479864713788246215395593333327556200943958043453791978228059039595992743691379377866494096404877784174833643268402628293240626008190808180439091455635193685606304508914228964521998779884934747772913279726602765840166789013649050874114212686196986204412696528298108704547986155954533802120115564697997678573892018624359932677768945406050821883822790983362716712449002676117849826437703300208184459000971723520433199470824209877151444975101705564302954282181967000920251561584417420593365814813490269311151709387226002645863056132560579256092733226557934628080568344392137368840565043430739657406101777937014142461549307074136080544210029560009566358897789926763051771878194370676149821756418659011616086540863539151303920131680576903417259645369235080641744656235152392905040947995318407486215121056183385456617665260639371365880252166622357613220194170137266496607325201077194793126528276330241380516490717456596485374835466919452358031530196916048099460681490403!
 7819829732360930087135760798621425422096419004367905479049930078372421
581
95453541837112936865843055384271762803527912882112930835157565659994474178843838156514843422985870424559243469329523282180350833372628379183021659183618155421715744846577842013432998259456688455826617197901218084948033244878725818377480552226815101137174536841787028027445244290547451823467491956418855124442133778352142386597992598820328708510933838682990657199461490629025742768603885051103263854454041918495886653854504057132362968106914681484786965916686184275679846004186876229805556296304595322792305161672159196867584952363529893578850774608153732145464298479231051167635774949462295256949766035947396243099534331040499420967788382700271447849406903707324910644415169605325656058677875741747211082743577431519406075798356362914332639781221894628744779811980722564671466405485013100965678631488009030374933887536418316513498254669467331611812336485439764932502617954935720430540218297487125110740401161140589991109306249231281311634054926257135672181862893278613883371802853505650359!
 1952741400869510926167541476792668032109237467087213606278332922386413619594121339278036118276324106004740971111048140003623342714514483334641675466354699731494756643423659493496845884551524150756376605086632827424794136062876041290644913828519456402643153225858624043141838669590633245063000392213192647625962691510904457695301444054618037857503036686212462278639752746667870121003392984873375014475600322100622358029343774955032037012738468163061026570300872275462966796880890587127676361066225722352229739206443093524327228100859973095132528630601105497915644791845004618046762408928925680912930592960642357021061524646205023248966593987324933967376952023991760898474571843531936646529125848064480196520162838795189499336759241485626136995945307287254532463291529110128763770605570609531377527751867923292134955245133089867969165129073841302167573238637575820080363575728002754490327953079900799442541108725693188014667935595834676432868876966610097395749967836593397846346959948950610!
 4903836474095046952260638580467580730699122904740898791668721171475276
44711604401952718169508289733537148530928937046384420893299771125856840846608339934045689026787516008775461267988015465856522061210953490796707365539702576199431376639960606061106406959330828171876426043573425361756943784848495250108266488395159700490598380812105221111091943323951136051446459834210799058082093716464523127704023160072138543723461267260997870385657091998507595634613248460188409850194287687902268734556500519121546544063829253851276317663922050938345204300773017029940362615434001322763910912988327863920412300445551684054889809080779174636092439334912641164240093880746356607262336695842764583698268734815881961058571835767462009650526065929263548291499045768307210893245857073701660717398194485028842603963660746031184786225831056580870870305567595861341700745402965687634774176431051751036732869245558582082372038601781739405175130437994868822320044378043103170921034261674998000073016094814586374488778522273076330495383944345382770608760763542098445008306247630253572!
 7810327834617669705442871553153400164970766571959850417481990872014908756860377835919947193433527729472855379257876848323011018593658007172911869676176550537750302930338307064489128114120255061508964110076238245744886551825810581403453201247547232690875475070785776597325428444593530449920700145387489482265564422236963655441942254413382122254774975354946248276805333369832841561386923634433585538684711114304982483989918031654586382893537991305352228334301379533729540162576232280811384994918761441413229337671065634925288145282395062090223578766846501166600973827536604054469416534222390521083145858470355293522199282727605748212660652913855303455497445514703449394868634294596584310241907859236802245607639367841662705185551787029040735573046206396924533077957822459497104201880430001838814290081730394505073427870131244668600927785818110409115117293748736278878749074652855654347488868310641100510230208751077689187815256227352515503795324448577872776170019648537035551676552091193393!
 4376286628461984402629525218367852236747510880978150709897841308624588
15226609635514018744958369269177990471207264949057372642860052114035812310760066995185361248627467563758962252991164960668765082617341784847893372950567390078786179253514406210453662506404637288156982323175005962610809219552111508593029556549675388626129723399146283584760486276270273097392020014322487075823373549152460856082103288829741839064788699232736913600488374366152235170584377055452108155133612621429118156153017588825735948925071088792621286413924433093837973338678061317952373152667738208580247014335270092438032669517421195076708843263464427491275589077468635821621660427413151702124585860562336314931646469139465624974717419583542186077487110573384584336899396459137406033821593522435947516262391886853078228217639832373061802042465604775279431047961897242995330297924974816840528937910449470045908649918727273454135081019838818646736093925719305119686456018557824502182310658894379865224320506773799661969554724405859224179530068204517953700434724517628935667705084902131077!
 3662575169733552746230294303120359626095342357439724965921101065781782610874531887480318743082357369919515634095716270099244492974910548985151965866474014822510633536794973714251022934188258511737199449911509758374613010550506419772153192935487537119163026203032858865852848019350922587577559742527658401172134232364808402714335636754204637518255252494432965704386138786590196573880286840189408767281671413703366173265012057865391578070308871426151907500149257611292767519309672845397116021360630309054224396632067432358279788933232440577919927848463333977773765590187057480682867834796562414610289950848739969297075043275302997287229732793444298864641272534816060377970729829917302929630869580199631241330493935049332541235507105446118259114111645453471032988104784406778013807713146540009938630648126661433085820681139583831916954555825942689576984142889374346708410794631893253910696395578070602124597489829356461356078898347241997947856436204209461341238761319886535235831299686226894!
 8608408456655606876954501274486631405054735351746873009806322780468912
24682146080672762770840240226615548502400895289165711761743902033758487784291128962324705919187469104200584832614067733375102719565399469716251724831223063391932870798380074848572651612343493327335666447335855643023528088392434827876088616494328939916639921048830784777704804572849145630335326507002958890626591549850940797276756712979501009822947622896189159144152003228387877348513097908101912926722710377889805396415636236416915498576840839846886168437540706512103906250612810766379904790887967477806973847317047525344215639038720123880632368803701794930895490077633152306354837425681665336160664198003018828712376748189833024683637148830925928337590227894258806008728603885916884973069394802051122176635913825152427867009440694235512020156837777885182467002565170850924962374772681369428435006293881442998790530105621737545918267997321773502936892806521002539626880749809264345801165571588670044350397650532347828732736884086354000274067678382196352222653929093980736739136408289872201!
 7776747168118195856133721583119054682936083236976113450281757830202934845982925000895682630271263295866292147653142233351793093387951357095346377183684092444422096319331295620305575517340067973740614162107923633423805646850092037167152642556371853889571416419772387422610596667396997173168169415435095283193556417705668622215217991151355639707143312893657553844648326201206424338016955862698561022460646069330793847858814367407000599769703649019273328826135329363112403650698652160638987250267238087403396744397830258296894256896741864336134979475245526291426522842419243083388103580053787023999542172113686550275341362211693140694669513186928102574795985605145005021715913317751609957865551981886193211282110709442287240442481153406055895958355815232012184605820563592699303478851132068626627588771446035996656108430725696500563064489187599466596772847171539573612108180841547273142661748933134174632662354222072600146012701206934639520564445543291662986660783089068118790090815295063626!
 7820756143888157813511346953663038784120923469428687308393204323338727
754
96805210302821544324723388845215343727250128589747691460808314404125868181540049187772287869801853454537006526655649170915429522756709222217474112062720656622989806032891672068743654948246108697367225547404812889242471854323605753411672850757552057131156697954584887398742228135887985840783135060548290551482785294891121905383195624228719484759407859398047901094194070671764439032730712135887385049993638838205501683402777496070276844880281912220636888636811043569529300652195528261526991271637277388418993287130563464688227398288763198645709836308917786487086676185485680047672552675414742851028145807403152992197814557756843681110185317498167016426647884090262682824448258027532094549915104518517716546311804904567985713257528117913656278158111288816562285876030875974963849435275676612168959261485030785362045274507752950631012480341804584059432926079854435620093708091821523920371790678121992280496069738238743312626730306795943960954957189577217915597300588693646845576676092450906088!
 2022122357192545367151918348725874239194108904441159599327600445065562064611646556654875942473692523369559930303550958176261762318495619064948396730020377638743693439998294302091470736189479326927624451865602395590537051289781634554233201149759948962784243274837880327014186769526211809750064051497558896502930048676052080104915378854139094245316917199876289412772211294645682948602814931815602496778879498137772162293594378110044480607976724292762495107841534464291508427645200020427694706980417758322090970202916573472515829046309103590378429775726517208772447409522671663060054697163879431711968734846887381866567512792985750163634113146275304990191356468238043299706957701507893377286580357127909137674208056554936246464126002437968454377733902647251281941632007684873625176406596754069362175887930785591647877727473927200291034294956244766130820072925073452917076422662104767303786316995423745511745652202278332409680352466766319086101120674585628731741351116229207886513294124481547!
 1628182079877168346341322362234117788231027659825109358892359162055108
76329808799316517252893800123781743489683215159056249334737020683223210011863739577056747386710217321237522432524162635803437625360680866916357159455152781780392177432282343663377281118639051189307590166665074295275838400854463541931719053136365972490515840910658220181473479902235906713814690511605192230126948231611341743994471483304086248426913950233671341242512386402665725813094396762193965540738652422989787978219863791829970955792474732030323911641044590690797786231551834959303530592378981751589145765040802510947912342175848284188195013854616568030175503558005494489488487135160537559340234574897951660244233832140603009593710558845705251570426628460035440282367876855098267816176552037579565548167789603892749835560879154117774942357340076416109329400389998219926725708695732606877497422480202330752518765025596842076069322998858757989889646074438178817008154889522651672283404527721910699141576463948523112679473086580319507645519767562895742888179681209002638714525785831527761!
 5109088631740243695680567873015235427804793414266495223833707117511265375503942372098784668049139473446530714079622597287130503077258714875570502582573466866613802351426056116197405543436548698005444879295970287590352258409782683598666446586045694241390729095266249932902973440568160683805726626057277088407073471496060064561454070734432782514087474275506722304845357006092214390002992981608211717047917614505191008132670375214930740567853311106058352912781007391749949197845112915913681107394055175208019630539350740248509553772500367054665162330430425087442324262404632115078997336929985407041656261041976700202415094892411856092409637604429612002364590706449770627207919019235964807048923636979860198283087284228564752353162882791324295524814447505521909672046080689545181712204930321853740627247421519740305769043602686360780792004776232429551829473522027244376339027721392087767065716241639751785859254426923428535274328856336850789651962072519416556061870370550218462845434257850383!
 0000953745182929584404649188386857934839611512971605816657450967036774
95836666693121881763679644943617130416037243050658485131749264055855194018005180908475211868224616976149243238319486434415908558011073070311201502243416073157929528752936835820397003389112114170685219366589789459503154389589015303827143001929589074149943592894083097077078362875914484037045038618966975811201852319231868659968038583812370329156207578835948780941688205531605128190152647592807574958154564221341459378167056992868299895611982353837157880480478704584175394665497690173220310890070303362911767308448450372145669644401469545173857434157810158618783839278552609399130570255575559060947051498093487773320072797573038245989466809680822221348485873822999281794090825665209581655472475244566743697594474686376332428904269776106791933910983300422310293728298798903209391092682836306173610173878123679898645149311702437128285882630486298884492207415640607147059137405524665756971870217355287245439427714809179364437650637861861324348635797411258520863459927803688792498354363298457687!
 6501650651153450086957212395075447856831736315571535270465242352597375134088254616096614407466755142268360319598010721524635510691718713357316854856312808578344356236709596509499469688206611851180860342028213318012494109915026014354500174327307936251130702982504994179942844511464793291545995559095878076216366685917910654359660652535253202736507259891212556868428020772464877220109966318295595529033933122843648644759735608598407609472983895424339326231532399189818522641808312963335463568748288634656185048106322888055967378445620009414656034992808794051153100575871295525719641115068503407737106043803712595755969859493620584775120263549473475347481892622541903526716144292848998575367406921652716300860606543737368235565886264863436891532180955722044567771373683104580755845296128328326063196297285279666743629748008213186279218690442843426307357607039996694307895081472697302538173756949227517953543261569120405948328609499923664122878812264191485048563280720664185570595203750303229!
 1689448942757830609091085241060140068327420558396977382315073499610875
87637042555649640868550719422563449667324306562592504745817627332818160170196981665424263787636014530359465384503254766749997373408356651381860251565202836373891710165454148826744480091057041861626268379711208861413572796110990882929702296921281809787989513915042709367864449831964201345668339087759430064424856230121246145116979219396344095080832292812942704365991464827499843759421130204182973084171788130903795585456032471708191953027714657945554755447542844344081393889086097760178573893075186619065050180771650018407443258540241843605011182429907023234172436745253653495947990633345407543718126993998337192184854187359798453489345922685150681826624900780293350126588249742262418853525266367028276624993498294887483310617642084290169230528996089786041300651090281798050405871076711790411302174827966823530019602202531855767898433175868063783599687916015389222202365757655815866114091993948615992091599175533417830333476431316350127053906970793265678124159064342847213602352182367412147!
 3312449994433415591527431593168747788253315509277033620290122259779480985539220006452716228085539827890658423344755282127651765057266326769114107503484587189699643487577513847914818363510062146681858509634888708145697672202016799119946241777668890791713686594596072646853881077878300216136827669702622345941873747673353799888440342704680304255169412715873932039844437460454781611305662517641275982118193966110185056288055594256606003231211618099462212930100247091334715068226843045868030090424286168202556214094608790006519109949557081581650582898334073946608445756578063669027284346201858732825292479650528668140850353851983752363745192562279549029055790703028395010485483592983454281448730435804705331508151050300152142811717539364913316617262123540552786330800208317705563029496359420165433309409417719632623411938710516157010179805355167937086029136675698609712412036858381295769530779814136570017476135696698614606849143969957383763169582460251334210807262171360194301808720988855141!
 5024163818325975259593165531865833117126857941527206612218422661411825
154
65748487831261034783454674925830872998544742120644509523324505087743149616655525179716802099172002640937492190756993689633028139164720896358177173555584859270652450486251641954055080134351032338981337830249770182275490638149996472333407961304146973947637265086927334710841568560843092131624043462986392084166005590459850649124350526476606760034444161818640367008377411410109432058895559865867007786367189694408962232137403411359719913313594655368544669236765258901210841377743248219181274784789228726489297003237187345615798159983483910041260105074696459943033197881063491392381249050306143340791832800406390709867259619709831126596014747372533052685371774214655400587392462372761736490519871336806772395257078136068668326139501432950947485159472466752720168431658660880751276858475554118438116901162200555211348448896066825922743131900796301158708467011765493539304656335622531124472779666900583119061610197266307397054253143981845737944948678013461821787593907699960202908396567728784690!
 5736401564015047696448993947541474608339918696889271156942345492651246645507792554028105037622035967530558601856492056062879090769453339208808849477828894851122154743230191383245562993881020614490266876010207753210915684977830740859649857967152617010039475494539917698791323546550106407355816999409756248149967443278429202762644189793918158394562708173301582160225519659898769376164019861207466755048861110855726764507052622446130222335852072273620485057289238815884938754535229186399714380884061757286220950122506515863104258884134355431973729856217753072022629475552483044445340434888878581170341345342522354319407877972846760181583227097745180929342193189815812482832658950040704855206099893783900341914163044639163880549658786501375046341695655156618298878630705842306967660254053024811471007899784211830489010464056896539702885595530925558636052158957375114089564905844156774937105859648014315874614491250549253191164653821585197370093280194530320572628452658046046337816631429933076!
 6466465307605905489628887241897160602258826175775399220551315093772006
24863085562820493575752724995567089221634233983602565328731029194007041176919220850015116735670101958971001797019578120892910969417754369904368202563024054822625401905696507710581574240721496339560365270283334407305750073674562260584649886115101689612181119058471714461068719761017456587373796740697137423238753839030317200200207205928488785123911746471673743737923283881966201687622191346233893762599527025672138622112458980212130501407288904300322535504095866818724139369938193069148744717186646183111942603161664070377316487001864799600243044003242241809402278533309011509880870678268835317200767522553138008818780431690190072804831799287414125476123089606833095828377667688287578688683092976001011974533898331952588619630132917094385816615374171794496319177154312506959853481285684619377669894277459170918802520012749905559407289696594793331672243621567896776966708035229039018485730806275670867658627104769409203565593025352743418965927002227049233186829991560936413757004988537304596!
 3961527346293969749517480626964517930187199867885375814159757993148066085572325683743052827641756700502880404894298995809481035348339341449278859252621924155472319971433850866373209266327282435149336407045896838523456247443611752567669877675972234392063575074715529181027626140129924804228839902978799254185174991296302839907296355885798905933177959087690739056460256235335672215522594688382984528829229662751371624221729546786707158409241840841475575825393852409633020513497047406953995678979817278609204622868397357798151118681526598846069497589654813146511503926263777495137615572481951161198772503445647107385134359273555387124623755981938132142384415819290700463897716838872079163617414324970791096581627464297170728717251427458983568970955346268201690853561089448984071005819203021769451207717745887955195104733841847399807963067678858451675757299043069715426423834980098708699336709121083944535062459224323123482785496603746571880148929379451478705406079245759006012196221239287200!
 1721558866634573497140953372115165598575794172441988902616701610161155
78343150254603287811984240274846085107224066767787608552476177738330895026100643883505502054563243461678594519417956698749685152448838475136181806671083161655642093692705206118985172926171417144346555087063060635510129494003097591677991584260491971209543227026784326542965724032720887143219996453132025871096771651285496699625526986073117637182074988273997706019913620930832307368382064557325637659829125781314922242204279712414416299512659456397927593803838047826231604243253991328511230322470375619423217330478540785762440132917179929792407833907157579814268168646553829468473992058886316559349198678969628404473449680240770928313764081033522552427174041076735654244410044833474401017264410529547872963458986405012036080244511903509949744939736171815752770937802092366681358416362683192634067141827974213425462207054156000509596740456168404517717479527903532549325891204833857465900967817304160005210889346107687540042419778030828851812001733695591271377141950113613044097532791905048915!
 8324639914348353164868154857917863293512392555251021118278857369606027693130146966143344964230211438248370563353279385889526767207668897127443581563208810665014956814355879657690985776590276870745365927636497555344961730807816098710324801379513617036776345759497568620801399637455176242514778062872226597145548290676929571364357215267446898788941882075129222575650914355282887461419509786242752788157156640076372103780319404309584427254926998716923433189002214150311399876526068876156674021019720171960239086108297492763956954115303227546017387079562599357978530244347671639959146231793123998998692843797570249236955158729768385400522765149561444710597196288988815710941517170151811474351364385400511624620213117480079198374970010047136343252328157891135545045337190527506822915618500332846956792622620819044247334036250389279207158596003936315336884272437536679969864793474113319832861944146065392278409990314384035456504705678955202482717601187433564369024350308563130955905525039049273!
 1613311734922584644609024535079190184411299321699770451832853586480428
55682220873721361649058630325636891308410376021567992702000532235543980465311933977545904404507856802139846500969342954731026924994758646605809166998416068464608729394380827430828581747969417287299031101319267557389798409136425347969494348037770336463495847686298259010347072786121862300198660798778268424593383563891957020685352160321163523006498874460020017041305698536515466875202385937518328037285114327481169968369284922044738057063349661871124094783591586962685864358914135985425357768877493274363451475448864086881803036965243175568830020586077325695971608648541583446843248996307701137134467515693024488548207712413355773230694945806726784523594363150787272815790157307003317879685443627952571902362327461426286873273800949774112285623766321490465329407202619753907174042225953924288816455979657003095714138910693684503626823105398674375324005270153474589332567951494185453780882706345729596216908538353537038141811557381637820903256151986974535764641212549807600515614170729804699!
 4813593483150568116642793219335279822714715767340186088721518799669350252700757556099719882863064285448128275139280694702750148163289727314347348528529504604883271673978981563678804780443602109007320727369749344630499731442571560433133690387618100948873120713482710815889857483265854207510077953118326861708037070935927614936782530858340482351003632166378957426202550350116861543407379504516482896755698358935522020173679548075781909502697981271148703431190363112246128295303820512870430929471974594690821025634788995431771524379696211281224503426066399268852133079196370277780448857920573046990800923440186638113252097123096476059989947925759851008173039606822219975327301606582628527582576695078547260349382981335825281786706085126560022688717811253597829337347791412736284188656175920832879447410969703879854736984025458063294835022359393543587480223989760916296250110473931169449100666907230634693130169711820632535269244043840093724284428209709364856909468920087371753252557030543539!
 8287278123011398080938670154748858034456318713196026785487938933162050
076
75264112044390237583342724298699654786368534102848857370254725502365663418680919038388670787907208403619402164670121534837978151832826472578628815207101081499558980338118961569441756761340717046538512170902123777884333649651872119905407581877394397528364143953044245913903178813004188791887114553148267469987055587931040240388884083850687341625071657274185134952084963670955542450439483948045979156228282483787934152720362263369561805556371076814888893619275742659935823559431530887933052767558747512365065843969475604297192002319868024351719937868100361102312568364256079597410574153628297180046497748573718378639037039015397374911654685499716453941611216417610717145401765190565052520662277883129045719693205990241375395983861982603205495839501675552509644137118222561496014003023035407899209698677507867200038074267970530307167932296015648622808518403352350170608589512912223246117830253163628943946073652771336511631646446199099021224922412315168992767855863736315526002503488487813233!
 0019101893996167027314169996265119457426367619650024347371727290284622097983948710659822700099549188776961885054326532118022194442822284251525561411874340180419461413945147128725275923912559644373568339728963312676782349103563329612947191015157143115795490933903261411918654752376247215311020793691158487422058227473432017355850771224379698579654915806279502740977168861148076163151618553068566924571717692204436684331273989337941116297224516999854685622157024175947117699529165502116855001089857619346394559088262707753114657752238846343519376539734984802454976076024403080844890106838786972612370978357824516680117148598367940552904619826216566917202742628548239339600182545994092543081696910329784112340228856001905493427502231852947128296096939768137341977042781213001473286776057194059699792755124617184349569856417128724811834654206423187145518241528676305675131162677177350617511245463387994265291270105789956718057214365579183506917779307040757329043974949958224106238105149176502!
 3850418273009662017175094059080540895728375540635515221996582075735131
57075923615398639459211155864000988097552610538382568992721584785041746065161511337883360976012114848700556016581249247068256844272045472896309420306650445298646223594226008554991589149953606498428034579492757009497959450602378775019470624632394954957823082283066840818802521076639074230973720916285337176806216446935432317917855305833171420847988630340846572642693955700268576057539347888587094600582723230519108117514234912687336585960799891732928915896001815091816337400806035475200051511751029012299248709615459280262060761698272181029167315548929423740851967433079166078499055782101935713662435990883613859808516156417476946054785540081953530670803089697630452946868233210532878237438944115685176271711636309401479909649456354592950130739003626821007326370082356150691269643183351716254390304698989314261544263595113634660573786549512445747526216789547036289048304849968040377225134319373734412366185869445880640185840731476337929403863404359194198723552630156546080518686760680431608!
 4512845916042441326987912538560299159967278766195195053176488313469325736689464438255813910848620966374267457983130122234387258312442203309457145754147047929387585823899773851521352372389559664312235643262628601147489086817159281066872708400820337718692153523526926347226809082598988984002620815217828261122931311820866007099686036540981832680755824776706950410997586143624355216194535302920025466736799648504337313349520821075119925892663899564756985870790185612379157886437446903787150950011255021003884531192365296559946190047484662064234794232967006052900370917557818870819352214687142723527763255989808694872111384598001412384216382782441273654244674883338167971620112886191415401936712909478990264666443156098372961501968624228250672306166720943546571425149308642488778598682759588749065077260250951829536765181182368616944724360783764294762469226319498921964644068316928766161506050813846319415116202577907863071801231159458603896562526554223346234454507394788690268159497513116885!
 1436945210216883190446168629763325229863851818850049286935727647668238
55564636554496400631764828557578586661022855156485990882095868944436254698679523822686115969910056366082926791533753816066112247869531326158531871763885989377929188902998793879810003697307848959270625410484859315854323395683104239029907026344379787569185543408976440760130844481978626507947644083013494243583428188591525929347143631753374958970107287350127078898048163504567666769320755305184043244610074032167647183608370847506512693070766084982529900031785030585368213951273503863824605642510337775580986464339801718620814266307417259222600051109134268107467012901430165410106493321228379082751500100353001565459750832377296543969738204774162657106574082164996062622749618795334790706598897487177956433406484174564574790692517014949981009535341354890875483632757952240720698629102467170357925144176670388660990698572626058124082533622521899200041897574576531512300006444571593170177168863548333305192158205594611735771632113223393196532038619900511617817133400107057665268991970816920221!
 9464704323795356411866063920558609034457064151797782145054722278852987210197858846070047420028468873795844228949974333656271877991721137916164492541329715652879529532639759538535920950138633380507561369530899547584883024261962758985941513780515805025767540401785795852448831172105089277089227273431973823884687307168230248788688585510108073522781405371406520758107270848167263977098731455162646911423286103036932984330300323676162714264067587806731883971515002798163374779078775038307986759404591073921034587404219617034925808189907205961291586420202885734009114955238865107911371495334639763988183948804530075074740372280936820535430494951948332833470075161979008687285439962981575605891637624723069162871111137676086480323752459664930411753946136464337804671165055504670671836221285795048067165630427626711429999113487698447050370637900181096888629721757951732433802780617470496302042492916619171886243355599282093243919445711886321556320161654247055375938696624656334121541014032286990!
 9301591328858088312412428828763738727428380385907102927486333515030904
45328052597795658920554562434297982794134891756382400771612173324736428540160610044337641457220785921715591401037832020132133833096380778904095723810558829392796374381660686835195059277019515361601722158904287856784820682919441698718192862730827044416303962547130532843883379133747687358261221162583602728961624559041896770247453827583966522993712351630489833012421417455788591594256059792427721819908556279848605617453684478923796907975594555154646853163024462325674034895845462256744858202042457391994253094264224504202689038150152683602412559807597523648162809304891274615119623154611400822056396780658535407668688227542650381225999162076017089556747446524234452017661650325945665912966786324621379919222961458671422482492880647680321086477994100410060033906792752373625460277429600734788038356687522003482457694908456862696057715701919174892260635208129738797443835483286136939562450392976805783223402171676555917766840375723484409461762931288492689936871389838822271060279037990019045!
 5833600797392774109266557392331470259092338906543884223513241153880185592349561399302239196450504503693529270115663051533519186418648234424999192720272953459599063048723608041595760029668121116831723660381105428035914457202482564561057140554624208213435209481084171582895724450720635468160023051201408480543587425261710176818538835575587174154247754497722214192613155252691091755633319323222432185254221827291491598105836897025035228130021411924860142480680797536996477719394906804683552808347327610306049409733091690316783097934636611832784531868716462680738833656704566010423768505801395074436479639222841126979451347730049249878649656367949099291327125289776519181754279628060849323755208153611132403397131655043918879601983821385850007732424617788491875814596426423378897933308194881600401131265256356932446593984006368903152547229239914144743770696338935761926039189247936317800831026114195485436051577871600495578865657970665885510428824663630572077789022667770425126815719795332251!
 0763890368197628440286102588053923393294746720240885412764923864476021
611
62620824212991660362299184923782236300983478119522913821847326342285759120979805478285250591837983368017874112426447460022562414980691400740979721023278539575615128345806165411117926710427990579394497134946328950456512868847841871758020504583283874853137369113510255062010277534580943910500102183397324565047288947687929892594501987507671223637918758647201214966061151280487096488630562284408393694438721692120849200851558381251070741955187208093746942459731172811721051928903896370394235776862127668210931827636649840421249381440979598631142254364839654999834790843070217643855543512574368282281530322223808347679511135570148063182004532207237948918635721491062425269939946710153668462341051533381426847706275852035240992079720869914537301095516415033176282001969164115460268207236692552751418429969920539853433073068057372380504167197221127374050789272663406388506867344585607732666483845780277189114758013231055198784133652185190714606813898688671031475982646112937954395266728672759948!
 3359025974458786876849646268348443441413591771458776608807784535718393293719373932364083563375766884682111179935055410208556188490102016005056395416874510822060355541081766646052412496622442280454524321603203601946413560979200195902404979292367329892455399010198011214029086869992057589177718807414612220502472858571536753074781438973057178726836636015761361007722863196388526462351255380773194595635679653823624999265518043307963596211067455285214290262949826567553352731004687886573104724664933265679273313451229550591862329373933260860774513507753090157444382948733977960532284935830136183795862648032129736847481751647691366211036036950910666650517171150827820093278835872259839404630683763181180890442362621998812368268078579526219721668720174551747262781803268305854880397097704793483103543985590784355277667603313988460527150313885633246768892710459585193289513916782385773577265810047982563935519352005520408002870596782497393747886052835649359149783803779649600052124458347790017!
 5604246586665199807702883943851638095504304921960324436090340085174660
42962743097683871519459826447359402342482110447572911177795877313415536095275957089861258677145625239945007593802060935502489200847673322930857422225502064556902391265436635785242724290560532057540308210145123820902174669757976534751725014658374788480805377351504222240429576036137543248619965589193922050469998210629316096756517907513229607778575533102658584257608668676453552092774827556754517716995087894118059363052499449670123759800655349987396663953944170170596981015127193331184076792327185395398097640485278467438723164329100290654953086128333026640075801296184992070220025559721569575883761687843643467927558635739722535648841330601192895746428093578580811323314331152874821797660397125795289003640719892332813161164041693773662801325973822223742681891764895964227033803905929596496964821331144731667650419767811084909664694257170694570078712640144865224284694889761725674653522050616210730010192624831468212035516995015220073163840041320303332423121670826854689317584366304307843!
 5078592810447849266395265239871864417338008568169232134742975458326940216125333283790096064862778549412667951367404587741694559614076265662502990069226726787603658713793279604184883939339346926354341548095183623323317522937035210291464133127520371171667548720634738923293785107290295144629274154676194794274716691603049782928896147458702649979707920638724082502300642554499590401197410853516784440901880646293748354439614400353523310304041178457228902958180581032123743825898702747370401068377771592512645357065083009214792583498924751274536220061058545759973693135297078143742841340551954446721489415057452839171603715453082525558343202512542416624457524562964457910769717152147095185055003550543906316882581057850746356562047914667680556984384552027709969719889807233714869563567031776877637897432734928293439051455670607446079704769316462781214171381827437856146219708808702106421105737785147135883737738824076528045191427137488110559744718310093937519765980210024101251123081368260338!
 4744910877161322857660263938849284959898236565727204263572026374825649
49491262914191713064628059566982549360326132019252804346170439028926027993140436137026582012131285148815857311178210413103357288871817295262711200081475064026830464189887697478791731737038139991888242416994212152776045185956711909418073734793310997092831554681656395271010461137625406644958618385463898220899677832955011143149959368039822230371363295742321735744647342109741491743641994731958840052638726959231836423254918455955045343778467094704509594201202114220864191279049359945213739248711074323149511380429379365543637217263481907571135312709307952729522112479531498969908089466574769556512436056114200866399056099000380302506124236077503293413472890501316772809713162683495963409292243031195084878867103533520023712730202916592975252657039210421496349523857085605723434621576956985134068304548331545907536471146996824209102321431171769227738534770417794076441001301048596092707211320523185382227444870243327103987811479127546080836115687792151311310450083663631007517511025900280864!
 2771502096271366239740107528844546833161821150278926430729763557610551124620332480053105995111505431484829553432959830574272451737886527193000732321736237587327314890910945537402704811855571990516839387453520679708592118964078548950410940569965988715988633620779550452193215633612468530317470544394029418292635524015545231609868255313897018801539704596250169179664812501555932311482673005633835797260328601778474149600456972578349562058732873012451455576345230298648149544100907883529801207012654109525184606662017674204525736799469077190845378748206080290482516701766198207306183312392193535690040705215498939034465938809047507724169543651858075066490459443188862978723571603022481352204601090635214508280639749275512847694354996203399164488791974379020957188863200247502079102379073072963746326336674594275563784535691367345524014897125909480368566282321005003940073106632075257283147115192633289285206967239347175098295260212549476433019535743835092582831113391153906337661737307723630!
 2798898699857994501659237690675488379889294006051628261400481504694828
14033083916434248650939635458909132805951116334550365634824519150583179498083182728134795050772717335949663371882149192837871164639035669257799424573943554730449355593968480327902086141968150826064810924688543383329866390745478052636291615627988031878282707451630327863907566533621975063224248645769459753596673200603898262930000761251494798008956712452569559827585485769012463686594942242277271771518496417510715984163572072412243719680672039270647894278942171284264133427118318479441334606472431411501550985511712414668243312352062840657226926069047479196447297528322749569819632778728162595401202053807329582500497445930809782409529912965423318498798800771681631986086512088315867256506594414061844683749631892913745993421603484822883158289730942161473689255851699271553115588887600721703410244587440208443428273004673097955556668115013003388895838023146431382900260076322850347583078087889518031398102076278898517435347822512084675949743002443789584289568075266320362769629946018083494!
 1994912706559130840005862656399639110406851041282007153246256426371456355757694528492711263557719632506589654553648212545926335525729259528149934158787765156922311915102337344071699165647639820008969846298439977593853981121332181032819896994579261764935829748373387752352859464035138238230626945363458100319367250206982807384333411752831573143426398964163471270530347756991558003118159180911378802688385475769729233988828603230299770430666288695530121027270576339598976894102499684794981684201199256134807564404065594623837087236888125489491487948734808614168105521140018455170084444842948475507327366428272220633658240174549880829130188391401568090500008495465737300032747797209917507461785951579953202237285235920400742515225638616675620318839811761861196022162847431907970250367459282804678178536647393560035403827828184576694782337457113822121932616729501042706940952026502805228985909350023944908745626205345221731194095778301953605185038549614062182530618203651827337062111989390244!
 8897538635818099449181578487833652886543654224830202789241704968965110
417
27594750178122678581439174864942435730090917126487716059592097445811462955422310022008512052258976477811482703942677666427827462593951174380719861872226558650403002846914692786468003183603463817264057027074226203429718755580993868712404656223338914646583055430131550952851097263005080518826527268533537293733856918269371716773031611864749481042421512791591014606569795333133774095936749326441463702427524539335030130992833648540706984034399121245249275580299798824092066446404258596620088874191649877302754037292042158109378147131362262886666945474212449552849091492193371936234029433712557556998865296623645035351920267776379424820828605689362315215231788501452131321491469868548359447068658501098131420589267641611516210940535678073681008973424587293270521085357267638056422884092966588447779527954671073519329547471301507922084032823220442894467821839654711090211734072513972475735700855531274321999675125958256806323588088388436620326226619141493474043649800024739833209241183866742960!
 9269460701418388178110714282439657796388439864782313715424989472583041145149526872423618996763058816820846327437441210390552765218710735564525713360114558045585684558650432859917676519619327114349866540777451450047307271171479571222757201812886446440777517460328242317338533765298981044232240467724632047951798097157602580088576897513405948054826877288477629384645496040270370508539419092769937066804551719416040376351180185513657545109524703460226002074174282384948178225490636599208474903758320574467795910675566064077500934712981700581876940802799269046059498721176341519148822518670439557310017937100046657292180372848797971569227888839704198254565706428908985827958625659901375968750078569853420944399597152366767355991155709006141301885395600693305082611578831597901882912877765396964067539208084858229047556190518637549059417647208090848523929966365377746870985680142361370763704674236180292186795924769777652926292904179839275053432943384476533398501228283627985150263745427966717!
 7148419757339065728715430543215752354493205346537542382048448508846345
90853386677292538520444984413136863751894117684862613603681937363513393254080685226921474307329134467625293226408453308449386471515618139413634350364817794755097633925598827869036963238633034257944529229237752032874489020040532668139354752855017464531717214599508145561364692526650227115337381817597855795041988075485811336289154900903908060775415757361373755988018757307536248737001291223826113438103923437231353689889153374949378632498494176428141704528408296939917243232867725641504837657731144933521553852300178110827616363037090205259503779092534110470570046565251977925679331410886632640592623178893126031528575871642421190333798725775874290129037593626972723431489357257241883794186276864566775868692027601439805016387143520477673880900578928363381779738845734410014996643323582225792535171105948560789182401521998285226946509587631492471279520164467647402704689545435103069826179991402234072854891546806842095743207506621154487626644675798636443880232586360886918759442271521429650!
 6641613849638150279721730712659205782660027847181400342092656930703090445702459646757649018527813931481315092036410498459690602253144748229457070252704363040611144551422276693665012542523720743940182775250894143291521517059974545931259468212143510622763303318504339488951276720637291512493681935703191046935729052762887687825004850548005973230753265227792552419913159617911522069419685479187341566997810967025629939932081645071741734905643398652199866390557093521198524390679861502144862392843873982018760228547123039494596615725875096503200712476657593813721248011341535506167547203695791055974610671125417117453695430147191419937319722797169021161357262524311647228936664414262124385498136236949635712821160368544160710823177510780129830425381419089224920859536461082139564811320531607370777207605599349815034240640775123315121589992462974978454743857855952270892671024791991996450430401660056217629623401492821816115205046438140512010176327979026932712227012592708163045794086959388503!
 0885857777676988057712027746185837281858599701772111603710982739324147
19793766386484316000841579272530611640850151500165203002001427433763904187886226352747022589848494690776947476132763910525994056603823823716369435554706581748273071824741827263627240462399440284444736424586444751046902997652674973443569857085390578191599585996096750612830910194748865650751261397136329276415834913042083009508511004140745574437849278985760726105769741819633696790755188383220173443764398053682962687328518939530815972138409987536577466354932531139362559789543000911914267407538592549690157973419183710401699917900945678359628573224471479073204569647197863154908628412333251748127848288098487610221009742783475164627905539385196688956965108760628729574590889201702386720740106024538941519547393281424662231268923626502720564026430217769031895555206112711463146717038915773390065452869232720808111578757374991035324446693616535175221246886608059397380546894867556025887068710308118989220242174952934582195353009915613553607315909567346990699248742680019538217524621053498627!
 0106132159075726024080430082786835629319838427105219835472751176423302799589268727305311835580568752761240919742444763356809568748444104546702835236514152765627008043630974774537678098208734980384982599248810670297754949535228299516546559850687428317628520857196139379782850577901499623213922046234152416823803889446624267373001896543376476503634125182850951208886485629471439877956655928074916489625621859267154146921767683960545008216421626056106423144435798230691965780470574714846007296818237228797756049608915817868672936323790241579204728364697021031397518009784159855000705536493875321257496167487587258325992595761507433918622843798830134604454088081780968549119454119347026896505991986041099765321119658106296655005116183651706202928808776091498461673164426864197089230648463056754573887202476016525776085293772109335844538710740272925919152462676235381797869306421534013163370113573563511109814182112966221073672626961567267483077524887444841676657370240048508393702558385910122!
 6694835806839154547916601645691486305239359779324467255886717416048550
38711490317607553732194472830582219155807880752453696932744601747360524205864696869757706121867761972058749104516514271549542385392023252697512349546546309061329460056650728309872803387373515537522356318357025370064940926380803173746348540361146600048468762423108947237916500745179705248628467276633755173036873683856440370498066179092008317107882104981833155261485053735407503510822393924744563010969204227884473716968895091118573692689033665971852253777032962201670810655181267580094085251506847757921913893213809286961195312209050380181076587488368317882781425278626187966760682197703909326006729615127557125278643706989835444409613917379035454851804039733313748052358791095558304048153480453918785403824323690730431027406264177776265730103470338402112966908481804616249648739473458441215530258152221499458222499419419547256410317502114422808652302802213424093193932727678195990608112598623967339458989619071679777780259511631477576264028588262514815821643994413506196081175890461951158!
 5390826133549603880323713522245169681180597512189590028591797390866524495280407827130270045377437267855532504850397463757394646098408565893018482234161498658315034660821862236058019481145549035154742662660612950268784097547798140726823956931472487609828034508118938340409615343148630112486764653154787584549465222275318773560890835043837081120882441759938586466309397048117253004020305813409044745051156377054103501416686191248525269493348297851018111472329874045396127540222219095844050872306623268888497042234567000119497518597964940991489713853622794588740760990432854228127730581830402494510870633698694686740089481097539710090849476830410711529550638887652490545659994260773886347394552511448972036104793757254472396602354774812749416069835101314764023641949146105980556375704465155667123652568282701574452847602207817539723371640969862649205576687615644577446446649254773467297255570538828590789231759706768639824966294555601938731527103627201242931201764252246448031819544683337639!
 9461313836144570416088834222537155878358070161156027177541424723331527
813
56694009898004445823899842006407489589238923892752289147329455312404247755208380523795101239384358587754549990012720682866599985790984293038460073296238426290797218233372747669464015269204881430422739438838386988072365034008809524512726001361525704157749789546427459286696216415427519072078965765676204708762910259298887712834058061317182068879509627355230802280366588530930270461940061446449186278566424494208162102038327611169622442138639731157130118991853169915158165025834281284874149275360507355014927516496556894986881445782807241540090116176936589862811374592790322578489093397688160867085700299534572157942098099722053214575142715411220939886987456280116533207925455196985191038428157268351201092367995242906867995456830838859301366721852113536417244228370492060364815444971779988618739061970126506684370640425124459951909006226082179845415139874086156189246593084402747014710167254716016686017397691997662011119989301553540628177813282386798739883185480936514175269040502739923269!
 5322939310360456984252059471087760223210167746792793562530768337722069298099521332754934107640682936962565380979829922150200761906567133233307191753110953769674314458270474521918565656173056185321660425946455385616883759934532767382788781222315372811134173554517073553208276044077452544230785453748112596654635574596043270368542157386962244479609259367500830989140006853836358817787486427106882578787407992834182519771408422304894979155179876782746847540849289938647634983917539244593293129138080738765005052200666662727343844540498968011834325534999762501192176787558098067233241678261782570891163017980881955837910754011805096216010930804225701805492976467841153876914307088247531217231379403723659287710434554469626659999262339332986411371001268040811602769694022871365072981064452520165517338604686504062129245789271472274267638614268236764085164119476626514371013938556806427007782965968048607751794922121562917386716354649889853835751532497431583541399132213650515513841090309027554!
 3323644120225300770428211147141918147570961833137822943420725434103155
58281866932838668366072691638369677932010214202904681337049153438059246547114970835401227241006503949742164188669227447368995062528945027771898946913296346758587926423521163354647468642605485613157784036114314902695442750564803847888794329565560484433918406020270451468278242315140650702210485195920723120049337176738352370930885652643448419467734538241329688543063024778255435028195957175433268735831728279337741010263471725258000551089980879204274477838536427497206543092247960572140033066159793981569706136609839640552028766999172254724020639606096429945427059154600073536731549880773908300158133516035730111114109280154122806666705878555092703338500983115676285161649242550929283039087709889349460723490286585602054220670371568046350038260527637108239865979318483093676416563607907066052334341113779312161202058809514614377394768353883950472129452834986548086483788501946767694562326701998713318455453483736084512767180056787542358871951058956527978045378344846504681469516775381369518!
 4510308323903749657162143307963860154481614495523935111212189443023826954057860116467373664795652065872508159275305713134383569920048999618043254950205219555020617927799305642458366587216753519281750334499239183325623616265020814903557861244051834404038159913582717384337340452974499964059918656664153561242430800162617933750921429658088283221957057843171697946284551330968382460003698996180592987950660376071243272559753650882038636095880904003800176047507866974433258772321543832599839986439501144954150770097282265369583943808509128411041629096637012742498817616344101667423400506836167648232710388942239482025308696722292524340750602651298857635878137500851005688687432827471873232428984773354258150416258955023854489068496767648928297072811584351167607761726048913558510981478950842984983605593659371053202059979044369735340166287645320637188693821897801573219076299810361256838764838726985360129448160731761865806680596837338941198265008732624266960024090883207622611783999157440210!
 5842789845063036014199339283624554027683509989720421859620902016210156
51922358421194882020912378392755718560554165620545534719697866123505834896282128608208403497311998810772590454586337661085050958238503075128425964285974947159675425924034955860979643401966466721757237237070785184646638370671702995416983298869124728187680273812549629389876072234084657095098943201654876047933946794685134373263039223093317906873031699418007404800068725136597857958599478019949652342728688988717813516171550577839158713864040578956591823213708140058713808836523047167127182200601860881125726033986240354206752127690892108155226032930044410189063723659195711953030288248586847825648830052518126081035421351812247158400462751059244487058370954083531897521523610342040845076413767423473005882203432316047463304350628142321082948724090259476441189103223374049794740857827762204826182195142821798112437267662584689519510699867374022732300260261505970642152746023269994970061582359282822297832868401997290365378168160028841173067332449662838403243536504139753620550910521974909579!
 9860595726941384024267555967486377429308583140664803184453153290815321549434582880442937355680052766701800094788733588609136494945838526892791365594342881741864555941029617929958126080970645474650902342618403450108124033539000610734694120978386716277216137083614515110500772011704214057510295511491370255453350206814116524476917845869435403411879135071947286833389662476101183017004972618956118398981605390920089117277245282732995868083801073781314001876067250126926454645097673374700236767820135235673242624788804823436290099963301097657305710745086213218779682807434398964835524271448757305830321802494521092319912041786298321106456189823450495054397161803039568512653801492251694878479554724186382786275823278212993978207428675547109249821824468614795808140835500466875596261579061717590219271869723784547241129855757317937479535182955842991336928140588480421571538074685311302335494627214184400563239744587537727518071466016570650353750000780005476100367863699111323985862132218224624!
 6434350103632239859670172899284252341131543432629303907359534291441393
38742821872148418613127907162685826684720595466403565113327927292836704215333378156489787872434723165771081189058811592205341344776752129774635506551109801811454708921701244106349239492424226738349439407865465836386859700260199154168385586155789670127220023220031686195419702892475742166676680152480824022111156190982909528829342278406490395339672008649956965447075211846134340977857777364263165869169876274954188683133247514531590023354409517149140813592731911461920067757921585633107612547070933961164415088007272939456368492532718589155168814720960114154056640038921028118648545950411900558007928394716199676003018770007299166134878103899189799277933082603333383340579193386012599266354350647100912606346252385743463526847492979065780017287665968256219468541077987421844550471048251138993654279944593202443898985134425672669327861329504851702042670416810423988787766282835019312545495101087037669638120603127617996218893187778305204501948120474270520457321254873390393028668085392898551!
 4539518307016773725339156792769039073362485903433514761178705177976647101075024507681616557253954820094809110586317329891753118416036402195034635732195947558600832082926751237884955166725064922072060974120312931357435374521855454983025804156517986227801646893748172397133811236953637358110573939105369179739293431977518803252435258608082755374099972101540080046979927943422345447689707580313149065499764572719969962803326920908915583817603213989264488023769100827420906680800437399250454122368497194097746704673167378878520494165644737071325437283139540962318133764738488941218277568760582754721153484064111928660919806142282295524907588525871140721341401635238119989127477891313975746828093424728231102189843007024439996429064445084478802766865394635783597863301435743073855224801180578551630030594803517023052917619376680448974551900622981417402254687938598091422858374494142946684056784478629968730373668633975101391007984558831971893984042058517831262556099075164256666091448576606836!
 7937448065297240370993339629283434833266104136871344725962944171536616
832
56929874607519349004367548712450125173882289594264322061718377059516656649038896234159034283659246762389215431621094739650098692570895075041141578197189457994851682923997676852605909408476925555603209473017988926182294738346886884787742147478211246290050487616242097572295178607339598869641860539956912742611053799648648272882147298654479372705114310364153995043024924890389871904738048121737057256637134651471541312220563195699529710744845423257854093196070374806243288730574037414313238215835562671427568755755136182019176330108628379725855115674172305047190608736162770832629644295804827975636308237643616154555406169800458196446706678102433478459880692484772748952982620451694370037112019129535311291971380175955779745321797068998107869799671161406472583557313852803781447946186458216347452039855897512317136407974683851455920414500521772122914466992786476520100365397889970941956779542290004143845487143488528556517630802992516764442476821864906215121917234256868516006058597808966236!
 6883201283965312270307465481821199948225388143004016811445036211672024446204828296777616016563789757634979554872551080910578133942034727744847487698984192182808563041649260299176230362632250441829629652154385628760703742186814004738630945015910913254210303256135110757558287347865626080932564507434633723342240855858163385371530694587826920205239506727247536900139801149643165945829716486863220484179521964244983279488063134646201089139328705313455615037887692114592726850514677135599589063223865076477828269016803601306170856982886336353398216641166133554804037038210034458380815055830340179712082249390950385660958557139537463476283240421751934265668639255917743378325548207038610563301262376287698173472822425094615318907021508205042181039774894076572149908324785285459510024679597393084110627252254156964938923682735814346077275980334626431259827888944181849173802687044960388670718647708315647875891178035430820131865658203435407342292834745576965149868391503976141261336078948099755!
 9164824906255168553679482474050984649608568188917203699873757964398001
16529527027723722601935755572023263101476869284762636285189304849269092640985472493648181412831689383283125795662135988355445206674089584092314862575591105196220005030802042573700289966012413635564880280339995694656095885763219926030004685397559802876555831710706399750666047614867776356322611612715224267109673618402529108255244615388577666027796080898302837068778139849238125451717898757790676916513246031087551814796001216762016855436138875351111446464459659489862868500384293816775979619127299904591343960428362278214574384910806626737203981596833114583132775573719396476213947036948713448379653367208865076094944310674893862810166860809354876204062953142683679016223243442162500961919886528250184780750093092989616878935144048527844852101949729314912293366428383610958359117926697321050328658637196191306498573320866152431989177517561330725336906062894401403624673579168612419076797307215389609926091477800392182909660567805157424539481270515827865608617662808876754852826435345792975!
 1091037432431480490509972013400938712099679922667327456972199757397498352955663444532434557032626027829313689388962967691490051117916415739641516223459624143879984997239721062591045242665562829601459679012861764153524786433047855814962571113956032515036318374506194258790732974799065403378129323435496477095994159702169181036814733833330641513877132215173398409381746568333237521245212042635149480179573706485748255881296241114146469266177478173860156155696776808063542808133926222268057358604395739162738771435084847701866265316974888647386824309419601892875891202138727709615384880950656532073442058984978568214481099344327143794129234072975479326476182962040361443641127465240436917542835856614059594332610091323144864164204976494795520171710865170698122416084821707217101649482479807749180166663180760457163952518386095827183272086570529825589266492312740506731234877203497799829560941063603051658168190384801114703042390182045758372731652085922539947510938900121122194266654459086779!
 2691371154950789666576676546096288277775199570554507297923666208523507
81689434003204754374040076217990918813510949939669431342798599215806292704213826756214353405924672023502064258541096859551282959888016794748534882762322608988214260279669494883399735380911531026157275260615166467574723112673113045630210164427562827821914879246698975320978326529216825843304790854783365426975843307795571952000101207872401988134949844384367638270411742100369511690111801683269994661201008605320941579019288976139784035165111599346420444148276820545506341848306161979946027048964895243897025843417177319031533093214798054202089619512507592936490162781474077322477257322019135045680559997856927754305465787984285946840858678413411453824124072065675598264826257619030338341742518485385403847037100690876508085350864021762101015672829143567367711035116439783634404283023478073545669143817704745089458721178783915416653092472697951952686392823300371685067876207877548178391081973218290478799329139607887417683308186531819994065979267822132271345963247140952946307619739674998463!
 4936360975806725366155180785981453495358216014802602331762520150636639939135142877511535321241122515057065723115208537650284322101584061898257004704391718649072412089171456120249173004379934999420658663798578734606048061922811946433156292568671087969712349623640619373881121802073791598180109759080113272257843002501113788034957920439189928830051624292176003376410793371968133192067582991826078485247571177524201683493481941400539164639352182737104891500365804792597615834365135534943843191509214629308199501835916709425302654032980324967615843963471143532471437039221486178438282611386688552159846134450580330263691439417435599175378716668814004529689343519876527230084584655015656598952113011048528816939415686706351783192218559553050002986483254447747771995501650826588967139640889880567958066916065806094048513928010222769761561382608319076033245484652866146494294839667733008070732006751042625141429624471453687509706878506600593940265187786103276547028063257299061968975918873866723!
 0511012379493292597649574826255195927394471764009255618521185772443088
89458931304570975272586707145565142360341819890315195457218862114917103453059657845082618680743649773583175770086475879964322744548950078096671196162151367695085308923361238666283481102939804607435534272724428104903280756767003377271120949128434487450813568822156033050438835175410814830375344342084122081683605813262345767754279316198604543050444851055580041167943376713205581470587272088253604731064967931847963735278844788520587318286600656334932560235908889835377725079702005054144021055946107207649244091363372278973994663975123411788366312509006141623227657028541048506797449812718146764308414103002375256537304952767275484545999787163325331050619024021518146810014651262851039759839412882369862113183152477649679577744191332394798552871653023199869802398398473198178817133310344339890837958000051319653452338339010909704447143479426502628574031518152035465072823118385198658029362135224379754319380198343291431250275776675431686988860286567701350037258969644586868341764738783906654!
 4421819235857731078700231917445428714160030268283724049464360347876903573326188114310108132188552798589730345053440330372276915140453182361878321719988989055082908966241976585598057834142873730648098529078214594112649499219651136125677730769946058020640723918086690020175695641759552721135933758979116047598231558725356445682571437465856688982037370549704529071584697376355587060928012017697805329357967838079502279220010520167689887325410838931925090717428881081070862320755101848004176969682629039239983938116236638478713081932018555926786589807098502295373949421754246962535470439547324133924764852103761177731123138500161871304710647783932487585006361991196778775326807139246898440388265936051085465236922261927240349912103831622629724114408355686804998074604837135925207539017014469373916409286486391905375739329455653677543563294895308547919735618116894346944344364303087144425491060982948288158115956356299337794739220978511040672166448032053106709130375948843457873439847370765374!
 7404793080903438244339705830532695856299847938304808177975089019323978
819
64474728134854864856399736790769039302521285919509594533031379751852981866262011761260953213926339182718256327583059118937210691577643838872278422852900912261251408052315081202726247737066716153729796236517171183091817152280526537593373755812823486429693226678471338695988769158095081150499363373569059008428920070548252546176895416471077801175860714328662404483055236425937757985524486960807267305907650248851408147618917999896292907954060691650986275070330910088661199318365347811068950055323212323104099431566975712843211058927290756266529830683461268817435027634457348731308127878539668259480450244508994538506262228156572066562590807106009071947415806434289617313151570605581139989607656842772395481206246549279224664410867393017052678406522475041053604323508688152543821884057815229519878956064995606982745328922732703853758452092709242946673468959337778965806769512859044905739913079487625397989989468534486708427632847644098046534885512094360642889373837105351559587950751036819995!
 8600924794052205154880777749983061313790264128273715757106128173624978364745020722775619521267432735816854961196988825831126166950522240218811466930625749538470869958657459988789278684738719864383790480463746222816126871276345113094783166175997075950853325746028493740010436450345565804494429503453183381290785088833385837869771084982066510206279570766983344517793452718037691141020755747743154293290326295321149788262035159874125464228843952777954992895647543471058985851590055084900569690369399463805412744078272079588120610950182666750528291004286440115969091560260245872117456045510940768469797368274814597904045521904841801154566347833534380881534140372398178819077576306472338368480766171878875254440731865830501186475632030171398339007898754244110262777492594557872631516087487025048062038162606284156754299711008457236079436838831775697116071774760197736299860847092256124190334430386806075160778365027891666283609317675969553014936812797935466652393898654922082126132776378982029!
 4679958162439870593623917051175070504939244293712287520721004790036952
03530541747026881003131427531174456246407354520013033515441611612845306363822062031827141203471057333057060956104199977441294378972333619529368071162946497417467460616194428419577150642124491154067073122138420641412696715456643891594717779694935195834684336783221413037431073429174373437635441590737738077683355454522041607558324500141271289974101494705488647243415899129609228298624074551605891496310210005958713471920979723983683128011017526431868611183517017358675406492657915137405821629724201883751029772027692280780173235365852486610373552463605197417587182349087381977451996041351604688086082725590610482822257576746358191662903439070547597034809044004304333317413461423454127456779872589232409091510873059202427900149673701513477215142571480238781897278909931923211885180400304976289387311988687633977056903190741451762975055829507905515712897726034354672225187519472277750347806298881580276408830585887321140899356256544526325626293042854399332825503295028936990777054902947079622!
 0083902932214441126573820895685434478522535584373126933754793765994306991005699082156031450819886494389488679597736520237763805269495558714542706585174744459646823526941056851933737004914486237606597957437429493137628495423747696298423620404069903223286254828223354201652282912884434215751270602021538317845218564841150669394364364463390329462869215001200331737223159459937024404665464401070954637786273667690456425997758603414233762759258536312643708973075795526996850313206909183067913265420306400314824559862392657597573177591286253089465412516622840716337014979026738432530161901013729788646954034256945572630522038762942326480649962381630855003126516805447885568199731089679575544268392204851309190268824033771201778639860463980025603720606929534601536735130093516649047599690415348442284064946435783962739597969701199959968970550071398026714315391239146116135818340680876053466725530504223979280965662210911118477896503351900312819308140470647874036715555211403407030398907223233915!
 9423512652971711214491591287469696454455709228043473384101385887428050
72514932018367654986544261906876750303979569390242134374752592028444937070321982409508528743929412781595864754303669533654646504381229553856960187081463036000681022319353567758842217066271778752289539374973944984606881958992605790426632428181883297682570878308901643540546417536779752140149169816134993044910420427417299073183796985131245595860639919965966899610800504940072963970989595175746349501131523954054363842477157673057968997809351123101270006068315601347056168842081862105906584385468535226530994080955068645181964310455005698528640369722726449640722091072805065651759005363319425718826190168520911094446230493872762260130096650980181502161161893149917554486648451019396408924245351858629668535880723702520862903963751354424084167679610625407745354397187202203898292588150488174626321440193245912638467764538782149003218736052884016158146769340972434249669596797455129521524754130038382417596775542251548689034984675846106631594198812117971334525092753070140856142635030152714737!
 0879790229663568300178799028808419389392249188448911767008038038758887801697701113453349115348021065850875700255173632568820097595527487122535718255169787531509556908689854648379484303518706149231357340296313652791276152623061043140923956535229749326101802357414494002010757529248895892932458035188934833623226621107047222795178964311353322215133111281302699657056542366660712427360675833767835191012510994437030462907634661496449559967303212585228400681288632060138439153523932091157906047341393629732349275918089423365652609394831336481029064358631183082596587859784715023449078747678799566742485205104010399975710394022063069173474202089699175600528889873675939662936740172098219541833712823393286247731719643862566531455126992223677667770819864349679984152604519464045901639578960492791392910434902756838172684047052298140890671314915262504417545271011235786801298936828493391396383366078142291794554344916809706649131884537812025796215523212883988829483096025415451583015564562313284!
 5031741857697997991078955656799608252916553758612233838070069219579639
41983742611767676910050735750147104127391778359634794411592416074096491892386416231443150984337999995741238608455687906501796604659040119009310649145976455087441691709361597805467174658993017041375390468254441984930697739630336143300403226370441388424564853196000910240359148604341956718891985856156554657750890144317771286164568621900128459460742160742957104583140046201246390110210193236887462318746390639051846090824746612222586831716989063606402540489350875060019353832358477797777718415669271122400445516770541931073038836943879788904624217590046666091040163622700645067167256329813561916957758561333390398277599652250990403870932789862215954943799706306480709649417708005812270559330916211844004635893785632435864191061540068204787901621404457877173981029526071730009912179711375424333488226661867180593453500359794062610169455894879852873823946192592738300586578623690127192963826592639378195968777634491927813839152734685103171283501167754128969634017633688033476132425006547944835!
 5160024231256646080107867025860376099390800451756260090655554130984042735743005006687743313528206170729903389370532225467004205889640465239361428307918540416966678324070955958770942320094156109555343344349138543884086108248624289859619741256571704240067876712368593537227109156704060621943472602040994139547201317552449158345944274919192913502355834404187206974345886053833701858976572062254668638991474061713844091114054244489241812528058737844437599033702714432320785204641931475594758314291941697190629769790449882130801925875904858757010280498900927646674318174193127387987919086670564601741410451836547363921120183127264213529907507531674186041139085079174044172658009288966400350856182993724721368434131495692957040198130016060875412795746641903179733259392402107416767024235351742211828571516183297681422260730902963694871330880778555666323972833422527065650730725189030903950229751455450814134444281654143644104921750622706436286101757171120483665814970582463578007550456264537446!
 2805259328415678857985069010580452797562628572208304783543668131330317
233
23813526470752577952330152891663952865431899957317457801678267281460222640381899566937994842421098248974200882331114001341044095160930831309054655031595551547397748022146240676110527161375799862835439696657835524567007936049751876795850043478594444834874734552599963239258820104452878957672333911085208137994842347153189526128187510890512135465496924606655767345185717740511398090050749322800709405692065544287992897680913853288239231274264963790719799785249090304609585020328130118819189798753861277050983112679686721178100609428860334160740802044853244141445794547210546989291664998194159975081170839975855253125347930707237719482373833676065541850211333735753571160498408863069626498901511556298277922304333498449367839151985626850432520084479855462969126299788313029363064633704503315526375204047392241570728577799880296353289006984007678189697563540217661942944247537256498457226550678735909340572389793781914608031982711392480497941100492298143175949919931032808979574725337681460617!
 4543313264489248037013462642669263173424435742705177475650675563413336005917831376373759203890204265171691865422448413609465986362677543332217290972806772121812294501776642327167331091927523377242450590808589275655643441154844388895321327028560540600643524034011774394263831492694203667677312492334460461527922287117473732068207379504077538070248751397369748722080794183627245792671586058756843738256966015288450159363605799764879554666897963172764144582671409839302605844437311832195273578242992380530460979253217595294376466967178599565547975260104811160900192559877031603692890535464219693617900985472078551257259753257687803418428239419301167647127802001324490541706871940608748642509924900412437779902567236238752134487546868018057002677165904571741675093585374663278466147170222912775381648935814037542041316317966204626016830058358402780842508470610285632146763492164415596565399512441115272252098855763180788086283744439537336386628913943990459186935629799316913207431084912387826!
 9670817379838027600732835237130570383538812019217807455705392131250482
19766934063942802345335096980545219196416496966420519223222933252249809906809438298608239338686773954452673632194440159865904066528670206510049409786713024508960506363114749789754318632737637932022795300108771768440261821800385909060770293459786409329695112338532614945655859677117544246194620867417898814347780270237891838654750736725070123164595421042303682530154992729230497065006887445529088936646551481938480563745544703197171864227209658706300498343665718303094585252856298925461326079017237462336013820894764047217671021078363530632839185289426309708352418426880666397245435194987459495272368823511064759383705313614945233262990060613544202079008007844359185142381095406246359288007491747232601428291506647356469491490753130404119487461275842517254229933765619132283441361596884512305097922908093477806100012024307933675460695671886784758902916716281510479109848199687950537574761034383928929818347559135337283428884922853939659501645942296849021635769846036566677068849790614937895!
 8662389785139503019552520711594791624303805713391044123512797717425894997181320899397240945763050438176542023774937292923666640858263563047018894284713662179628077947581410647203968690057335883783238393851564367692910953212630953023723418877637759513255857198868415635114346544492134618362582001773911196356597362091748028951071191193121616150493566140019891540677191474060450200848900785210448984071558724913181424123745314739095859285491926195512752815404555548948605304395183055163865296351143585542678957884332247030322398462969403700363866705975518962282166849472155167994010237260527619206175045604966371707626384595300533444387899443285436630146414207515026765299871484148385924204684351505285892648354129599964190638362225500616202985179080799955171614289274332216280696351216290296505034545598002429203806611312249987574877781454333495781365580083004587905455655237596430899472829415658468980629431127259755469302188791273103530021686422763366103189051108633596398607097473741955!
 2934178507801365337868776791151473833252513002371910235875886798039385
52970499832183038998533373533151034580443402573042275868260972398342231501764080332731762263196756598977297183942297165227761967340857344413747591477931793339892435994058139603228134659247855875655057515942861161317673955283481508085185207154795143926672875105744138676971890208777611959245935929086383969620057686509962930381814549128073418097204032036336676649944391993626414522714507350370590760938575244000094748229713623772159263083602213915885590946140740697630129708656969066762442186183635520472790353317530936077977879847080239021859587448789607452374905628374741893102680628048174338130019822127770609218470081525232714598672343785431049783904364930586076453575602598382816254098496399831811297188143863954265440828008619305729179956888798818257244092308607770862635131360946309767740997028472766829666854290845405202291900303432247189820499382480607516387279456689408497366651622813369488285833953135050217053611181750210101696093737288217468389261806871887211712203206733649831!
 2812545726927631056482587901068575208080633928751364817583758109695596993384841991062692241136561171129547967778123862393493414008547053784583782851512327987308840937357211004586036545449453018681073293761108679782828034366133339780538614863594371635008771193119559848021828992677797694091393084926892397161087516259813646427951911630339179612919001760953221655734911037471209457900418602899221551175915683036249471608650518632279742956136519830351897142876022375071605999046852270284824202570096299382791478180154066416917925969650230616749677247841947414200924297729713888325116655222730338964447305270490241477275647154092376806641652822611221660551903510495321695382999570174114651029984898251643905699093945986820498552583128764456838984342109365894310511407555838492789369974095013891988212479916209888392435587365554523753623890641072663136573386887150143766765743928298320734613140394952617095308448965800565584630952329631871245183661663042774985273620234906785915576936220534724!
 2611125326389143025289376673739262860646099166425839998746474341416395
26777322469333134089892282135236716095628251349234859268040735518153607196567395027069135357634343767443117249084553776703266698841449114808884801324930258438177011878566635729353987811406465883694172838736570843375751044799123597365972434455742718384733620516409860393102195921211225720343651001396389064945296714205608908617698288316388283825229707658189611895457298258107339454017277497834540687764110778004407429296639807958026689312946890891500618618418921853041643322169492782133921182771902167520208059672627494630028053887779459621856830743842989256463024089063366760647389704968736267734714319346437826952783760286146583892789336232361603686965888599440717090143857650085623703570747288123004277647474703779463200055437274736584724026183902508185020399413109503970812481221077612832459563995640730378422829494179041799135365337060929535804128449019567717436326558733430284401481499075465103281813878210907214339837454150957218087233216393141184885404882476133156499354030311313197!
 1438856668338021766683608295032360405951367759271551656796802958597338036134406930781375730116130026579702426559178634319436264662301868725879630575563660782899695363498145223886600730147718791986416066143908057772551924487070829109767355499112006123175361847813176543955729503854529236536694133485621787892615474045615045230885311843897833507480699448020815830478029291395027421867886919801765554681814454430741911022927219318644407497903172599397713621809971117614689000137724070092348499633083203042973219675827894000846652350711551118348103201448352947448851886324133039606763958576623927274353864765533259261139160105897206949121604194384362769225020408360183481182715855343925553745823628255237262533143596996463666782559338210091759874444027185225129064251574535947961305271895994888478243531722562754131095998504427747535263888711892649770717055022010568232530711543895647583031225511628763968835143262728629815240755887995962098043946596889329519044901057419141998149858790000533!
 4896120691631117546825348582900768395376626414520527393607865138057224
150
68971855827765389521513585658976407301488111133738692458889098227602297339512441350751003872589482066478544539290551160492546556830179223635263775546268409049478003726847161026495088262069357484631643968978962700833763037430175619457389078848104243092855236310298355174517454466065297670819947432059951652915960087156521154612967354139573277516784434848645983391375848562505546017507922098835877193386013948967514833763802139034152904283626453763745808782815379047085445759676142103772361232961964022920228951469688114470582893098035700150410369484170547286922751970446946972920349519697662176641436203210987497172990814400037157392818915284083197422943733677477825870921871722529840693055569352258367862538776990371083298779795051691696299576070266248772561115321024522871797030937380056335405929310890187400495751330564575546864588192534437227170484110760458345052572429176844235610013945668245660428800047407292619165754409533650005445833313333486658197274927600124232382251718468930694!
 0857232461554239281388742202766169379793566344104503711559823675771431249127962314115016452888044094239005173464563780362939532778780163604410427591864202516771182359108124947844895488072585512574549607995691801297131720540384249096087363621351310975286209862242624187424357837677291264179188013767520032056332618924101861651303481024400685680860611048112942740900937527485785858684092297315779366886086199644290736157490533034510746792139213935734146937826784053313199235443303460719515520570066100116930106114645564891680500914500556137849404543693134859106184193301895454863852198600808200402863322268577928659474990069360751057802347420150353177373008364949891672893509093542120975207472725043666188006133495909306114071104645992447597175424019965407306540841697352392504156355003902644002922751551910862941367236000269412071278113087636531615224433516226691901231017136295013316980770097670312259233409954235276489844208910924390275648161700407217392725660242958371557106716854141871!
 3003571310230544725937706454206437302838147841910218688218466567138326
12826378069753098860829066330396698468396246747688511450649131518615524629479248111598731109079771152980588092092858162277065275677719539311203573194334593434733729518994157214722761903678004308795904799926642428196201630098883714884504398012244624556026604086161331997232849787615931712681400404505618966869098470823941370855181326199637688970212415231378187331300156011219956570354141065353563845243965564267272174345053170897086203476547586741281464071979228057446954068492795994590458209018731765866162517873312969357262487630182748053065600294624181015143131869024087493841124215821508373074128337310032226683957690735069881768275484817730499539131031846532783838656267174760018062788758049254008878403927985646496451552789273450200154100313190509627108096288952376898287265139140819451167195916663181885337312798227947809638418633081232493436827327088471684840823065106804984019899661418486821929237124322629328442483023610179839100426990407744799190837610211112396067250719299793136!
 5177067316450479862322551979702992566531510159660459669015088706888298252728640598951425047655646438613971390930202571945855825271392719811327758886955446292060520268767522136796682746877587452876077863449138269956348008254414413182534720494801421265432982967846686054377906133891020607653897467837990904198226428291713569800434724666969930157511495371520437403191810795486894324062290945862326245220966757449528566016465787368842465402656045769732900129583787420171151005742659749253328682586625702458378115218220127757607872278753625441767851681849197994949764910003693490955081945020556381122496479676624965078580232712368944622866979631971539024990109911767205329659201024327415836646285103519400541457190714863882469446903822456883885007824410392501635971537484905694524560531254037917603310165347750019986495805835536614207169974117331055254042055211077318581045894610462735580709471466835287835222442439519510959648019339972822544123729119753352333978820050032094830778066283364606!
 3246671001800870666288977157613180394453085177859979679161756236424579
91318747995295187367560206724336078627831644655047133342557745622032970583706520846148146180327955657231128913791506107878236724170631574279086027582680483282048253059594486535530533557360894366837877887790883577331658156656404633363117896557755386745135965474379288244327761776652997753788443212262675878961266383306843849005800577613730946043245733141597876165553722630161642335345100237463536829894247824255806480766433618052377415631403789337126999008115460840814240586928446408742389124577519366466994637359158441193177950085848065280520451386178972329910964611770976297169880547414864040358883927950040568096688268252678332587535835160050579458531484837770296761832636064913660564711850804916359111816805735686256767574836279625954231444084268694441780846545900109830083247012732767325186296528101198756674251237185471917419644610996381436922527648768652429643328488026710488044888015591064476982918336443256383798347892249924247347347492558557293151861103453413733567227462578276718!
 7551285229615719350186325172175999942277944125127694916659641176453311307678394358755701511268339788077823089327672921967390656501679098849598999718362018377246697916468158884004015083264133901702440286390700883106649068349767628800880971315772643341647052515364717730661392722405632571001397299899095593747730559636348560061598496125351831074504282805991011356152764613718732307405486443870951037623912931744139267996447473236182136331185858040699365837776065584149533283266028778546968943002292685310193430198737058717358218098006693891250766257084746595062899184683469499119620505628810062352434005024075121256597621835683455225766840491652515707584146144132895209700930687290227163705638590610592169694573513122969929258356753188344521095375701735632618166442459183071917325928053735184818309872294562621725404441898640397503845136061110062107180886892905388556538032123197766450079788089229139071971832155337660714688158886146659370802181184864094912441578015869647372390959585803117!
 3549396393423239812188385832226906227304369154796477329036203102315846
22821186608285896081690940900061896442134617344682521433863060864107649130309630386061561226947756727056616419832266128295594054185267009938944181452669981512196539671905138431353655032131380682424517348894759250312419248417525574038182351139026163553709368646884710152598668200629666043326715884702846725282736751363691589349857215149576969573937931293333878685870155864384721219088131194713370873382327500056239923744771721034792168999587001504698058956236518854268293985666712723058331747394679893879179844757263966997256515093350494496239329894118380951152202738593619916208931559373521319380127029848188296824569246640158910245224083340735294723767660187190835662573439468354704836224454619937129219945521607705226537983475106667694632555115664949116807052305281730869088268238012941254181467305845934358127343340746347109810169733784511370003614666147779737566767622118782539423603706549237225664751927002508248888604062234098115451133342239017736841135991533723731846766340507156896!
 6819381035854807990739961345388882685756724350459189974006910447041116287865267920106161324719998448237152334997836375230143135132826955395290108649420581860439615905305825975400157347529974982723095387057721000539641886970487452897359156879270799441658104944268793902227820026173884246389592211392638749541141959433002708467142370681281377822984874389225801960673229557664622256072650083204373463689206974257310148877783281459700550621125297094395513482069706780920457890090055635993193030074671042570179184746799520164509853815101539696173545527780430626775794877109799136259366223493706483705981684191440900869283841758136960770262652637398421792751865585534001802494738842479507635936962516581598005490110797072695324488613743499388440836614685920902013874629297290938453956893091552470325456494848342558435392750026839808919512438571472788922881800472797910594164937166417567650944337465409728901440632813018914386339280633443494240026022881047169997255339395707641070678950590524163!
 2902212917615707202813379630649859882322426710298264264548227932715480
458
76499212413212681827672309034755957930311584824894830141731719343104663561998293422660845241977274300089475751906443642507040115738131779480959953392691557988400547828953652395636741657296488046346305736737117215809990209894453733255406649244555657047977207914581230450618880669347731611549213528598081110964035642010320650313878329814443085638720657938940705623279586874460852840698062839012831994040317536981729101193027421648744601861963215944684538075570987221296475842610580437101441448910748813376672138354541424787136666538718207128484761707002802307713986200152328528467498051716009417700848306078163074067412915857045857980914354160929061349459709688925710567910055675290074750437994633821119211999009122153965563172633298735935838666500189702103768105655391258112742565036589214291019193567740079666127138230714081882841864932545670050478902357998346296652053903452672297367971122296475763842795337070307941563289311746634899628691051860472272688877875879795365481133097185257748!
 8362549950780896238311682394650511685470862613640217820445276226218509468771458466676588999479371028457027858288649455781921024708840980548840494289202758632513512032768369165509333757568774231103616106683832158080256433346454271722024956218060593586057783683982546182236449833541991908181754923962168710528049514224637589120113615979984380345538987436863794164300305130378895831279248454986839906586006407899335281278519409840167197297270699322133907184209551782475206802684636165397716512345743403044324661478177119961085537282430917112635195011915381033226170096078197922946035526018787669236212486362488512903544283973792325138955506401423913076654675381145244024706837652806414248720891345137963859994493516086771074601432747723851028474946663633461941723016077362976288977251283002580846877265301516820292508730013462199231565387199041060550741930363390184442397874423384998260696760570205353684564642727270348943923664845900245979494739486041667113357170281209226805278156883353132!
 6433175902994653857485218471097204771824805672156192313199662763782820
67062797786438225580872740355388755763722582999050673591541471494743726498397870576633115053342116121745340896541521554977462478886291183035260403687328220250708935308435234580815071956958892412605287571839649630550766286009111672617530072817388845881237359853726929926264266600217297690409322916645780080286157310501383405996052151802023374674932941095769139999676638521753746488507214642276836486091831973323639215924903900069678881210112974635837340525868785445702221462087368587279664145301762633541558879405907321222539467073782654675608107464960418043395795387211330646467992861229485713933856329761617850891155827661197902337999866357704749637968223993509579545082055051118930347793570244303528304428347024105904612246808113753997074287434351207241798271000829331913714192887714098986370546271136142170603160388771587341075626603462603469320575746363265306120596147410967864366328128489246217276990604400356483137270171843261107628690706296287678248337252181678495208701873888835266!
 8188068856155382102917938468812597592238717575687377663652172791829359888912481290484999654764459655545951531923019867342143962690524533746344986037179272054279681688929555879457553413146588128331024557479280502008666957169395778015341439067707468844437199722947314209624309846450531853965219060267110060566217145056523961676291582141003930733389291862567033371447241709240794482208195793496981155249255732540880883164819519948492518859797181791650718864975353694319576366026242617229242548005605957217481535593409253828324333447779423450894659468295480156164008840235503732349654987866217107668010625102744723405477738722823370632442234657130998335356361790451296645359207727938793927009546601461050918027326975551357136549094051709869143338343735386223956625316705081322123467368781442761854788305850058107851555678807693973242122087306618262009083050415060798786720780086387483147104679622180439475755630990862442443828090707516360392136097396719349408198200518930846341841851377586942!
 1385970025192357210352359781475656283700649893580619427747837673671656
86044012425353942546083747346222496082982724724021875373415104438842714089303290396631705985272743575722491980439640689369083307046069033634037611356692720080172060165258701662092465653183217835903483184668496336231773544630393379348923795838233801483524662070768884177564682572717136191483552894403611579624682534709995778541481648466735735611338031920658221354967829629458379489925909065715085858992403687772470956022520603041059454722357343076199202003870342440222349094967180951194798118123176621613281265741888792671780402385780055985292325615688246765163590483405880044838458230241998417624203975028214420332378136469561291816090880705226927447850235794371561428549610330999701394772146061745007882475417006791781881337307355387867960101242192434173987328976322809867622937453437289981172593008222324624375985400183726608738326471207255449130643364499510019478254452554256119854446896338619233410886119023663625200616717734072684448767087078633992885187857488689069559520575608065535!
 9723625548665768065997300269614499791386394913764334395117818656169724575011955527139876663310241993649615936734233367659351899510821050854558659024045243950149586570975168801772980081992225972528916152832643287133019120720262250559930210552005936427206720674365808195919838946862415075380275165662282604255844872369634231527370496473601247293747058235189463777287608586271395235999069223258703599107092753607717873127548150940351270138170794870400279463643368842771692401282640444753830021680605559739911153275674304250791689664936534610664903033926454798262450752752970355117029389549392605026116732805080636191135041503872255354805249503072592208321299167699393857896052191904022659329689320152805385584883267673657568583799428685543148848459878043199371078484089337419779080033863696659632700048007534107331302869582860135928766135088569413072689527062211944465709013500028507817008173296936069944780801165089977469838327533544622311789004142445612565923619067137782218830990126205038!
 7138637461107547138243333426066111911249960431197487300355784675385580
93194053656414387240871593070280022336202403420926692484103654139246032528151391060258069008679246947846415137742530490811333748592565903252108437870583690180305933853297001096960008742504481418458925985696534556980827237127625540048379270764101702087000675852444325775264579036182680360526238789966875626868457587113494826170278726420774053277917839660593024680537612528783622421631814764204764333456586924291561946174147929303267274533198796275905105825564390641279605996051629410558357700353656324285671397243309359986178485440971818172554477791409320959184050164998438612807378871881675478875650566319631976730470586489462404594926976645328510919874433735121566448881451325097829979985682830183029271812658757997491525942142606638449347618236694361301000778347450454438394059463825316417469621679637540394915211600835534045873007034167447688538635372417591191912573029628757699866983060284505512542557781304919657353708109753889805144982819585172096328879249759668785855762687283638577!
 1428233523466567958926948548919544874241952228540275810132725725884846046549518516222527214858969727263289515266100741919597178328836594559768570577262847855954488372407579162883631484906477914553487265755850111942264869962439109009594842195050118285457021898741034571838981790486364649082967773150836776997335515074170081220258053885245195363983453187617781231829233845161492018946787202174802452815919012422558651698747259021550762497491226737659456330761660211943484032397991440702488173434330292725710928657389894240649561810909797654985118424771133900728809299016301869411421261170343722496674766825988818337774891530013580023146024260472055275799319899409643161144298528316114869897317486423082626493416316845278016222869452176524878906995560991510960158794169103884595635966852936125991245729283769357494996000637454051029331252353719421156501331547537362809071428157731851185927633100144847811577305157277411636321762995559710643742787164040829830710463054191559937148153916125547!
 8112643743890397452120735757677775074211505082981008573752383518383575
399
33202975989157824880504120705904644073227688483087435345122645470626940975444513697572570891505730232425735672721085168470673901113721018280580460322479166007383269145415931982924325433746486049633965342248172938325475111403759384377805581002679023593384798958654860787419414168840730434173496904240691742895829113388157394322771015619624776355190240217127468627824721979967626629009191769556438105385692640185914761669543194077693489655590603130341579094455197560296624875454879091117532699370937126380672256751463060740233445983148205780778552538169343648053568079452045386888722145805202281371652698201162506165729737974807500297233921909750122049474941700659392967296028738767195222550630864385036022864184376624009174719032833908399536747468613101093275450853701032488164563575489558603679918936112978761908356737312274823781827018531064263096134724871436054931890377026133291202074118570203965492336859086327290034787222376598941863189523397575264482623228467814741678394175878779284!
 1341122301988055483719196620859931129697830338865167585446227913405384476083942355534490331633000124757996527616852631945329309596273131467261926618198321945664800489127240421657304136383304222664897851556264565532197114472973260582132148615280100972768015104029896520206386068600459816142852374999120852093472923079773503015339059776478342890747487781517348157362688287288473096086418866453032947600753309358538027704926007328843294119520864829711317593752534438895881425554838517329528360113779153290113357598117475908082955904750657658456860498951986993050662506017097078329876063046816009521097297787513601863205458955781800595875717191172323509157871375153991255150526069594760593315763509091797733208336136807194551564074953303571884225636931711834397325160573650377473214535005635956382624749363822470583684752142607279199552510745513042443383364054939700333371348800299785946575449427651830341211197021029987336199117764793004764932649152190991777236255805271272577992841862212722!
 0259472957836424156951838904261862931949850239808827901822770867087071
93539801835763828047217627026149024918463402523612956451260017975449613122087284837388331938574020189082817678502985052621563352750833939410145554721256376368546407909464765381655080500179673737431409908947484169143006508118210399009419171429055442874348691778082841271632833493337387601898051923823637302197650070299199840953953640819293935448443378672525707772959596138710071579214721837075804150054413498600492907499698937903488102082792506930057423601746771263982504447987947755138368875388820775721206353195865003008391065447149075492797115572184609015539457332518638981285824687769598008274176555499255652637871847498870632914943908030741726036758968025487183739999619682932661224121706771339713788092520170262301471782080063916213598205297385505558209594033326470891561955522356638062641257479134638253749259912880143126144362011718100610472258584185002863415621156884418566202827276600655362434165318617270547046018295233295364896057333074530647300773945817405562218010296586954554!
 2962321362680851935845002587357305866651956174463718111344775636102931642292999771284847399247914997524697574616765240133398871189935029199507259403541776788784275863173386202123143312232454999521022646419170590206372156364870441042698336333313821695884831981209369368359190411493162347872763662759215456841070241740529792569429819149817406395271447869051184234337195592612319193757906211785809093205884794836305795612156010565182075216489529364750499783642596878804760925999701865361111313604844810434313726732714932517640677959128270418092840993021480957457866349377922712137553712549498364613219105479011950805481637782317553188054048344745682348295528213063830359546479755313386037131657640783340885935945737671967408625251809781817880369860116613883471299915377112383415452874048995646902826030068854276345189623573554618158222214071967866843102682655738115194937131618234925304365477918872773039577291667603598906829849792753264457930205625004198215817833679758324582016703344016375!
 1943613079360668770605961550745818730074058855418570777129376539546111
23552017737452675365027712360102626371140850249375451997238811849720048529540760537575504863349851760393434036589529608607344805531229553356882145671180576047588419420583496338454216537702022628873203281426271924191134698071535062364060488010610176139643065506664667145977479275127501313346596764639606994405703118605608781228063289678165765372750629672835762639748283846472950189179856048249198500799160923239976671964767833012638465080880428311109850255466129686185565035001236106852974356644656198492092110126637583119546240112661948930083828438659999992833337948765982135588393330975965394351687477025420380520337338231789387828254304773685927377235747888656685873609256869105637744685113155947867365164849217860389204692057392137396597629342661799387598861055713847390158695380014400337739425963524869263689609087053952625109612729088737679822241074767848829902625921417206513544327199164599833303338205097023670379189129777113900021796464556817013808941825846295987689363592439379803!
 7012604370001954537532094758565668626186913776932365553855337366401811426040117126345320537251244688083925045538064254766280934506039108615119488314246477393594536113462632539790305310615515404757043183580698889116850882783575406260470081334894277564198811046150339108196697436038560732670871560877665885891060896072087471582697016905626687199268158483351741024109506049761333221030468320093162948196664178664108925963354038629241301524764041519532761824707235278977276957745431491457204054179953185788374981085050571576711105815852167055220110024031214717157984645854332489073410987610992956496761565447188062442849337194222747404498379859647558413348941074260833361521207750192980151294656720842115507638816459889661764643697603289243245105302982505122426807037312128083935122022554084151320294799980575137686493365567616784994713349269562577390784837182482831556792981972877868629036310560685800990722240215387661471364480196561481124538862716542334288756197979204855730192999750041758!
 8186220355084352693742241834775423575605346725549561541898838178560292
67690850613136595288039173555602456879717723106032174576049759502322562941963790630937955810449095876213591677865829539303065765309230704398675706257606714270638526055475959525321304780063261071076808321621001457946409776926800691390719372725319228526274289573895041376854774592960335922726252666683521707031894962827245652845824142546063037280407774797988541294635397999246474691335524337231830453538489080808931525181357684852728589173285917464503656120068829470503204716904153768678001929305063669577855088550542369890122298087791267061052356297358060222018294315807355521909375865774736264736992888812797829333934998697735232413759931554636311929820706537274786072589973120693062721040157239438426087560393263870639290221903085890987772201985593853726881479322882922369825904643093397881652299859711143887919168112556374983131611093190611563255289261205865159851493976127055624087676714060590627593678972863204655894075319271591295117018443755758535236978206034603081114085616222042904!
 2890528709348719387536681994211967871603447511656321704404160535134139017313668946388738555313863682433699759859706164570626704130459126437284989148356890455609093481011580923180730184599840879909046157493109861431331591978406063568318841950570759621032685084075395110460713677431506318655681175045684291098593609486346869593672277580773060728837988142468100342685874419533203422259222591131568718551298843839977181848177575276528687274786799756095598144332697980232246925174800848043735402673868444648250945683719869661983308898587835257932328100478498000016592407290314660281505647241103452031576527657717145051080460305129759639033690487822708390133104005385149373537497295161348972263979021198896344486620188190295769295043464723057845265200580679906453900495542748739603331115133434232393928153928575524189254275336899367076736032707695340715397783176932998580029024738091222270247003014973214830993493324188082111825695862329465185756368975416357468959866026651728710637317821154407!
 3283084095822937176862803685645159152570329027569036857129883127811874
734
59607417310097884731562838649486193104350166181226630376959372676458853838094304945302303026801421097550250389072148424600933987543991538384213775459724640986873792660279416620470866328438766273660878272150035989277651707445477065383961960283431028523840913387237856397953682578837058304894726634813482131719088833963367241231536397295203799561405420265235573318226053603015161076727016136677534720210899524060190190731071671157213153131399108734604994855887930555732907486675692499177914777762752572153315305919154375764020855624311494453725459568097025647576424442309047407014493872009314855661267386418994254949313631047596189330349094993072843240900986604296477641606362128947695172656741692210412679197620262917558530596160588359815094381398881554647395390022108597871859240596478027678892392428047732324168011508809942907513006728614972737850416001553809727869101165381637602995600199875677105287434179648634948759022843450810248452324285061945646492828833802467453143600766539393253!
 1690693471534111025909155950980999607771081924043400817401909049952241694593670841551263350446837423540829126465380354941695384687191594786448216907197188279045374175897865653963543641749642113833239127266085382956774626422043748613750869656038144115446781746318241578012548976258024056722181651902552564665510417840313993155273497012827464078379677343103957500116764350123239218721736939561572561209629465861258179225997122936015604832529324660590007467538289113588769660502304327546441577272041355353431069230209904095882802842492545660922550473678663353597767011475477937895122163950391748837006069208321431310565114032165914971605450331526087562443039751201627044475665497445082910844914275328651257884320143371916195074243458542671276811026007996977327310910874040713888398593020568547705681283700324106099488089120372337515691677129447677010573628517526922673867332490411057618836343343739931740573619353690777058069918700110387550682586512339634192984733096678757320329048370056903!
 3536216837286915868224849316458641309955612807613543158394797965036457
98442252939980325213460972862269536267247076289971779632763346141120704154148305304401967545816235986063466572733057403342467568253998855700384203956509771995410026837628297511970715692877805882319026171014758008973737834649921004305707615859532250733610872957027150743122979203137211031512057869458182420174183205651511753381284579981732961300097228591130828209090533147601196781850383675303470470005787483609975909091296303441827655051198429426117421250174531088376152772103209162330883357102085772162595099252986436418206894396569085647751243182903018353395109114675137185342463058517707443432161316913045445620729557791498890485478502949425186992301564204823672996782085432770817139937297136472855162369102809439490498095711147987353263361086154490921362107195786271826589846454595870090692492488205234351128687386269125293356955656244015333447567162409478118265711559547566993684235624999792277233328567847862452694981303829576715883682539034846167149680141385991940555979179178582819!
 7578481237247802296273427132738070171213159345402254416861464162064185495562201758027171741932960403072428557591403748752412558364868478265305790211293015046009300979113289391102092842221262887439723987929998722171268024426957043640826917512394728858097663173521903477402078301082500823068674816599291621420437855969070083963431749157040070491113309702304687661585748313508014447599285202072786040624690986245818371056631825492066663392868941642231681397853741745589835502398141347627568661622118636756113454018506123014505064146476620025479372737016911509105700588058385528775155356834613555088814313744985636377736943347307792236920232819512601988334853193084139129692103451156646155817184516091865304897119538011024852574989315864723399926745372521914878779978880756267375063872378056469764352686130677476116156403088981072299006136202913855386468368424583544342072490652694313192636306455791910328174622465230508681145392237903469993576181922838411783111273426609317171605472302748587!
 0001047866059835368762042349093563146793544370070867604441608093430388
96416912293846293502166110021076164054661453282613302509899295539192759629946278263263211656587431955173359427872479954828722781079314977711035342554381663505021820047559845719470764296782715877268483623611180659244515952829152301818089716722717634965228375068073131741445335093301055862157197336759105167204885674541572816321725939792701826776592787907269759586524444798627848766953949146101776057760360711075086603455755571296234540663775844877314065805021814441457012161388944294254301272614399603975154880968417538877870997710531568960577955363596700780699856501195536169958191091853337403661999066186774586536593782895158619216835838537205517181966990029062252442971964776076579212083499798148310842533800664605646546284410595975870105383783766951341441171157658015291972393283182374190724182705562114292481259500862193482545185655397012584064777459094161077898448667987879836035943067050826469850650965071424287984166501330336475959713294583569058759697058365984023752645595142841527!
 4309347600284805973744511548230400857745381944142354918783809292297831844140223844361123221688505624335418588432511544720643284962084563281194108270588318935428845436505484535633008842668569356364289020276692308486633611829914298726387988068299808612394976329510463591338269125251879466945089415396493327345497299448983629947399175474416471971731779872683943602401052166101498152655416254038545177952158400249587987974104952480047535581645441160796496743747671842211835815737673704896816576186466844739957457386389528495665189574478665977781950752258882987024789009640653185204742376952389335501218478599660074089650383859514701804072345776878385607580956164533921688489754259830599175376101323206354325344240488600003090822619003730634184868861438763736494178874012048260950512759863390509770242472529801758826392293870793673252211167057926441409085437401485304590250371696374774586071914054256943815611701443788844188830915922927192035841298716228668505324603894356500230734167083751864!
 5953680252758240520923744676573351270601601170349080682223272341214084
69596673325161565758066590243101303206411537511687407756787406035925878861719736349367711142654304847081133303231866339855094943143974804840787647767832770534880159671410169844356697808454878051823199575640739788317702711356439242044520333007609764367969990040958549556201313584805875374947256934033090917283239418369219324915186872354773939212756117946640185118001380750102777217130642042532655536114323907882035094537707508434889230102069364851728497612938332579316328040240236622477073584885055861960214818950756889614649864710858464453732949655233372641883832621271178272406932265715707864175572896145338291644891865204955272952633002810498231098573394308160225669817111505642180307494361107813613896822048773651856670209197871094272276503470633850855008421170940405082569924575628282627813751332708052945523221608454057654378540071799081276883669537497522864067146153456490112693874267114036215138204775875494285657227853366584872908691749510102375874976607230169518573650905794918186!
 9154204951481895063313672323360017919244397594016416771983594510693427217293483713315270825228587814764495406616826606632817385906468170848098019563095401910023030383772107483227813901168208258238927793613956120621621339157864079040962777743062394588711681359324124433710944830874229948965727049696689190976787295678568374918266228075947073087639094291791846467289893503816657160323834130048221490735573101147560439107642307049971417179272249889362511853771844565361124353668033415834710999978127504593107294920164004043873689108489000022065896894950988355454330344806346906836264269262252604805038222965665856445463817257872024223930603167450160539775516554246030743256914538414066770009334817262533785783695496880181971420758304790250454493294344080654706966709208196687180957451822379033311686660106588546461622251368075580728178399049938203254035222214791278735733792405058170479343611160465752035096499203009430633851515570103965436156004250209175408368025107569627240540070613073914!
 8399782154975269620067771746125375177474080770421469498072465669210313
803
65590139144631933785249560765128958847039568360052405603773226648488976759864722223687045726002513146533027894907366831754285279304364168449130901482297794441453977670005047645453944199744253400902206497079506577866762562579041678795171932282160484279042228145745555525850110505111853205128248170449340850065111058596796611348054315799010027116370414625588451469531501613765309863467935139830644217212539142104848401806995555589338646984470972207292044160017446457448578988521913325497133025482098021992094686705513088504112321598940306060776407088621530225283963061061498449297470451281206439250952683933163016535406892928056518715726578741194021747809172799541874118113737353482320492402854443728542414478667353172039728409992107533852137685218992027547637515508803238203451410449033687861055113974555644534413352805893314950724154536504253686358765114645577638528618422250037354433860841945720257808362467051613544121936052124926547855797901126581591993322554214733610252203564003582790!
 8575507305278835431594674179374264974074094794894477957316609623021732397288402601621550899074510246296718368591603789059816357439266727829502991817957028068636510124544515441318142965418452451978873052020028802043389552095212624250682073625164648296888315050959701000226437213534878582602533578984284992642598493826986555915745522772230447836700451292620325907284470070718264639429939710579650492402721513090902016322578929364662069079114189091709554858581709996939845824188862304346386468537094692019086644250014237049070605479440163636224484204946141454073340772056136753779947174346418696144163556429471591970959124572988939233815001041229439585288124290316381893911829364047567480132005483777642241308322733790168055134561187865263787390846029832484496777676526714460909842724092219442087290507772474227128491998627528840954536122442608122367302636241666463676956582340509347865011435452230172110431829674611812712477267475584183473918296468924243908358983041077861222164667413927458!
 0844109344670914076889081154804269904644766179037069131864316448729348
11624753142709479512183711895430801606136867423308652068568392614804784456647494574832329837112783484945756818482357381296729860250944563100213870768049043011088410435606595632913551363659537905774508634658418379378550213855073066062032361892026534379655424091388667805176486602355686801024443819982174081868308063265793445013660695883116352765901963710912216830217994317817811597562569334811817590163704539548800254386919502939484296333878802324540268683115920771472660964081472974256413523770713265586567292609352131356326973863345139232379491272741604407165332837276663606992078289885158189007406817883560033839550249105442191369494384025928975768041647987388754419071010073882502600250529371571205988217997519052515481351289265070350312953887973951968071463129797393988552240677107478132966112514244409425462058656056386484117697376509322232005813738988859893022336308095219342652281506753067731168349920030749784495333173923562877249889011049829135380994323467387064792939183829847365!
 0917415993442241801360907021853768394823719725514881388163528250823780875617730371859331023769015518148956680264510669556676356270331637550428218469355260793128677171630081522970525013994404111099523758782168987072283241554043785949364881659710601941701117753081977960061020610758095418438226377174415893089344024548077635898598386460044819130632918212125220072806340890562731361562825142597291169096962116740824716314518917473600695966991423080878338378686590159867022321428691570141424807045897219105420047904207261838945659167576624337481652334310131977778750626481447896237968544918333932544522632823898399552143508647239988246182346783334120349696963465231029709800703127298113002987487588451556284431013156099089461587840584003836145430627502838434516836793994311551940672336880332618381301906515931686201918396364388118286970411649458769422113657698149517318604394476819223940067014551279282540565303246423524190837891152091652075345011477513376176131603034635001583043241198303450!
 4597311154802352914726755652853961549825173221870281189147558219251097
51881474996270183201238664665544709627032211967352066825688348737596450725120796914516873963998729508929286150574509391835248986417115156337107720704371942989785258541065122020872198511520119682006685154950907756992161931680576122550841079956447357236211513844260591187852361111576674624616760589490884732188251188189165372941301847563650836229040968772707590630759517373446538123581672056998615449337441355115808285999797250700054256958448290421570329632969541837206112532778185078243532391872673797539010604218982133356800149176292763589739749151033610294485487554126594588308262730872974158135998785058970815642932415956520572243886015842078104750426281129044255263505482966134319834755788519322226718693036456672710264959940051166308663731727404454569497374874852110331775493646253806113344743108068326308466220393707731052442799951374501935266142352255141868055104005021438767785929901108592518674991313145000872583711669369824976994084161606242840630833289799716187050576519624049243!
 1659995151896649754750390011473989031896878326455784745372518045223597268776687624285075381661679248800082340903203480714652289022230806149657427044772212502661923714235626092912260182505837318119710390751753385771378077621317724528794791583171484322731473506837177881579852023035280059999869776669370082267088042043304271761036044360211957405318323977508253762435335992587448066952313140950826729742008271959187161696015340654578147571012432947034049890117240314562707007085891355513065947483050109267533105047676685100687279532443236896493872434914018868580217669706551588502561741520703150927265145873588577166907411895667629416813405784240677338866529843358282099209279600025605373161195748651729717114043583683023331026924475563496301826785735111056397494733570817580632987076680342130966827261284795060436152654421703635540658329019547411263216179414368623878244681088510060879820657196947315316887276558292548410060026288708470726414636981454676023069064848000195089152920883475200!
 2948330118357071474860460032318036646630113783461481020801040824162464
39862858027535254054148117877257844982440121535808832631115767938834439941674255267181270687048579050017001882766115402598966456382269528408612570000031201513414621462743588188113752159623550909618693482530381968085084967571308026522100175445215043882446963539135452229483822752193978161006308157139473475716433100288572011561747191922667719543692831282660439606992546372196029142537779739831674438120809721881883123622660338707532678942538559169182977283327312615508417484951235989157986019310463020408836581232828339328287752748597870536473295156141142985324610343025553130194964301167037928656376695698547963744374046951440475248627476738025589674084963027253885817383209577772704426596764502346241958872573593386155268081204775136402786059671489936812371201186212349054817129245481543023804103650148753567454311180060450042613078768221588514426730296208404822613694974262081760999935003344619768841879030415959515392641119654647748208496035361889457612204857186264614323274971918808584!
 1721650249255612284867044407945280918253914446987618136633194396064637822450816138177872928278397648591104634556227172221781769229741153867862146057242015889821754945547494863631767227436470898021546200732501302370572121626662522005303961351678831013008568016798771386008087441449608596103041041197485369831113671070824797474197170808243016916661770771312763331363815453158913375254168398408478643177506675039488466367772146792112185361223631672188803806610698593702379096318692240259119146345846149741712192550199254747960048460063345981864608011593744703731663195351890879205648107281187772402039744024602129739110134992696648989782233646553651294973293415434068946943373818266377860503474934332702908375618011054934690179339428739905663796976347810695528961987646189850722086345874757753558684468723357249179047654807751039237363961854667533349597089174705010313969438090236340457990307072485296328514308887866880742498163585636339314194762523066152520565896307037142091574467866737683!
 3515582244422637175552905493953288236668961533263314935839281282245849
325
40555941071950713799703563742340097316130986462139379530870947165361256508033157850445730000941413946001474525441403816920993360411596583800506303682545663080628250094880200341800214558417554634801876535677644115164771043843669008537061169050325303146835437133581809292400768050958188888031319229966049866511923553334427159951307690820852662967740310259473022591776820132591077731585784477312075886450933987756187266253938362357576251588056203092312138665780721626116181270037560534462263494983862525666524229234436513969720823782599576261080998493754227356751224109232447930724282802917623537533863708763873518155274821112448002459124640511151114996644626198433900579254635394962288892436232521864025248104905959554083650286893574890542000912533867434313407342265195998144887626448318552732774941228785613062258218781200116285735213380860436525201235079083015059632454682818922475989132871694359851422675732581509249821248990518465907278237639649232119042056438491725564318734416229620060!
 4471901611612786080691597050723383179902400106211647477584390237574678913169570118226462177028945711913641268587186863582493271746562706728075136743159750756577475837640633804494482066835217833213332789677638365744674620172883957236721109815401621327006816874023136619483325010446485646460364125317413333237960756729373305212297457933352566168558920043759625134203063834294306097158474095380197411549530010282165055959259459194853348227327155444873521365344729423949559645304788053179455862934189010777934902760221808499185141257165316513745087503140146677425197647620461669311332604538789645165729084386151944311401615142307022471639399010043790686410341623679074185064637682566038955033477348967311334313629428543148876031247313354196709800084526427401420976313695876225859100931112997379360013553352920748298536720427612698476400667669866105345520728721873818067910581629074870107673696521668734487874382771997327186492554248066842383302741069609185500711535489241744407943370423182545!
 6068386702420523393305803173064778859332292996554662168705712818066315
81075969880379541902867105158968218399861722645652372721592127269985616688430859683960287171538526694147931732893545844953150218593008668911797136649492410539530174013607858891547134085003976803645381111572086129563947096455742708238731268749887309705900533731834616896934170930000086168027800589567415228443663002296526507013856265684358886297585892712289731225045019397539880195992958594667444885279234641037247334135338390259480773955176406741476465801453303755125878391520600273054598058280083415867508782021829802912417977315235385770640677116684521336866501090644399184664729143841522843559577805241786922134390262097035903035025270328397986765487111297164150657689153935090940421630029212623423471285210839542166491175188768489016016350794990872514594428409076951969961803771282792923306313946321509657936648852867185365898542823240463873382817848153020920308831569726734392558336432163206608988845807113627763999664957064813332430080443070692281796296832861316394983415817887142621!
 9665499051404499949051322758329020397338902854257513664074283771983895137584603568593319676365422978795979675682839983101815254236665985727858888680648518945970716203467370351680456789741083210206877691531050566876687732933492002389350574436954451602342979457806030671893157679519089580811282704868678565179494942531798989854558463511016629241506701611762219757292557732222995795702695142731341258703602132593747642947677233855393949608034943296308145907993381594311461023743648260905274892609114997817599242523396972869525241668731500923820412128542613616353249136625137866287441728736927773266853389990509144288059316961768257728559277785548891224880886696290222200907105319867273320350125608327618654686069004612176551141034532831271204435229510016794790313350534253556783869192234312490521332794361256904680330454064259314334859893529878822549531857424881037641375414844998295227489027969508981498646907616443895752343566506497982594152503242632552944116596940559895866507612153399297!
 4864105280830988791971237287616972907302953015863380954319401820266910
46931393035266362835832196293419502205582156281151008278370219142231861577528944307401251206982236257041351162127934474793737507085853449040251894677691474206491390247315240473922375703568331255397444736369775913101672485564252270498558713299184758438211851524915321086608709389477465558909768150090915524531843711016797043942272006065934727864923765594695847171642902578632718343604387060615267993199251780719606018199788961891441329681532735536565531782787898770454849256568315404843368663589348279115378499601462943301785359189222687135602115638066888736024524286151770771110671285143971739462566840777072585891951865720028302687827488064624862580451433334454133086163786823325729625795380067350910605339652325575968241504827951961974945905100821796236567014770564590274789801810063095188896213790376936533729872681282088478870106308255415850421334101495828542771806949463381388168245190344480504922435510003314142920894225768313480195104195395648342838316899469970689361239529933647736!
 0596737956301617803184226182619920816348676196602758664471180876032530070874535085357549089483316670801325348249711806765228158023607082333904142811702294135253600330633026112455168649227533897653332750883730873546591411189798341977081211090804713744235632419974361958142327674056004446749156949455787149355479222541764298223075736651596039395678729520830762129957290564633327979056087360196683806841521600534098228717682054303049482964071437795896778917852651344209014796569969586033217610283983223252420909187497569528250236244494235687350103470187419905300293809698609087614945672871126806871959924240064653277115700461234695506725963015667229090544556889669490363819793746846586653406795597194462977563164582434386240379348980473005757098395158216139214440418894226816655348954143282061553926819933381323414313987908720655644117610051979103079211594464124822986954039586697896296360224807663263111856093817090755322596581714925458095004864281930723758653310934741026846088351017655232!
 9792792588642969057722571390829119090719641708538459454433599189629618
25813795766195253377709395930937558695979150585469590600816003435570792205728418485855996164771561906337685043293655454747429793082284034010421477940049481806545729224483426104801520489332597893682357594775848939079653986132009777388783890023066496506731865265056828395821962580338070209708988714146215856544262375254313938425321275734074533191162955171187913699270353917235081499866237794428418843345714929271033322663099327159181177798427378975014789433268497205154307237560639987729616687253234709907174640540240739876530764999282725555733397102244685228197440635674154423398952240404254833976955371473159903911519958160949598512103745365994424396455866218951207314020177355678185319574500159138619106408997869328313648390096137571062723478005228242118426427552831612858697601566046431833533610397233746019991538893157302858826916092049488454130092262588377714048796551601554359374511078984718088470096060778907622069368407378496336096342509584708257256336812670064291029822279991576193!
 9412305010665619324385291312270883071567471968202186272019484744691477509958737748660296312621123936262684323153391719356913789891966066712770973432280825198475061954062034493330703784267983799417718823847785730492398625585661163352861527957134353145248103916383517055077877222976239792084070887115866239919233193364955741099493754100667968801426502073106663321903729688246980408070541863178851938047827141225654179999425208472883282034768584897255257471819411411100417415667999996419753284032409331190631921047134670233785151816822986613438461795592228922727247929512697119023249639138044043995740500927120818613254294374946808034952740287866386243934171088576574565098594766948921845006405465630078576018633790396114271309657046386091763460387568116961674247700175701209622415995297606038534885700148140313700112802969454316372351125088021191385854262210568994899518301809141719061592636934736495307154175906667880722820148829198820515570776358329567219112203577042495168506188295308898!
 8913377428009260557482311908831910313193929933455923134282290824495258
005
23923120354684095918118037670041104124295206004167497605558227538402785572289944290970792203734798808673500170223540288707487241568779150621465248917332552477018448633360423791742749855343362819513765938627640328174263624814720096570576172733932197137016249943760722325613278742493777785892693303359640162133441364984027113913384274707577695437786011756649108619427071829174412426544459813637859434402043228658975463864348272914836757909061246208432343903919234433434967727735561114213200143944432273203813690857297957363267447789438657748903859180992598862969779258913747052857795461303205433036775220335508550526418524683519492934683524328602941689945753283821030700597142644539014090180299182333664744077884707202162306238560559758221344837729629959883211943413369458344614783596937028326827141048481452882905261664032814940818402437682798083149452046334013147931875223737780641449565756210605303373736314667499714281990742397055859815350366620904650584483582903706278821795170109549763!
 9603291046554060692645863021268740270333376287090086360775717231275916195076539133776329195822156023957434293446887129808461218026897104243417090833099109858888883525408594227691776828812075617943969011907566345241700616320081014184753329081130030931097586770730363184254529334530976661529175236632365647421690422806169751560533305992507917682502236464599957033774761084147501885998830265520406832253239105872448941321492042015076366197289000406059272042496276071999299976515689850478820851909803573311574154465550052413149012439899507673779114797142127666155536570002998064352235855946334029151965574477372577452551736846772411482287637268001963584486242603798649865758213080512548677536718044961870015910447387934243041878546178704578543664944284385030411648192666718497525267073658399302540061886594630044259349864218873674667791401028992193519034198473257602258531948483933820611464807036489978670865314053173481514324651853400564085301928990763601600914076707687486498786614472416438!
 4262549228598167910812920521882291519447434704103619261982249688650183
28788122865526149448724335598640670553488667642160769960153550823282418270715618196314343109296280405256938017210064387456093585636653375409615209936844109006423455594967899258652717374982980371763864415540833993324732813095490090911694426764709960605136670340174411830366225048991020282241044980053063939224651764328196320044478643107106451818292490155470746630136658502775050796766694470923111695074284579269198646547968976985744247120250261993627690491868938537969774824130205607630433892247367574753831471341754678297496244770665409381981829405339527866772898388482829911423927736324571601437337526304802632494216545565767197675193472054649944251600989150852653750800251075605432655377272342230719696794527224661597386602174168903912272254713382591553228452515226694697281730317552536710851911358876542544357904129824103543174423276434327137065420996321570636406096871384524624566335269130122078920780385412037602063411955394534694669493091620795819911659307574198269298778666503659082!
 5853102107170150184413675291384847390819223564708665621950319865198555690374767109471408761353154871815930278188382078139400086999967045174005890292947204951246680739095172243055169301048038278147544641937702694249327243368125202460157153486104406075905633203741788371475352143957277788274638618416087213432549823690048373821826384009251021559976282492414832391100246927892536253848077699875241682775157981445345592180912352016230923561872620356180637137437050124625681248863511622694756689681361908739138611682781042246641848813774916377582353071751093363651592078320285074878177329456795722880270292533039303562960965509081112345990450064098314626001133976600372981338813161449862460738400410387389523346770156047656476774375309135303602773064948548181815798555845871362783153768046482215248418050024360485920424819532883678403638789956319332163183177839752991937552421965960896506553739404460898228965083088605090890249651264721191096922940386605909137826663597944840783267636254438297!
 3826316123851271358831895110725809941985723942638965905949827824178092
35047599580728228798338367066100204159537645690875936082090530464645605498351090377847790876519746000574937826856962268923656473689664002376142139140408853022853014229240229342391847460728918244015840316196570370051165037483283612130517927679202949584496107578731219312362792490708774704940277207668639512899595810379182555275737019903563985512824029479351343047014985331634148827241470870511372210732637816770795704244352542402658784910323099442185047657104762926221526379911773502945540414719797361893916413646795825081052536221009567308707059953511023282255406880818424246132905503411246368206259564429291757401920097057467517837870949738346200035152023509658220513234951881288097417013828007277492706073842957867654565122328069601873592793842250298239452654566153768909500376120416256518301073537003907029150204753714277894368805917320302711857789917666634257164269537166959331831417686469920393292873147806545499610556358587858035598893825325627842779752774869590582901784353170386419!
 6779140765048129809438387688116335995347497834963258404256655648835230230971526389610852632841399355173700557015792433145571339263506491269103287457433680168470883210198318057258996356417499479991411764640878309858738876012622439291525135127431631142409165957985442311940742639141995737008193686324395428889189215907335571177725165886954494464905156957324223604942910611398818787978145692300825681635089337688536087849150976140767272201765263270063040429882985323604100024040182990715058209534866786585491475231039176530439244445196651342514858865935725306187893317329084163403552216474104154352613758218181879127906528210805664458170081884621209532764188236193739371584541654500461376347557269167252476102557802111982212191616769247994681485102211083546869776047065079702326979179446640582545878412351378391598786857658017471735758400554500216991566248934327757053162343985746512112556697615957941655004309278395806436785620176109369534322744203237277829212641072792733153880542657187195!
 2314614760851241207116214537070523460987352852535263985551737598862152
28325270623317177105764683442071121848969716263292124906141666241887604178683965335208134039931999745848516368676490886859104526807873062160502149585919378227149265333228609685365050398614037995783932359268091077890548555861088592428224225927744773651178182700198138853160730568033657967627178457774291699979193696296290729972681030497096970617503617848728049157145532340248970086518250571841390970899814432108632743076295346483010602917603173983162988558076971443395677290152947924948925730531036288092988571097742034339038942417749608496785311587575244607210626352217999579448328249649817968808777035604906974060975581511209516205013277091078039134611475100496986771957804672823682217588508555121873788238435502397135356476753128488751114558439441307561669080219404705402509256163887305799593571007095421524240238973866144984302696436156975938350358000865252066344823250934289128159468246881311076706480727153921338085490889321744630597885811274425344881319621755074539046922922607786828!
 6365875156680944750478626722735707695371489726486013628080150844226326597221147118721715445818774261586970793886955923103553477448442710277279181265419391255476048443180934367966463340428283327337418506298654994600120905668609109495035208441838991634030696334351997137223404510183936562839490571574119917388142068644918856489681633355195066000928843332524806735584171337496171505509342637189402325303542599384394187718742088145543543561643034891031481520576588694447827064491099533521284325191049124690543217380510679418598805440128942512325899099623123240538773982101446405849655974158659523205814498852510376930654974893135060329360744818149989820111827492778152011324046430383400093022310805472595975512167467066592294443857107582935686515980117901994804535824717234503017639891490221449489021601986841517587379191682661098385738453765280418900933755032348767588757658350816808489804889946134638467583582758945004664802602247079596073112347087019012293963842199250887685371119985433129!
 3724294847578836115174083358437533109066594270132580329543981526920681
054
80421552102479651145454331971153057409954937838369320017065641023993968520341513173309251386082983961034483756434854709456374110604561666832802636976055941078600530148540321252825322327251732324935578822659395950837334009505984530084486154937608307729323697805390206948984365228679285807815810808580649532633173056468160917851471254000880722579371359859196020321176985166181382057266644879714560505647641742736841891450673424567564160482903098189791759567447997044184815439560470233784356812676177157987374873165244588210016410619287671529519773096125795040132799512512304460717376533044348897583775022006741467780169732280054567344994253724138458236775963995722855459307838519140395047441361758910074146226819297696949886128652985517880249933196635638248382941924743192355842676350731985803030153430748618243783252279335799383568537811327556538647300247674306723758445557066433223967058378975019401109845845303120397416081495286336512248395115142651395213619949280477614567228484431285659!
 6154497313827859533076736960149415863707036217565867010430358696114579171483445820548229597116654702113627728249354079462907060140372016903577892399326303272607254506004036460502838092961007600067621093582161548809682798180459087699075582797111496748587103659798177900559920461992108621883339386436767545357823633698908816193564218210955951100939837537477554658607786559433062248491278978754508135580009553618632247789455782167285821565583485741692055782234361503253551913069451960052894986940468655864528839323919612404399594779057554351905822581270246825732160269935312376217316256389732475711628596069997082939495981464546812429119289449321675789363587752365870831262612976895221403712133337137363657009749611146795473894021625486684146352498148656843712993256610369032098432452443637457892832745325401013787354608708578491533913301848796502158881092990371435011496211919724372703633189011799293100919897206605891949918385269867800580939230917378195429850851684668129923342594667076177!
 7675588620801261412614640886156063703867564612888143788618168840692105
73731007147127556028255238461049428731994983801419274943751006947906095976275704074256052792040373513225643720532009690271261787884195824392343316525246682094254662729793482420950273277702953598156498247338180616393871547749197535049321791743206684340920620175808477830518875496124423952011896490704766018606357333213987937346739149080881235134551377407155868222354558845754468634333775403138713026260714622401171706024010652254911986468430964157219449244602828173252536670353723004242498660648053112750195435652322568738263515606179781774903631475049573203258272282087901580037039472207847114408535302162674050665051256166950057399083273250689952126975261606027252472836652446769954693569475947257566855811894258537772576809839768588064964418575387172908716236658429546000645728360531387581386362944104313462995374182776271853061591934261217713201031002114525657669028709745553310907385811128955140392716687522479984987499178502589268902148245957825905186445482530867096054152463916486748!
 1996956919637597196303980961058033546132789435981843508697452592000548590030372961683071957622685435364173118174509579933164776907746402740259052553880918629368604586739521133104685547484403817107250663691014557314738282505357057566139391755260695186896492503446866474914652615608550503791394202981994222199473543823178322303684713733024748559429826380406512984891971277312697939942446836813979719308945153130102282071760241132296391228061815709537618452022878633617842610353107341759203978291654370239534309225910850108056559187725277755480027001929461414415376722756825533214173720140747134788443436316759161438722559433049497719612338422266160489643962420532677970414308024116401196808910109206342903802792551569679532441619283486641083828605441536996436593196913777787005936030482022913026514592296134558029718272438419687672437084492636755070563340502683719944935473265265632066274380836995826335167607082354952985615834331195243922970039879106752683149442248758705971197501357168808!
 0770880163857843277818151302778683116858919461143010895892183928971335
94139288856488545091637259398359742076715707460714975246059863989669574623157776860487972014803576795648458982197028876161231947013209559242144883555057627232344348426426011753223061822303565850804701101189919325257172054996292664129773504285043702622897235852816267563789630203898474355948061217387390668535438453039293129881938833041183423778361478059757505840662254133629335780931947819663929742350390848059320069789917678833968691319748258864747086279971313256137172730816533406139462568550590727545864506864656527768255534297214088338372788201028902932403132421020026106356642443696612083041768693220104899345155973211746630090867120083557242052922510628503029406692705805044006818192273514256346584354811095932073401274969490002544720797360379164669703195033832848355167676058310365452708576554980028239478223137188703965216420784140386320050168755928924424891643210796200313711074626069359189558182399883659153109700423581742946007359612474329057210929097629241041065662092350379244!
 3139268903030622034078705847521368443498140066439968281777288328306808296747485107268422856395031192396793997022782808329040391879427012564031731986705480903817290109382677032761818733382332992873542517912146741696844438416099579217349254754115169550363292946067218798381779848868362782909979843021720417536252229967274325716308033262679427008834667993123722778928049072690634359386334482737349468718088069450888240689972616587134375187407124435358999357495057639105502602348848319301097762875184555561427972842848760393872130490902541848842697751401162693761395504585689904730039876222569569528522702700707002236312782756472091890723661453383150645086601571667250304425313457307614248252993473550820094811107402642703287961354558997238769243881097597044445727972255955821483185792211683819202237666014705355033299056638996113950200355900395314314853199973395611006459629555821496162158045516324961524984625491338666155661305747107306606494761259251347398672404294705271394587005711446177!
 4359248919999779853985891554580117570754584198570746444171573528708831
81556649067116137205248421240675688333346326309394674405915392812434686527415076367108332946799307960121322623629719228890611294395686589067468858225888839891650188355330752331981579035535868551557820654682183321590742910347469567566339248541522364537150038862178902634313785302662274488179999873853323415250050507599445291601038492429647379231448519967640031204261931101839001074559769324574399651968221115701722500007801852007690927995274819572235224900924551021008329435060470903821762340123527848387377273143198123533121673507416247841954632534461520828912237804692290850938628075267737336489167527510886718690748573151179871911275897371721222006979026862701539770333762353916857302353277808051500852598175329555080787788667281565096669161583911272169869938875911268864848545345289838450017200753178809612734774403004524167503239303836706170710130550438058717306756683353374537830368559993775908695130621846552857923593391741917120541796998725613245326657739756970932170562193800461482!
 8574998937523164351347470736588209810605778865416514732489817870094630138507925592226072971522620388194374843914310594095992584334465657681739689326110459870100372754352511637744161227299994101861956605142159694120635513144859719545286080974868254874524459036260473138064839379734468186624970072155471060193500238648389343756227635012792584941732643662372023278553594194930450011152493701147634634157542640955747394306944563542362081212241176373576970867776359301935638364440288936305078333228036674743943248657079895085250872741832683527199515779265271987637499790762084389463472126203607830817381428047878554978289786227472441770030163255013397053724176828153235161769069219970255699962054642437265357754725102403129943553864594831470194940156026684943031837836936554661866566254708258607489483972825155891603855349506451384744221188275629862063313569213435053541753254622942738570185142216047979181239135818570233638135445357112771171943216604661431015474198215549290475621090189572080!
 6062349088029040678545667463724177248681190074206557848221929501065966
835
35208679087585534490092713251073537813112328600410529188355048282568212439318097857966641441641974384650359754316704183852145907794335773149648457421486085488674529131457458931518483420505854272116027520701053028812182044257185040797177351938264441514303400003896508354760695211261435151449409699151517833258517247989474052420610045984073638435113829829335370285516415328184689878043592175819760111037188260115715212198992803575460838874094737522040639123362898280661873195323552920401422000951548088070610074538656397258970803032798551240570967529948775250348381191484476396069023998008588751011612900600807691194381030260949480659847619690480593217852139982865901636139729473334245297578429975902328892122887617453643431583753143784957460887473734258795875821990193538981422942391794151561315397930251464137986089598876754136943230404870285554197809229580446989901929045589068465978383379944925127160494133779070648657858949675759940506175576329347568082892202911154918648820159214617765!
 4499211827254988676568962251706361483219514060308448688429474908171412276698952976652846718701072919337792928244353243138285206357061580769259282603222119402768779042924083653232321510235407534232109476053210171678047889604168510719739693991861879463461896797135467867224402905164443964782932669463584918661504011655032137958238846403545337067500146824508939635084079633883393164400215576294876554514962298494573570455639845828653901031203119955863297898599642742416545640221552693117618219340405280497700139581856995045062690832184422098580656036039665052040509265294491631122474122439854552334593973602158488959564576035601123947226002909110232358183270776031819289578931912004228297227192768010578564466733402031860657975998976736300451553441212227464921178419210429930233047545934081486957338855853118789257243599624701958104940834271300659716364375165746371024987053629169290060997979798208147147131128995085184920039864046146530250994914143403583695568842161518200066725398585320356!
 7078753447410182134499703959178739753496211472367771510750644341932067
09784810139061194681429965659469499803015015050439499165819364340617547120060232533051005685661995398852109699179681030651566276114001239394412740504065600221709854777964424685874863196946189551035133391641195903971893876105442642302464412785966320148479552732274340928634620098405982453385763861519336443209833918195749629505252717041594110329416055200707970044527426550329106801682918215054886572979083065733200566711040393166428946073974276132720699137735888776468407672601645037969090673762491231815694613258421465112430180886283850187273208293049320534883490802257999620893153820434587462062523629681224077557166761470833253074351802801564661524123357726665459689501535120964074098799335251124236839325550804077953890651359848693148572687489949014085300106254036984402433985738212677629454919277281927072710075950541945450379091805163615808362888700153867243945007027498984321855676474032471439236648434111606209310196018250317806835398572583913357133449303614491708665979723338814530!
 9217403181174775203258167433894582649675275252036112627367210976454313402380658720112513451461172380163835947268752281763835665589618861321672998939401494125103564658336368877609065883769674182919192031194564697809424983860904160330963764529279423419300230174005434322585462509474354551709683543697560356501992385147371849267059723327757979117381524743531633424117298458941291075045550428858777627373406633041603918082687417260659615989336077863307019922231846664888930452715240551174612022301603661921939366157937867369615816259730058212811282557646795949402814667457604557747067390220019769831825970029381954149275908113373323605885877787161006725835962326049600160589914889342204736161327100754523004843943109899916372218862326257224723071197918230494443514033574476639708361069860714457006927639663973492029218346297644381860189376688053451277703848156908540614032803615028038609490335348932303579251173935304158411332654712905673988844359308222830330322211659298541919655979718488542!
 3887158089140369301617172570015570614836906812742295502793463522645006
86934307748207466636874761476200227501815517969782667374145950438705887238733896329121395730399466305434028913277468168754669502161412465503700912659179830290388734841761397234339455693566008380160943556137855374689207145442337764671963138464652631570101713235839748746654423630277928541904501566645788185997947897125148114050237769026172897930130806565716312121207914290705421508889837954536591643551233417459879480927694175114903117460552245578545813558670215309007703195565589959974680574161333836164169114009923341556438683622586644280794033626701052266693619246747237136409054289852051883510036926818799746564705254506826839362640699442231179129973336410667817359159716289832741772887230205260980424875777100698819624037291271628455835847840340492436487818337243203716187881493183663213242424242014718798660129082954490209873995954287213906677698275630891679421740168823587653975042030244898641889636909631627012055768196992915499277514254378812946766508325035126716846644844454724041!
 0124528064217832732227760436916102880783588718437100518084017958014108352816351636038053463076389194761501869867367060501475565451912556348547440616202739383503562785615295889468170169994014332311095287212448270472060546025850066704075791114136827906978686587117792043561148929968719888032590349546258685078645156073721715399533910705457420844700489981128289942160212220926244947274540561035820926425126780398190545265944373751942813217137033612591057551698992847294695342429807232562902588836268426784470298363132949660544162538614748828347981673228810978487694132343671883348297513277555209811183566129984856870217344971594558142051676013631681044749870916364943156667001634124731526314664694470222860280711813992815888751637214266832121415092317205731891117328825980525201560900415547775952404089135009403651970848700749678332743233588694631268790098502313172066141132108607604861957063566245230487204929701679457814582009036192806782139458937433777693126987686811712481640849105253884!
 2393336908946354092358023108172557634997996943645975444894856647732804
49886762357891730215026987964549842771233602523960136788902639127631673348690099465888102863102237495535995017161877940595427203256807509917230406040592447593475587819231150708603864364001669769358844410773687028457703794092834941402822129586407527063935399304447238508439688527577798355208317581070948268654551492346771164511885672238076006299878184487827005272031293884799820971943202275713635203988800756097935496850722217381909642757568466440784384976235954164378986071667348604995364292157690926961517095282542108602668881287621322828870123941112135608499848560226167435034883052115199522213094722311882454739260808544121534421043454311042835336107232244610950475490308238497623378772397985764670714850727011550335079176889428553256555785689141110539376812300764172733233555555695819795161678765161127158802381737058125843376445496393209033630888423831346474132541575834085328701621478467527366035329814219899900103996516639857816270835896248137581128520502746831434621865421002873579!
 8453064197217331119032520073461929812872295178982451117703283234759864039562706190854550735807916589710077764022903519770551651463156954288414243755797570968942232887312501544659132356822348563230881862148691752544420425031155171125209326672093524453853285759307857205196311267715965633535956460663812156991761342710503579689346925609775922911355755004495468093959419880769193752888650248971124685916195119118057366233650749218367328395749066939668994863881254658855888383033086427922354597161408639132801696867060967477934970251369670949211851826806837103932976818279349090488099268529794978557333715456812291190828899996496173672758296772254271826422328664001327243273092429509230566221346977560274971311377496402160451869335895994334517013147431671669925355352625191822960685511025521066176939130589930470440130555394785866316843769182864723435324859388779733700023743444052230578338504233697486700501600286637163548072142572742363471659825920005995273502863429413906679266972379873043!
 7353937957758746704387095073567124554496603097896118194554170245592193
009
64059380552294276921735098819503385424390196223556566509598118950849558347583267944137194334777064417430687607287323860319093764674529189218392734056524491250586956517611562069812500393153884581844064908193055138220680810239336308565359538328508151852860249073808881939719741926645634161448426511541316956283525195911244283826288101030847554548973690254035882364831424405950604333637217231136979737662537789832914814676854754118971023646587793294524553660846298717097667145215393593629565084168679388747451776846470197056012062911196593927169428782001047384226912084203747363388386274792663438170746008618165177012473800268910283248614546728946437703394342046484241967025618791648972518386746222304165160001856431299654117598208500563323952416320466755350013353729684917467646319413499223744247224633022021859547406463788211882345939408996899586677663701142952853127079355663237832561966782136657092206028310256539135401190662142923938164112080696172160438099387993003279135193961605459067!
 2596572424438866730988394948040500199586995408776106691389068427993564695024599087865610481526261948802916220377285440431076191523309676134565789866492760231034670807839099262754764500023111598815152501667563739574019057703412613420416359044808390765374858277752596662854316298833142074778261209504077604333883663580243089244840348835410287061473396328346465783579669745925874011346345762321608104239762225168959734768174285127377213488843126429868916706963162387342001469489852142302083551071071050255718846277856440376053415487371340570353047160477106775293200799083008579633505891364869774715093761225628448351427933875263674570722200256769127483422379436606131986267609440621051523719848597473792974061772433307773538025430221894395766769509566727981248500848626425884845796771935614664646260149649514634714900618867260130216748107466054111926689184063788353110563044170808357801999223295643474303295979135889437938009727044258215069279799888314467253297689672092433109678778704372547!
 0404969378268535332779967817629151867127754136572668369349108729256606
56228159152633504466949756792294976458396040312478260968080763245729179631357063805530181795061558934619200552502042127689204726523519590844163705976227580527335399057273772924589843113466208946935684628077087959342361434261835739728412166526019543848177450244296873787044781845808456698591816757459363007125099299455902157979712679792868141836179452938114743834591130494949062545777573965744825041893661050156722391140633790442693276717835728234784024292290403767470039713468343855464064270710261175300913084761273575638893444957801436719780138982653424377606720487305659206933281697377077205067321400057367553449808955405386888786715911240760240287649361091464856324351392282896169205384742208960466080590382309965918933425890790062237040800669979202979819440927717350270127336846820867383102707947935530220822775215446092735620715171955387489668190846802860662680526626173073955928932432766560820558926492281145720789325877823680827930505003074177435351425876432091818543266940690676007!
 9190821342039636895309452563340221307302098645862976896554724865262428461104736657509041771732052323741407565848993239270868216794264326875694735191217476911115775407999719992668288850793903934061031042132964682504077064770521769095572432685966471769863829141153779769760002581927239446920104966004285085470014809180810817266504567967186688064620584788093007116714190784971339391499399525524545209494650784349719810361428778184033220570694639515476946972767747706424864607939235195654366350830702520798246537427425699694577564626119873862943453280541508276209906622774358444862703767092488431396731265635680597853428581984460900825022815051063672691418876039788319773186265729314218073290550935385624444888087051585120556194413737032854054757221463407137369326552108693222709423907542994089944254445906867574114322524261672343521912782585438845595167978299328323642737457452544546052939896806263513733587214850808820205518659958034081488329701253781235056793050818818568505731233257555542!
 4196054273583194479764324992288226604355585233496066809055029052163377
84746351934749713022329493965510415987839740167516618593605179338950392466205245511268837311120785257244245799623294450168341713595140252095179264681156829820313618827396426623321676441524695487558164084358212585044247670699693803758573003905790110515414779557179169312729095998221364115981595201458613678920666663532183944579112942949372746424648239215477975615733670895761840575322098504748583570891766352727809495354274482525113739382912378335184147182784881809377625946725543342069023837559765846744498857297100153365702593838609837888370559661656612261881245463878074036437755829259340136451738584462455407649029616220229244791778901424327249245624610572832994427679678314481934670551757083502942567326335264906514141210237861093296718863103717170461762893116167259029067712239858836596414924553081207285708410066076168543516663530341382801133819677912289974126655244951348338934636181282256499053411503179141167093830767768774232569803429140799802919107611396530776180407622194451519!
 4026040634703567993538832743785881520110804064908851752700820562380205128642184248230026324320559979983469262326656447019563573006795390572441503981642390821362351327177145861912103281123572699330876625534408941512051799027314738681826266444752804067274640857238015503894189125958937399265016877527437697415337481724220377071286644907711626031544171194141083486068995295074447722033627442668184711965636157137724246154560704796508783129001334349111362929755836090601759494537968615068179085076075662127381001179182930761186299116355745026020212756543609511385690948154244767226073400610373342612736080448553121475788902375590577113174550094118597486529627058856391738971595159889870141758696486541853248637794337805069893455538805052331249498418875730464447331444598505524739865399707346233819398008577304356954761698282658938100306024112186656859802072533716561353350992188595601078815219559929848307371141617648399503300378988247903454105325020549556935880161545989189368865721247489636!
 1367186281885464478617924358171011255185131787177450430735364502976150
72923011083308025515349518692948497169009917303947697333789565022956148778780483665828348275402301923036903858197885343038285582730067215613042476796509973673898639630845953309944673660052789535100775106235405180950620729591214778792662633854287925897759586305806465044845262391335383426270504308670094670362204063397672529913651878423065839667022625805621222107335411618502936356416166557792377663958604946932445508059036179864427557412949830210469698616449313701037027750848601539616658645128535453048155982963829859815455625924865918632881763011014997372069201538698774186216557820878850289708567829701926958276952394082579589346666668839183588155490694368307035327632079349451093653994509720428367306703514419631552887532148221893259671737078127140513347473860809636945635120190184391605573384080516638291488624793513794037131979668758562594829420746324161481962682888498009688756413177902657691055508025432280312585899845828720832573588947631349260624962718322007318135424395364377056!
 4819295399570014455438391087844914419368047106516347403117037448245850518578818068662884417079356604269800316323634912030291975370099601066619389621731876226707182631485228441727943340681810310183841753499734969790135260460838986493841708529346927915834559424778741475818626067224662481177224985686229897440438439218402456036091912369895978248806446319555555930832816734602312040667007248774759980632684527320255701562168766284058326889493050519390050495049587015400348542776024624858846666734238597445456716114198430383570639742666670385556096452390357020107365232835276920677221366635857460807615994825758902615564428664967372569208046851174626702467876686032287965119785761644265002553662207997203999865614691551199659189260998756919572198275509506475978615626474235578645011389704199350997640667655712085029584211559149472907523553499274100851294919385596259403263820252498822492144447558827002900367951870523576276442355841833307120460124629939915484195813551255146770934471443309247!
 6373215011861279838185602557163141744264421039231841248615613047098148
024
73388125696051967726943832149010465240998150118339414506008422291319416099500996449619633076617168027996614596490848571740823780571312943966103687727269790434903189674932321665723319037215414610364718842463568019712570977124204559927718940163080755579153180388638522632934912286894458712440718739851310980729960000540296913908632667141792364975629719250212883990970848468043907176319829838625897603127381810275493426101282445835103972461726002712472644102839306036777543984038462374655711776604274794044711025322752607088191525962388103594491210025921567550999035984902873663946533362227856019878524480781200009226725563043118702187832547386880440918833104825515033950623703534591157569487158440812225354661461213368329141771387120791132563299696105863063881455038293070650764250040959783772009135428432873110669407041999325305683169533185440621809608346131977993381716591706548795521144399346369103913258534977738053801424940934503627616581368950030951261057084123445629601328070394871467!
 5890101664115170393932146989030266726605846735059647527480561780786795393551032684912986766565426312732988529192700824708774002213743115658696907606589908547798087756486559413089027045689772974195596550109221935693238497816225875176465524209255740925717695468860519010003160801289728987052861085422973909396815077500965971737146008611522092622608527082988364373624387798127745117082236808061077077413663347955743533547250663440979289899184082181502006262900581367815452848577595273359535974840872450053882741039998701952126233169862828034388497269141695862950362027229748868984900397414716167457511413346027344974235505878072186655258735064125308324573880356085157662659100847907204770453688975071997435665063066316758761134751644189050994953044117199851499167397662294269445166214080877491355367345306518299977582014657530815794081675035725631308268975276869491317516603141962741227162095782997451259507368949976478651309830445539167618793163664040969778731171580041226555288637091406258!
 1788469239036439876794389944195963322773315106241711111175895820421382
26824715855862315936615312894321916548928211959762276658143596743190469318970709546254984802349550186923112936640292909966700863878400428904420862483661779064302063305933920322434365160794325702465868466897715343280772170987980118148551579281644492135430015252996137723601077292108595131459952461659422716415747632365702571880611706348762926273236008312525699654343218937450779674452915427894712722894704464813147441242211665900810057217233044387008737360533164683029287005557200190699431998706454465506242821727117124592068124294810550504047059241052883574006564845472456074875624763472596201955416308086991308656786967875539700812791176866919496838135150988085209582767929487854818158433903895764802898509257246086253006148886286503065719865793656157955982572991894328947716189620569354672805441856350184626344267485715560888443376776775181119587963168418536391233749766123771258705575367714255354528010236191288246608468567360849341333119579933540423335773588963780531839093444280492270!
 3521622308714944360673004231179796828639051719515750520976559027309967099890200513002263326473818452023997691129524606155729336699654182678756146447436938872908878942599227147563262066667329080946986292953431110762432816432736086308641338648646683683340341174172433613790860478805680045975432893327214060803444750328434411461171909670176253984282266864683881706100253649900743173847000861481761643196421460919937381887765482706997939841539389749094610308060895210562372337339552990648545654777111323511505835187239748697076352293343549725610030112158912678328492646452926571161151465300344961441304070786937141792331166624769640876354873990174775371020182114281421448246213204890136655231442441340428775298118356673485565936917962558531536751079806714527966374589942103118815474548075246518531702182499670582009281703471433056490611030296600778862186439586203091262195374593191550111691331559547339411720861353588405204585927360463219827022407154206140331096148629907590810331330659147574!
 9539436538701843065303834279040143059829881096866287939606842134010586
68136877008625504106696553622430760974869206667440684275559470825940375954543932812646151978601094092210039466239381000248857808215305396412362630356804450233024794334321344188084314692816183923682018691893983933307825793915187659886158526588303130548206474199238611662169190459756562533363184467689507529925867773089781132205545268932341196377415807042979172961849337651669375621514648813841726621715323622710802784181377459609786557245216534926787608800918807075144517955918932074648407619905173558584889133032806350787970523131676769315773731879594907212372637992597153494224165049186095916392980515375415305601083541412442663508841170889542644097702742282321287378185848137739355097493355511406244664368942045355237930229556990256888924724764828569879277717704395843692472400622209413255549432923268062651006560671124877997880399882214586345295917166624816532287411553275264112489665623653627179051708201531002673539588247022352816399724015346412203202579778082731355120501936842815520!
 8185549975149151101699141271160844540090762083005141646188255296346203608737167901905825189468389540468266297174866800839302951260776692992406943522577743863181275967950694370015606250562785591434151241339403032771295325310711861748025772234948929252198097430895212231461957666207592355635972669076798666123329105952796101834310690770203222871625208361195649481175299713274973059783552852128578547844286181685257107399791644850737946301947948601093793836405400303508924994891380108931322703064366040921361522517503364759125529933623450874620625221161521345334640590731527324079559395600327487909738694260663614314509347957936425282076057673668224556127797885798509050746557599952332576801978516473222357344466124947799906429335103202924170618147695710507728019172716654227202802454806556829265624445710748443438092473558324059572792813700931794958428020067816670302348301074054742192686054019788027670617733116985490100532526580700391933221832551762219500495602329543188072487098922493307!
 3759045534887851895773428251250967651971856799652910171995101746478143
02781333571695642231934075713767834608696712243812173079896938312170420491124145158622120573819892602813253361650633270961268112735445764503438627183739199389437969585611671266838339375985582646154279781331791205782912378998922762772561595125842754000144632044579106546866732414053365861918428042262582168827371032153821229001605389555745804814970795142882874275665707581482605482420221061203768834107343704461695313565847315846499523328897408613892603743654557103135730978703051579767418648833308333468306177619964953332343405916867838864524704127553143957940278842161375968491828232860066928911605076118159809805722967611642356090547827553099902283601182556875723878812585829342112120643535136234233354548000376373539228441337466447546489972715324870623432473939494074367849041727254265742675895182796020334362260618434065482929109694732775810631500580250568949213398370571061955381036992510061604500623195895685277633841453387092156878758032127460311284924887146975923896612165410078451!
 6651875999266072990204583456279634204397156524456500393326975841615274186890528103396227728680145702700318962787707751372895137492853891601345118147909121245542835114507476620614502078740552719831064913195084319393794051393560862448712063282330972563106568067159358712039921409666332251191044508321653543621993777585843281227230971764972700282533520236033469451608228728472752281846877737507229883391318768369026382449348885643460614702141015933553708337592611935438143753258368050686926516021319638590042494502607779328982929749310257474851915475821236842755637397781015150277718846739673439741825642715865300921367338800791231126616041891722846890638267871722469773414700303377094862942467836229172179125739785889572304938003585912363996896312161385831046483707963766267992976156682119846593415593391674446886200355689651840618965020995787949475034213451064682941891357624099495577188337647484493614890337338736408448766512857990600569180355802175743282237209829640541398491768614254113!
 5780192328432235662201253375699710382103714505361135215808754432588751
773
14981234159790077484154852468747186982843716427756796612188225898363586461233727087316163958782993815527341580288062228960322744791973151341958948838419529290567529135828470288997290468242178115881254450027577348975661069369938306002844248830408556897564911615693828782862045901715920661835559705573502183092691196050687113637921989163882647003032398559982585297372067596850212232594796092137013315436900473475800526697316366280876754686843154412005445181096396331779963270733270078424261594328719836710018530522110004993585898093472727826132452225547446633652346902607995201882984865792935643341058619206357658021349497123815423332633081824963302038636180607430078936284804945727476555968976904796307725843589609723556268852771769509575485467415631893654443452682522268733165858336717410453518601689739003705114038721607492565728669414463434281934220107879944479315289080704416783720859140380787192020468714895404296577827423277263006754826839257204742895691916760052052321538211408873240!
 6797255883699722977039781747786554451339369528046730979198754644054050153559842149017649397089933682368179786182637137747761899242139647546815218023565700846506246212580093382393758939853525532473703072687613186932612577333372902749196950150840481799877283736652550640271936147773259880890814946394227307546211379742525447857306562061623275845663368716041054565558219632284442580016130922925611695217058561742929711699372987985526865736798162230768594917332186376150773517153378053363994725317379046703857552722373827813588564532376608389812022949751795849901416896634521878608358384118931384728325768648734746219535389978008754241505867497801560159311365405520709508035255004812123123771815210729800323101759183786254056596253994854471076202385234083415014218901838963027669086460628899731583050006054166105211261833245630887494237613211173832359910267154433339809030107675192156068609150992975794898470913404847760372533164866332739977457417078705885849890364782505006075652766776667301!
 8142798346299786311547247190463813082702695027155243458377713288884011
33228561232764247580549141453340043073513682001671030489674079132204173293655886380819902402504247589799061997394494240613938590020437450817126160362783912411472682090856905268374225068910991937677220777687371267701529071296822615843757149665346296154035289806984981990238158813249007282842031664545864518677871817717727792832125269683229766412454967397152787968043476589576126533852457391513438137845005187385915329634140536894844397225508011960792690281162293670434371158371953865778600341946713096653442535523561350392637433355902487780093167585566502026142451755202310518037979241601868165327213490744741879263046379357019572546568707696490256283113949083065981392587716575343290518298830744220931539456267189136509327785275856141886915058431128180621164533834614564998610279908878315999233208349703499009644828973619972608413030501613834375735033502696791991003945764850313988998040534762079799510355628009427119807714138625374689420067112929037940211050993128817678635571212882205845!
 2590232988278448897285576764337655132098372084536519727356629454075207868377482599376950854745853778544015186687032127032510837885755352532742246745616553017529469704928603493523766319377581531269112157125054564936628404613157549323436161143868941551917955211604032794138704059736596828772355549369536724926033527449892888220448868443652751589546895588589071831729289129234577442844192725052768475503870270632829799758538825993879067899636766347263679970911370005004519151507050208574470532031134283753039645068373494746515254316164069588396569604776248100769812576232402765632471455867811665356335738413320375632857711145794773611775891097844959748713454994540500897494312370266916002277962151601644314463215567465798696913430209173753793295373631029348259418485153134577006494373909764208589573177423145767288296790675029922315257328698330263412335263163490206490429708210063264881567676324254446870392133376789489600125136265235472565170222559556998628425108866896847107872600167332422!
 1562512429272130805593262213072140936864354996898787430352676884922123
18344924190763747157474462521597457646635724275279522289150406427767865661151919331918178305671646530481381010666734245915686417445768839062419201865410225266970615389099907254998428548419566819245451974709306142275315129844530918275771513611816730358093214603225847235281182550470606215426224324551446896457269382316655525095989504109342537430859997971370042588583403044972671096299697632336077767437347987883567301028647138454592879163749014540664751939489935221236247436613174783048688463151603659224357676276234466653958979646879055292390270201075721891913821483162685249049584867543293124182641346627228209365327728397667557267289731938129341943057239620723292007186386746670306364601331111164254680251228943053311250985386012012360704496997852109585987532930327716226798230551076769268000220741884903016500503853447597101830167378268194361241656963925229474103574318517658365603412327643390095651186326079173389912627720721351617522225524182961243396282518232869686254441186238123306!
 4034533155601640695747232038365145663557498734411685994161655182496042597983926781613148318090253450716466644267026276118597649132476829527278057032238343515063672177066376374024903046590962859602719797255378001418201998101813981259504234866248344043921136487236662920206393962884531448374890102608403614840731200674156229159669636694083603264334149637120985454752501773669601971461784645155559941672637397085864959877953242158328218410939164052835679070686421078034660757197989148155400542005107300962796234727249970112217781656798449194332226334150338567530824467734104550327428561157455387421400071928430177447314230098365760751551277796281014722053066817420350596794105098046656313637782517247091409925552471036812670513824675211720052849429521974886284898527787835621060048781271144063499088164592445189801044293570832904722016072696604619842607722478310717143909349289737950750564710538029161874918869946353013572935018732066873115017315310912967948625497958151216822075712318919091!
 3833835344710236597944808047123388274440350534679995291335460941392728
44651391190836076226579839815642463829159990441628452768189353279135674740322735150689098775472181557499848834669462227119434351395727560933187767215742857830330183042225170496329716122968367527489832947231506974978874140021926700672065677292131084935729407635928956182812900110978472432830384651974375857368591230981783603031405282300813026631330413992533992179415764798534708178636113772001408570838639437703529183497403741835116223700401731882693932630875054875664529093265665030243944536227279170800381578513252902365105680962589179424001638714961212169469925442398674726206005713115387838833883078016537883877521159311944935956949179394057884886062395944418497289287230849557926072113297712137238869698636023682916222546471088062109447913239901540667816028934694282155062721260541798291781738248919973382953016826679061778013533650471886339784273533585623279185357977922662703802445696829686254911874868530549785796598918486218623748556393532156304899283486556154154064951221046610376!
 5481806025067654913403327386294169117762638138347851183641056999660949202044895026294461684668551060662420883145374012687794781398595777699039877073994170325653193556130005281435994560612616083223589903248956595675275769853245744035607612886079681857619771788765561985237527447223599272020602389167187908147088670683027939897683780233375796837484716792042056118846144350842383697378594825884978259521414316768984959213193894128750695961491932711470358745336608149437546971429195290310193894356371835937491483074230449340295962811166523899581106000938622216226552529766106507452713589497334474072816739263486222629713471555329362444579946508231979087690744585253703457090077440815341678638701480996741240038378085234273977881746910805353305091194433138730408380430675060306862695321245229016675038563185858593174377694941574108105727494443840013991522952924016806674584246966055691076975969873109507845182518576898000939428637121910166980788517105711446695070312737069620047300356753682352!
 0581524918682390839740880926485270458168006391534013493735254715092352
704
41619265721100423458480853223980930819701215864173291305325898717158855168420606503405569968593715915621939545955585570093477116811798359958427981955643563653093890509419646418892434176612177117545737144294027293771776591831074430581515315960948263506336557238614139208130754146107405127413481388906875208965175472864434890201501872018366138417280798827295820189774861263383603711094140868044146381899755144190511520140241876289786882338665288749564740110724599055379921751556478198091849558767527782808038226298180439415639795617256940909295185774478836515944787206826785963694547637062382066962023966206659210812781832191274680814530314217798673533684893808266818969129998351994223212726387715975764285213215158837171464854288124231224684028390561577968199897855625102710706283793994319073579797536228737199478452103831686685214208220192667231558101173724423756091514893863436665265794260371682892815806931590571523794802566191268708876475069508501113702578802333818019030210029759755926!
 8182163595350706418857190059497444679741742025213094724619195027721323724702570296163168146476218464364465179953587775904809172469556739679455373497103221936945596277893779193834069725378841550206295838748309619542046154699022268434746176771131973748660008793544360730243366328086536847335066870740890018470306769821475313373154286221515513181409541497972467067634369769645830928679521201994140665404326668344081968691862291765441036492080785729242338875506180983659122265379728841112013069101857603049832953269421418842594286621469527688063208257196486713422469852641941902223624118633913028417184472482275572337996970748200243758037179218073420208053693574061876566416960773912090981349470212072519721369964234420930547846506923744649042088873263022615635791960630923699160278236493000344974712377945595124085823970994657027536675981330477750505053663457471551655837277310078578178715303161327684892535760784621147886035180402976569605848671756763665930874801609992795078717891310420384!
 9478943286084797051504283326524571886423198399932856342268607883443745
30927289314609254429906078711173676695984963306217751488489933778786785978526528057054866121737921355212470239532560819067885280383242296807554471743774895014302315014696122549489533836275694486930467419802292255506508742977275807609510687982710919383714229096826872859632194283672724247744390906003680485278454385481995582874334418909552309926592958848289777196750543920577166893855239773609258209069343057898674235729531205148509038465249314006899617373173581622229445541614935787147750627037619249803638440016091361171372955766180892638646794027936567038530577991298857394478375763909267944333650549677074228596380872187039958271475800044022240421400330359036096054800471884730467828680774098983222526245316803203408443510937431949938029908124179211089542392709654258219584858667992411578844781521955749832225833567422679896009803200935486510854946767671340531034349986434975800021528683583572136597820843573260466126057046440920052064374880868404199958540869747731601750539025306490362!
 0449458476440882040053860571525182217793518019414711660086532948281060021915944692783460379829268818677784883782713148160668128480874790430234200377130896464781785599461837510620688441358628450630346441913942893762354742777586769014678228907006092683252250324639953337566728997660254246597951963260902742615157481865278192977983681101331339651625793318419407026964988951386923961261275369592060229690087420834720840833188415826838019383358973224335136412244321174979404766824167809635203566415433254150964501977910541460943749815990445792838028880133562481814072611423275972894824141887025957454934254722746989976877162316099322885042028070838100814091887352633318358420740748446573397838429805347106002374219987211762683334909209073865337959074928089283030107207550472450851183334676304759820661789998004462744803370196555021320441396423674506953708781697379969379061637848201169796270721270358480479488580658308963231288673402963848241128765952185362411256969749199057478280326299861231!
 7247930503236377058456987857745316103866706755584406824089105118184290
25803298514096157331538756311438547792152983663838215871358824082012778384097362326475844352630281664756079993221483927156321249990837098930946329559859928728433521252427433494379023824949445785164936127032642339094544808620028353526261752981835525297880465028135399112847161281153414460389703165467739525876538384445746110351561641809273346254142217903310714720310599294953895958436885773489495225982103831596420623273071483716691798967444541841890372511272835300592982739374737571099277652356370360647348724784839684203742309758998874387876542841593565973588345060936129924492587467691542804598132815825872999110300780631592481722052213206010771492336601003182710066727266488949550942336897935481055796423771544954137177407995177501466695465574100801557934179598301318715461713838220333287263136997808093756281698575352925390236568114358655398284283241700051641990051764383512005756933430421802931523685411424059868057389737717209032816486238395498050084360235358582554618855942442612928!
 9214341478982670941767604522251349298729974353338206276224063310048837745273811887225818199822194282936766660000403799148700185686745544123195735187123793059951482159548677010540478202585390833356406182622252080286486668097631561071376418909023606039541245535703806675356765247266803675176738455646966935960226342580015557208962384036477132142966921934724207987296298616757967460829597127485706790346703915786585811127382574325190397829954457674305752992830286341862425450224962419791639827349043594113958984043489575783324648221652497253318119305558561405031050765485899155255426528862875288955457736787420297703784684756366424947670848543073541328403616349134710744683298589809511102012425448846430712271748865869643672237512574076638075779685938518232158037901388513245670422527853876610135195682865233946040200356733860252055134753079007468945261436163812466020943396881829985725346543552854046361041312149937692163026148315182346942096279115494171946607206655284400443565753266414389!
 3427722090557518423691208034737988670796922839869375088816146073838246
42000815393674001886257307369534997308367252810149430436456349752135453195195003507648237036184538497563616339744294309886387198988081880867474958317602229846725019591837178700154647194377440245879644193433052737786174502452497071499070005187269292834587178630917484387855063975477813979761471029748052589306922166622252353734490113539862660281419264762937097680131872041406668762554595422292493849462711775501758620213788767600298051574112378095519278181590820663636540356868332445566200951604633752256882558545829200193063815338736565179457437025887562647321077322764662315226993795825381625074119359925754347032075189639279292162309129902590445512172093189661799346949541502186833770152207591130088868902385799152826398678246546088746278526226814247331885885724166512619590003292244047284089619602649237730727930328698350719950917336222069042662113793573787896339821927111179243751868381757621347292273048411090528931273975665464401599108920563595395506226849034817783401638880747758591!
 0604735866456072994009420006312043562308116498145514965551300585461173552405216715566604133347587598792044559217567756328376722769011541649211224642236039540336845501134265424744898954599679203644242966524827350687996495015740462148251111674016381288237054926766797280057463290619456179973094448723746706306283461937692637284371025062943023983874718041127794451518210864000155847579128464012873995097762977082622634588250520781834576050530815712768164616012674561513103910717697384557873224133003000553471951166901258113520801563037304690809309792735365856491357471135090441275907649029919388200826217393959286123336572970664641027058783855131893465796268593304795602601154503596771014005799333688900402207538482513993086371634336600792371240645761765003641061220543568868817740625305700602301898291109153407117751712442370364363715890220116231710263565013024399121540427012730391660434852892171767800544353796026814476987479405571599377835639966210066927419271468108962040736111634720258!
 9862464744081961204033687520897010880633542844369252180174251211967856
991
10583349449991683094494698470780636754666776782538372304052848929117305480298931061328228524301397442127840108229799225637499186161909539509229235240387265633496244744690348057513565946504625030962501118599636302403654187824457074024589488060507416839071505803242418375586267960448940311842071561842663899300596835196088099155005408191160942615617799649455573893623350956021693845302940741535422017008850593410802153774416896976552390007001131094692800034443560636076613103027287389274226652498990981590123765157043277319218502844881119332011035710571944438712183523225548677264408667340454413536740399010464179288114132773295705233233998780091602670028929046700345506321135518225964545636558027046215314706032147678038734544203988775731536419729437465867827633623111986467460831716249593805163179101602174316003637213513550655568116276716483228796239003714331634809586892438471169048307896510059110496501599283143831201893252516676895589731051802070915612821279478576823150309965487013780!
 1420342350862188944511309174155201212503779765726305117588445579181661243191479349987937188974667677782724332922702482645480284999856755494526946870327503783940036651442685682081309020949057899622100814077366965566279789587599381603739294081898326023119790605145978038449412185507347234440464136333171482978197669866965514005181845419763310556350448849713422360339130058979717346782373472329230517388505004636025681998062728258112455591586015018439090409864180971710075461884773934911273571127107533095079036197946170873344664805241788806067731106455884142874312055368645075413123789205016418245598529170285529823491756815198174953565040453735880040973693100210161974099408857233681398906852305802152257830798584444988490026722154928888612925028852813527173780318207628086658198702133918612113360246187362649128598385704246054788599442082401809197362711751540474656341180486288643987511052601860076320866403208005880981246682872769158288851453555992972145134318817716645564502666336275157!
 1422612127028290235870314678624273023359989513383310690803679122897592
23209005353398361052808487974347050510512429799469695877329008120707972879653583923242657673392144380470361706529595672993234416869309201866257158203504592227460113349178476867831063630236724355370932562694982307261863131091050164320612674246086791670377930940669607135447772041240171387152541478713374566022914274536828100929205588900795084837232678718659556212837654930431227464459773811156396674092749919903096783157044379273964166675109789264093117468241878846539287943914280719137228194506211199604942014167567514155226569328596939900541011164776752925649440428795835710036845090703458019087499993092734233237906647410746289811710104027788338214509831606137185058427903895394961345986945534332173388380442292218684824710117148515834710609975786976196816012437330230684469271055789326166001295993498597491718450334461056240840010952490311291513102073536606699142509744167108918044279263850255766220625664347056888812091343129654781619845396751548210810244160624449318587351214286010858!
 1558715194193976552610624780925408142475964662701919437855071869834968769265751713501764020035993835301783027817671022024492886556546201055956741577115904728583016542256142005482685137191627689825272660007703368359267689271174661458864432562954417051216860837357165976102782388486067014463296368213637303317464871763201427880067424934856844572688678255255509250061546975828854921081222247668229027751168223695025439873245618612099967380501457521453467701080259152981604212231163287602645784892088144425417823517877294636849168637871033559880293528797513166009650345021350087861481652756934254915758254478587897790042101592801135480971581549325386490211513898577566392705820047833081031935861720959285030983719779563846649873345549013365660629589933126670354255179585895342556852221670572063731668209322415546565287062082026853326008665800583966090695049703022545349369418434799181485403175216153188936016989829712382727329618815135404187049273485262656664081364863788716802997434199218404!
 5267003615580203875004096372188655376610564625258596762311209145558061
49237446224865590525941467834123013364881208645131781450546417941645672385775090452177054997583323609161824686637311995974256373924319368360663346878883664893997708709923975176942932704315716340505835198994772125986124659567580313640200779332879786511301194767901228493345593727454467773069942456260202388754930902233573983039664285659923462394343075435576614858518612844661731439799759776844709297927738276470935627949450937574975809402297195543701438592212160580810042397438533045434671191438712266270914012615384462773661088651827155664020489973871853842797408717803985878574872168926362934079370551601837140508771496281607873833623355597883713608096663152189322875105227403710184125482971285689541641949279438506394548386171545286329870074344746461465034144602561936493892557193423209623857284093622072055176469825304006432287560380697731469996601018610184090834745280892809833912909149258303651173029967654739251518450277244844953768047638864019063487296774799021248561273166399844273!
 6186230885517318239967881715818320630969964851472957372369464794425482501448372786430354266996443153981527716867984468577777317672421499306359765181359539276806871032304580251915603646418455272288614825145974092997199452910599833472410418542027208513605430735748762273840792001676346615109061471910813300876924398905054283828587174596002008845764482519031375548086017940341094418988372652319407183137053799835234437595489813215342408428748244280989888047197105452923399847655171775144109635033144384157428360807901341301639615794455908736627890914427598452297630543934086667826431401637571705618813450653637288873684577300189754353864153639381737629018229633304944189194065973057538512133986275646249847032791841511149121135250104685119008961170790218889188062488253842283641190655874808838120731232314134423335314443360965627192108247640392720608888626285258851992830133305890576527282957142619497916499589436317732474958095984149163996087240559405897409518518453701084239110782354479538!
 9772207975226175997379931801766025841678345852154531357858420969913069
95209918786098861244401060741198637447153099351033428616375680948503592757047442658967956619338287688474667387627035779875559654940146628998920998697164854072303398883936761101330378404511307837997043311605332621995442577030710396843975279691973081280251126223600777540005130859749830464540495130970480342613835409134454056413410146219371605655280444840088045303964949297382686502274528229948457746734337867550280099756051009152886664658790262577689571241879315839487297388771483538424812931191683160601354302997848368635277312029030297107783027747389581346519427561606674284360702040023876861045920776965676267878197065606120339730472296548137344619132198858923218674391232241525774192907822570914140181569572845738336229188507948683294933053359319357209167636459558136799238696355674929865113248271394607316285501241323117372648773982965149234267413224728863284602104136696664426772810414959430276723876342860664480790484267719159856451260861870402572744277451430790173615156177315157500!
 5988399640141880497306997550669101292407530374958155784627683114837351610082642105686878635684085892011926825243703903525176669009238408264675261709260269710407047148153102057397997681579182981289235304146491987593615632212451682746172277968157330253255735223022968339827799416034826498569382639736059056232139294855074276485329426710589699458926421441196000845353331145040686537313195714843485415041517234706871596658893468794776160506525205325518877942762000677929174286295148036393715562492149219289945067840972054346001956298474409674862465363711302087381417548333816616561518511191134684732365538248531987858181814501053869413158042894105310850262582815712311114555123885490445347986700257077621741380291892762345238939140280529309686455602087074750296305685666872397749985911356208348594264702238540331396655512294052067722982107716988749068312321865667889253484373928939824303927063104601678559287530601787022213306811299142564872664971680328549439089540115982149377017032767620929!
 8763615294761022963864003909946651742860527160651172140132509592705592
948
39736129981798102567138533177106675033131782787325121501327837748650207033135506227558130481080029460517179886418646938301427222915794350397991778016490528277130295624570910278494445900502500126475623251401612039820325502752696951967074235168421191098209014734553452473851605450203448865261194845794673910324946017546065949133473564878481268188018707352591838083903679072721987136512691128737953771599527413426674052986058267277760841997469706419659029959562956055600022176378828180964658424294431160434101540324161837112411833413369086040738182186785929660060152609792043026905143222568143657469655420071610492607105516213629879300555912132665254334472375154831796125640786777424307070087662202918140655021360191663843859998861232751529035298703495321075289690611404016598021882803768053487149020830871917804775313608584141065967519604324017985891535324434233629910033903677261899140466810276148578721543032757524359320503117165170343024273760823271009896214950638496910029025774167136585!
 0448982075513534469441941851991214566815068435730758765412713166542356681222737222333875877673936228746034106368156518664932281342304242040017305391395804503405968044825751340555490464163357843816058868602279917915156776991848385745819789813620129705387867266068895188507220074426102970737128356942669779338208780912705267402281903448878106828049595910794308881004695618358720934323233044096976123771968962982119916878709833961134526201769594003458673833978234147321913824997499140658967734474340283580315374798489967619249699851822401768193052100224551085786038469056876636412890897515543665065616506192218185586063952563520434789459161679812323605749683748234389055596433504292754772607193219830825380715538852177309242994131441902635580211053579886653626415101464607119855982928954907551481369440936071764942629103403817182161439604176985281732820882103690612597704683140598765898142685317003106627425740828091023311681597595865485617816146064344765193028717343009218001005873954834544!
 0376276460138242763405329465580888477374668362561690834309727006997481
78242457419426260777097989142290035008433211923977359095594574681566469478110101036963569468678903093375711027620866070878210655553779260881641337529391559615391062381538131481317662760323198880497921677961104910238832275063964710076965247441460982262594476729758448101388084101452159329887353851807306981009460126167868930860243784986072082802669244510981539169597360182132879440792230675841298484903656303436908701425831419899105413985226930754669501999027720119934380998096571948285919876724145591715959557500060243914734649999094962280732089018531774166215707333892838863916441375939741779799619064527740965797692825365348782886469722536557545252280316884710392694299440177441505654108392481853809722462655146890300020782127549450527915436981754966618751347831918657412558355397407737334160156114452815017161751179996399406119110086304704795713409531582791149697550614252596618790194047452875733438892990800297698778930869873399027324722936187651932972809463921588010581209173303560696!
 0882552321797005760004159044881793922984453580379746071294707608200651516833656451241281129400207911460827424310952033600285057851031781296901119673208609949003674260657883323675998903174678418827376211282261504373578261282392358326023506215025388120503808761075779234110200663883596461693181575042860662121240253081275797002578725384490578740240767751761182828022057007680331731437332224972089532223176991483092291852524674905187716587192833914512722243910768803814676477682560519916242899466641586857003358971005817274611700131317272015264539575067017238873314438527194969975372458504518511212453237600924304723995439893327632584741996602126125298056618497682305041205726830278895901298479037010123634777326720390810711639303289268969858980276042853098125791957324080531453599950680281647637678616204990872205057179263264470138021032744757850959815376927943735399559906920110868457276158737474149781321992210097946361683688376980068019326724635633139361980228446602908257497088761161261!
 9391798898914147203605599369088389305805359369339114503166658376790682
53381015494633685052702160528658989694225709635345492408795324498345015230231036833493083408235168291518964166715750476290195346765505045433189157265705149877638414907912672838031790537940390655134324257931330413249480760881046973124954534545785626432924575397544363110660436528940344384293413102992185638619690395362293619010163993528535010572993277183944687864902771924119694776679674321691661740183719065604639000765211961148350720755592910178537877056954207460072534754632987591800830202715029774978915283989453325540719516665753230926495139421142554045115377864569662346800500105576656862225655975320006948536438622303798485693682238749031954900491665783397436698609183391998723719472588452887254012846450566305472362710992642785702458292237304220010398925143760741811976799800496115848890313657440481472776934979335196907912412868049505017744535830567404267328578975726402516811291440172893889390600786220339806661965078580853482490794371510593186923206404967386563531281304079107222!
 2135766548218780519858530019883207194602635121427993700694070856559587246813655434167121600702677482923620401452985056021224418548337825955416419100110698441606111936134157284385573768224370273680210549049859651658297294455519182415160406551183970720272020846402043930729863001390554348608057272087118125877938449849043705292103749701001663998151949476294999864284937367525363175218833130871088807978839241770462788936077376914701380205788950494781158875639904502685755056174160558994625034600921021093521309476759343508224228736527388837423211347106010920493956173174885378022731466288416038867881534237539156003774078668328693984834808067071923600158571920292311134173510221745594119959835444561375619179631107040180474480380943839754826744551977505936659329500786951398347929873388781017794560817544738135591808299812498231500373506626543377645218316617295923566550503629887119356012041679383725200771593141903519272458016944939389396886129000119117055885151579807832197586364396223411!
 5591247845187082904022020705526888567677675720843301962157900852947127
98233970767046678343101904313793909567418493179487559919905514096196893922557331938718224016540438942429761659128259606455657678962695006754576610574970349472098549641722192264151810279891105903306539154665967022021495454292522568011997322331862993012889772600548883051801907365617848724489615573216482574547538161434670840182571136375339420168400511442960030308232427627244024934395610559393307378279093954401080585108538114412665516154280952868117050960782891078997195299893421677946200201699898496514405533694909314415663747898278927807417117097798317152252276910176290637536782986869272805898815004823069790734921618995536707907033479375433604945307207964877016335038661247716798894046172089012433709581716007094122493621549649575492391338905213792848132560065407087219295204117451146578362108110624285418078166194941845801094848226063578640095318038055317525908824674419440837169751263837722218999035166081850378401036964191489110716279202497884078503577014056163478742264000063558174!
 6899577459816171765424735821336343905574633670041826313143611418160332966762967600167994205533403640351816660549908972163789101933149352978816209395419682065819064283642662413237059039256804645463665882027057632649182915871363604687363845054497488839362556344690258479973397243782686679200489425440222386948917200466558257328802332499435398108946466293862106782615852789957371136482549194966699900465148330478673621389610739799157349933726567917382050679489033578517034801568487119057331503073236481575437192770782678884988301848646539821183228847745990682339746215612585382662372283196986025204337862773557515550720101605978712174650697369997748850582368618239740596282389906171845816823966993940423403802715214934164580665060942551663306049310716719733083603311809122267282616536491778154547133361395136935789707903812910081720867497056696396275052837274397916287648645576810769790438777885368984373003601431294866492623107727490370595621425875142932668782847880787628478186245956781686!
 6258302682036445978850982950892525944172113535585941142399515351241488
610
05811481337144762057489372241692219063913137828116201787876086438886050658708324086986394651945116888379527746353597780059964225118812756016017915902247521397691067986320928338406008610218467139811866120510377179678586471588911919780820651104987209273293674446645552278333155612798465198834836197608015831317906745512410020867752382206554614559397489786921632321555311929060258852766336700281085004036776020246255778526526697703400695921577615647642596347433564716021855127675264892216759980154725911835301779011021484702267325079585252754842316261589296749128014980057541492894372407464438111610968912792553348665043947776470166897046624970217334733680794773210861934434226421608580130350246371110894166810265036737521403282434293369193737263789168983387513755579102654529523137287857195672725035232725011490885240111221231522395356681417563608279688942019932324527491150005680661906710073056211312564018295049933428178361120044138708304541177799082829852391031652175532217390838633772407!
 0260851601865097547228451197539120397627596019905383829494982268416069423707468528511859666876879722986460275718450299124692064899469489774830505013519745922277894280494588893626617557558501668491138034540655338404509254779564836853141322067280529532217757679973297500007720903025851044324639934067451094331243587323598628587936132286240082781507656081553948158074626359271910622864529121954899127388993476898406306935015305808395651394402432325066622429876592396826941031130834151196755536137839854221179219411449561916538849185979570764326736974593593810668775110459390561587596349661795677581631290731439520021171624160236387809632990133247037859386552914051894854020217477434941180746937803653261313994620894555749060397697094955008026496879083392220773063033152719944794899781981828956639787262359965053845084022616071288706919179553483412729155634507839290955496217637809414476039267620299120979785261012616158712707535586788607013322937414800980534901978765117235013926032028283193!
 8137530461743861854870731522878960438016260215193217278125010153660955
39593948266297850096472147696304142092856083675536971457674465825137792689300349818767309536656154094018181213814515718934852114137632397475912493597045511811135126263852182268414222905761672336221741638596959428555841526603258173569687347871528253854686617083171567897986920796685793852038673279363131109701750909153639715774785466923898418800085984984931159137283608134143739359840877268138815763164529904003317006143551587132104849086040863099554582932498512694150896588966201964410303356985757879719137187474794198902398557644542753175912782182067919400959794488980216551994749107670219496596100713430683605884398062502933339291805043787495845783955975219184993991566568420764440157702637349736079804389437323371035779462949595697528642416907667162597431170280130433527213920989591016293150314406167603304487131088893032925209532460424387158071374113333496752189467842043520120051017155888101407279033709013906082962325736543490225158571597343839643254968282425392777124223574763651474!
 6268630421600367373905728097415180263325364778806297783650316962478876630494658904139814536834964837676379724030131546539880841739693614258671793819140481431262211849010477107002065136340198655824595491518936088602077543374425879392350378338502501167727052720609919380261179501593818710043945478642611784251461725602723804763286997966113116147174598788554203789603048511936947192108774950855386289958503777799044798797681917449414290009803597502443144572163879873259333474843304573940812551247937720838298860465524871445206812031443287202182491713332412389413032203595572780514404956058136514098616007905100746445574326539394539164730244554090449359189950093007018061723337167982022317326195486552606537659624069393912796408926084161148803306464994054074645973148240396568634321593129943937077821600270955871259263938062653090637227159030214454082789035367016709815238983270423840016348101274986996593833187719507936973083569436728856506110250945352047041905954246820198982796106997322621!
 3662816736312298905624737776292375576101165400655938523727391506690645
76794639205897165228649774345022841403508880830934461816836667371572514163826056268400920108841378388920760123000864027233105874037792368077723633760999633454914229514026340740695000357192016355410390524035290727326982389146458549806071219716833951774684572732705783001650434385226732890660418884113825083413613799619810169705273677247197959326117762234453981953204724407339455212937548499646212828779894759263556471124809844788635485768440400796454086534311784469866699631550715355346753318278942174905295408470023651559371913007076532061016462428460575445913627408024944264302474203872311368140350116491673880339796281288237086263147773710950925211669667728400056696523553312357273447122505849334210006543804671533515249182317846165102580881801644604999405884890852354086151838940436071934067129236726069448064599978077724922090290386244074458697014205902219888068460965151709482306000964657014364407668066372796875694071351567827990649079063277209044524503248575792807082252032623968335!
 4851586069314597838528361694563361863149568957512520542758340843376543877357558113323322445874169130446233328853040341681853276507962953325671968030466262226939292423381761474062176943813018164468362506028878688263884862284407686498705054382292580658487040403556257325674952011143193754775407709196207953718148825061663069254831888871623685251554848108075745353475665069108998902579006747116536104463548486258453296011166055248123665813348443402303383876694730853114682295290092852033970729724784595032639730470969287727556674107879212706769691471916296467784842643755418575698510816587182715147495503615650037132073805452127386073713493283299506794838104667216961316674556498386410665538519571147797989780405313153130469535595601250122307301351228235903089741315318724606576765069273120754053562280539695667094045543310016992009340160301510967007087033089628658695481117116447222429564592624702284383736316827618263814545273819011571508952201669555895255462206792074276777692308115226475!
 1106824433913416500252404069330258598945633927036419440753978120082182
13585045547352157480438705096537744614781134687165655588835197279213185045506835539430760503690093629623878364086670129443989385444418785088158837508762900011444690128881295585567752375216598684934324220643331265915748872953995338622517538068215345051124474409469110451163239958515057551231258294012367477151579026785466343783299768437518167132466395464302078876838451413313112004383627209472896677974394888903403933393477149165560987844062612358122351295492562595858319163624484491123953657658710507880739670881097669121051336720210884909249834814108085147197931198325601491340711816926537717669488632567738508113099293924279731126967745834906089590146797112197545328687949100384969406070056456723771053491890644506528029557447570185785935333025343731414420530358189472502565974199223900855033384792966237076723346362903759950087543075025796397415020398849590375857682910017344100301639017484856330642201175201778857984274579591250260727814703573118803108254072233705618403981464308667013!
 2641399107350024418877255635131802012518580814897540973697308148730540887173734744284091929164342440210244964263928735739824038105842003734586953107032797985022930946626806901792724178709806252382975492674271740109313390844006031771503988397175651715664250661408635197545734597473285460352577081637908053873158069228053306986610717617047231894172238541326756768641085069361977285088089991205932294787017236599579112547404902304217356116439548935384403866196678322738363099111005285837078249625061455188256938516357639930307559070740917791768960090942166268639945930987166518752762806121677655991791029060977988760291131293858955350180182828228425127176741423279437724908344684215709467901049134293973815659351333607061912518396634898789049470872644134458081024139652538971443908917775225241178022016887498243016237329016542389588802987575006283104455394872770124930831524949797471267648110417923690325649790862147591407233856998568489932072281268315037098991931307602227680917759601941966!
 3136065337542651454170789726564216949912776720193565187129742389742007
742
27060081833146868926602940980858395534529813264337429483971371578266348938881758528599643215246849202217050423643862971531703786120257828547239685501094726486865273393613270531709184960842867973063004361654213462676610101700359875797906998622320548802641853248629251096168796598076953897654536145457445540016522391424814892972938142790625588597012238728348902405738552464234439119934502720657717152104991279089921169924264097040941620723180394969416889854265615303280722468255424581111427009573232719015598853789575571161924596312339001389238727215278612420381681489646782141666758766918285458524439413730677146403734330940413644769293578325756754722460492377254530663122614055017563811599943197027883656146997453561866251992177475878966802204666776259774383389956603904036282986148270213861905360663668457915145149129662414918969008081539878655838537811570342660344304822550131978660476762711151914132960639612967956751485560535966427176487338775484216680732679344682737453566108015086057!
 4339919862152957878761118559244723527131690090072760229277857204073949284081028003889856654021555633375622291458982640581718488090352195923229845591916946392957967530091549871090141039887383479249362893105797115046206176901054689301366912564960764551910533627317915600645964827476548057231889471398410986013028648665616266629576250098178394457435203937949163186162324508410436164555398170233396828075408160676789235051027647052040995697148193078321599322556225791336901779370937542504178257657070596223970542412067164187424641557566178175183211009184626487177650911903345723077873178804849377654425394524714942409147933707351348787631457698510024967498296725718389578378464947863985440231214546407023160932103605559461954760831841078154975855244947322143893205233734975829477293697854244733192165853383175552249465848759397461203136817692491287900551784037075161061508632843344567384956658915034942405200789741383221214924671798085284634286820447027578369882865730447370179875498833918216!
 4436320438360275261130900446100374779902794907612459938112405161919960
59651390077909634293583119034305624356715734095056163628748278205876154899881362284006319511195201780809674906704976589428203193245913242559617114164316694416180155240661886331173995068796437781553809722292974598686743643437724460225008217013149369918140245420915767683955013168181074034283041126865254986803264579323184502950977452013898055358194141019131984833867985554819940171661584883611814850491864675639177286330583746651251909951762786218221778373921604284381236585503598776831679887691766786403769600339672806404573452597520193285403903843278475185561475310226363733593846397999451197734568566544674283895819110350875024475420750117547265579343040641644816400018548961723573698765002091463124400680506656182113202933685956754722666466024686854200803926074056629829966228278866733064506550328841629388295625887554096946807070658121980508578924056678207301913200670603642168364916525631353776254830895948420536098722955582752459315009433419009078154671122572710798521222737556158326!
 1030239205316792788614118329822645975576534045423461049029572239587533119579619502289460503083569740319848247937503897398279538992068971891296270970268160179994882368515441024906345037933046385059805006893688509215960924934546170186966470225326193881930168212264843687779523961813687773501783987601428797208483664107732876428869253587146978397261888103384503337118151711484715753572829111377136313197782120245684609697774921963796847374969109456442146235274675272612853018007895735430327535505890027607241710824277977227327359006266638666960135223025608509729963153757824337925071621720744063331379638751714439266238114553939004388678518424717587537903066366609326888319312103232072351409070336054165750822090603372016681138850314684644519169504365588661521259506938284344581528708712282931407275559336996812109903515910164212560711075765634430635117056731674352895819475495216114251931100258904134528900750775831818122670748616937051137474051447945461979530174760061067934534837739405521!
 3592998818346545867982587586043173404055460118233649355330635908322439
16668061210292859293099627572450312748943909642963320873077467150077733008339343158859637012443376957769454826077160976708615481666794238910350609046146044130396871368948867998350878040680643816217724063479178119162006295777701399370934394432172497221823195212537941326027533674568558608844105908511230270606553796894861190333431182933910876196185654145709689387436957061234280197733557389624076816315844335848770733607207064012636724168412550983009513819576886151246486601910441900040538733356712015287826261145314440019490501156417180146235530033460802176758915614799503714673327458150272811272118264669225554441318839859509334196239859455611849476747865322071492014140435873483891207105258163644906920398813879272899285398846067946999733862878432225100374328066659264199306084693616756774847179955538224978574655672505567489493096000388111650259900059937401738666047062621238852848170109467101387683522002537004909446671047557900086274869986075801005598973977527485320741834661939937899!
 9761075399302511442615689204855197230784075822784838312358647816828634723970507033770155108037216863941507175891202523520030936445381610008908813050203916934115910823275492996997841354483322967187542418224655200379622790431069770241676548293949761640495002830983893942602243046169048435580474772240387178669349153928857863022989243143684173047030157010902306067503702447200332641348728560100321972365652015909492934148262122999823173320730648796012037972764731556363037609293837342346820918332034208803758319968924099274936352907356498472392751796483564603811318074452718462234585979449722843180527406250005784420048300523823875108485542664866184058788046412068103591989839609872713115064108184549045557992760943542184006717645354861510528247568296268598180602937728298792442529438708541207310252940498327891791277490031521755214882526034714160181953845417671180625218368758194154070367681561576618172047799869233146403361380334652040184261580390264182536185722468448606128873686999272027!
 4162680637666211206929034619695458113643447415987140189211660466226582
66159054206976394359312366204552875603421650034736011943422561491403201579417118517154275639651725686453846709545248371305948985825597452775643783720939037376064487578053808966666139918396305543463515315481858867792629127253634262889852568544646981449746189241495863663671981400650685888608602242673379881276879694064970299154524527213257542819532491731150662085866520774909529651007534040492273565482829570256906293588816904146510697177724209554461302585438178630485080605899063738090543069502613842422270537535459859099326696733216515194817253453274733360274472585272453947857870490548475863311571836633235913234758825934064152103907287193632679637592847331316123397815498565077459574263019250136134421817786573268459498039257419696999987645982495670940955954906451431929975329699029290181133468491893973167337404737610215349790280131722337912799863914710105736458088249640377936691442602252243291822035969479652296324150462593037636643284086561602312161099027177979404824423743772421754!
 5327436903074926261725888065223326141060338165320932320266991087084758681985639904985750117619963690596992541043687532918190720041575982623454667270157369711333570414032093793451266060707990655868796161579984934109540903212436544310873161586375727374817450178665573793984866922911759920434224760064859760054978280629418739147496645660197689263616598289656557445804099142689094724970673522047011619153600945273632530666440201002320187322781976148686634898913273470144482032429311784100915283333037691119705125251189029708294297488398137149977805278164934370560432600535269810691898658868981610889926992043454781553574046529382255475792396512578169849867342182185312407343115296082141120919999406160101582191273730165017695811861903668977927569046785710181059393731438811929147494435652218962602863258663651901745365921218638768107774209158364690909165182739807531030664998062448492774756188452973294727139148997268407785897786865604872330575242285717247344366674181812327084159179147861681!
 9780032875242194648011931593793515239417409041909841257809909038894077
942
04672704915345000248604274553073068364722207589308219944523472145218428256209291437681438780213969363997860221263221098220773571441294126406537652642854348297069365511680672830614815535006779927342874671740836666020537292204848408702523012585717914569665795239635968627064590372072680587943981340066767014117658125223348104838686771740587973689615599621784654973073934095466043145860154049561577645616734472126427468746140830206387935980428496622472232550466095231768172458636261128483387407650758288956774589588736109519742072321262333556151933824717602181868389530067975021207690438838128356258145012500711902715651443462706481495059019699613904056079067372607241129244719947702838483531863329817619994731283314491596877750429032797703476193806295512384013842291003576769296985959054439828926666087801034405967055905207668370210159521951394544773118741072352794560844354946676079288268193567646665891613621404247856427926815625448506316685268327524656002747765241279427053419348280546267!
 0281599245391248739375580940125919778346533655735625937668087699752574602702166964925299837753819693846254708518861510475226475136489188335738189169712195832681004195765377021192118272566508896682467504866699659885042041191615332089885672380926018142811762344795582942880858136988607372754974912130687437421943014866766259691695195368856911749382319697559557940217938873722515159971405447289708395510365486662819650368486846610392745568414363590177744038756512080771456364877728443833156357249683675631481039438968092119282337414507618630565777737794145333025782078879337135523281930667781034744878814533022767115982463014677391318064699017145323181957296401713829934458665281042390292044042050301085037228897072266732041640758383521162554729354209770671865262076294672043633643273505663204112521287225894149976280468914855507597361465051176412579302836974532036046506156923811972132510561806134521343817681732762841418102164413417024917558436568114547977751958280662844249750379174772362!
 0420424505736306091115484024269956433600353014366659751182803280395342
10540491910305673142107541302357934877234239073959389300436891328148546882197053482680640613344760357465909065646098009717176995752043755635452168504422439082780834807215680031213805137447557386633580661289825695253557232663073951954063697946913927391950929709929134880148676072714978516827026905071076789657653044046336262688872262742931202875173849755421431504998907456461215695542535701520147462658735882915448693671682109726387703669298762703332692676405112356591787736324770461161187528378640880382801363490414508513182955873803365715923755404374036600943126624937447350183694088350123180570255108941846936668830380623604361689986818150462814543993708439467237952819530328860609963154780541105397983173910481917987933763099182400716369535925678358669990852568283461799920448492158286825542660666948065905588375476747789006303076397732011916264419312313733282236418119343830505865855449829986899114668131171194218916017937360257596321853210486874992047347029942678712761333423766834282!
 2565756501574897202803431803206244849572309739005715093145389184344943828397373451579980515625916432262701418620623694475930214105085028120360491099390536847805602166270463685525727413290604228995635102522847519070308253273849955553304495780330902592753163522180988988262911598033711257017217676690454568064922305157474689155717101756724035418935061128887302404314431986958652186676073303854903602774609635450195252965340703015970324098511502529305886567190112508328471496806489438130078371862392446817902162173569122887239480216484647377517681894212220710356555965079794844990082719355281479143404037138717208176090319885645874610810991059369177437947128793689503247741864858064819679956146436708248708993683951315072030565303007886859820360720669916737616414756654287719353591044521169167692816396364562978340737064788274061834054357077412161383202873787903785858932745536149564461255050554782668745445509088688946927185988949423449507483821850184341303236200466807001917504592628408385!
 0536431267686980340268115807098103458986041308417355099569441517991754
32334806330732613391399797880003821091327660145496111570428580281606751623381353863052429563833095032019287816413249223004761179535824956059145300042464478806213024689786559692629257635740287994013569211675539040026996645560256829723695049590996027170973816661686780048327292990594281029681615746963060606101062267170212539667479513893813748538953517578329451364260069361377774400056699301740201136677317877044694506012922607496911061576207637893345041373365119560032907835235964653265747497435286721116298075675851083850160699896935867152259646305700913908762874164925417081690968473095488602332982888001016529628089769877231969074210270093488809344555121881883365197843185355960674763507221611787287356394656554342761406855941242591214170781163030801019258762199380989589430509396825182771303303349266488532956187952664463190634938964927974779630581823776065803540227966910818093226725142614287685085502340363959705621412515137620467224442897997855454131901372056002945670634038242991780!
 7512572448446357715258934722336845268000504905794076592611834046276469983532198933127117327105112938774627200813172632086712472478310369532505711668466933919993838341653013309247729429358470743882634240070132171320972827494796116356678261507156628250212520627638975156658513406045529010926112638166224236689927106490418862700144211287359239399825005658006432506075094589358500721807293223082461082581858746713340673344326805154756527611229009421546556183103412687017228654162269075744666374025785058198390337266853912834251138897761037015547059697842843812110416674964236193689840635613876227959545215146892881328239439636612945013878167659092925089753247166912368348275154607827280445182434537596550492568064853230999281451475345509275552779627941424557440525521882532395562508572117996353019567581177443676255097319751155651484513728542407490483808199558809151611793921910426190928485781613905148231474455310151615917841459994712239051659694410397272957411583397459390620500775807095967!
 6589892496143734348781563774420837499914618345134117857213565765100288
21653437883890697229988629462268685195628832320570537894217895936784489997283808225129585737429565314870430403219543301647220458139790574528802074728588103114085879874721186328648984473405311460440048001118964742165719993115889037205900314664181261792091194088785006677801099918546190934892669185091189985328175801561496344252727420213230832626253782975374780849648620574737729805950490214555010896934806451097433300599798555320331318269175191591950065584884365516563352350794974414869955459346826667617498419319232391985849314290703397249074104335315507161857712844527045561514872082178790107580994599078190340768484559080348525612112446388323887760077256405950585761450617292910176342106201632276313357086984161133384335191595521993423910456556597310082316994799784563195983411430563705888413585723243945999371608451544322473332574743269029321113405536052609072416883753354361412870234237825270895382357658516596417328110042367022479426589489542002462779779309893450760213624171370310651!
 3275975961348992427004704717253332642277426234756632022517984249524982127655951139456814127007662315485158257359633538267179226699363339180668550948028966397016335803063577792061512929958681816023327826828756138695348983385807840486775650291623281022321262862370364711672590911162207449944470337154671719355796034064957218399132431571758689056357820119356227777634216236724756676876172206101521338942884427554638039142982934097063768466511699684549774924842162345498790190059012230711024880588049920820267341521334526194822718040452465922884429554190815449214580890457049392729832168834134299536825867464108367284683313287432198123007451303144400768357402446278097701300214218712351188443907814286457148671303162743814053388576038852946905077691124396402844275392116011246848558859087111204331369833551298317704475439527351180945626273650721342386754878162350966398758989078105843337220397544204986189921453439457001076699302333404507062355822832197939121071633904478457406495968373683599!
 9610270559810934327545718226581916273764083264919446339254141257047278
930
01218140995028817766321849854530856667900703762657705838273174956120917523247601272848854422298986799882662839508678945771438815809675505801148163295101341784549495324847435024616682604908605434986260707695220684576930888101993638860205690810166450518721815005743472746924004566280135244242904323796847683264995978599541876796098882406497426652295844069729776191462648978315102874006697923620332060404453547944198199894752531957170520855316177791641077276461392157117740299135555015167097966196524062222914160997227029865408714690791932911101746040120652081190334793350740933967335438106677644251621091064097827740393472409226971399864193240183367625787951661669211485708440347311098577186041438065703058114089652279903370706792777717324019606366905990239660061747596602743647723341713211256406957304300738718969760826253778407616890456503696412101726055110506318058783071771045716789172093155510051312624885074971257088277608184629735156660641381318577569232194221616981981833861591091112!
 1296406834764541498748925967693915520889997434834825109771717334774849042415704476573657457752887031370873919072182505772993177204212596617789094627810737489396727533366949775977576140133909640059949599124774240582260227674347914043659775007117490687276269345637528762791538610334809869295742898490087041375521603759467876439843626959137289972377200731453366733526996836629260856570583903882359383118961476361331704366529764436074940164969717395660023248475312782613511627451693498591497284257801156635401125748838344957820547565134867525353393094929877785668247383224713634127815663824590502307339832536083003873024839639954184028662980876689960054360674637478175973859320010970384009432908482521486078558007203028392624814842107356768943650847829172394313537730783382862045256079371434798902477544800015738911657789491143660036793543639320677626302110521521013592154694544997058887628365793340606132391102338123478911651339606482327343027611585343257078225967456692639944506549281999054!
 0278815070629903621350504523173250136706243941061807667613786614145637
85766044207492422926977034984501265149216717696331051676726784883729549005678657239784427631134732497719890600761875914089607306658215138449134561555571151084513215973829110011142873895994616239385058360323234420828814504339150737808186319372078380311364175837348751976507933520535426106483964680022831803234766267824389703438282856767409938801224558418282506165887184191773971348424955753553615428351062448328211410756609679699510482522794215870693151868682289065990544542897676834078428468663516950735929005944652517186518412045443271163745245912494051031774974327164330478610425203579403271210384808446436333013715290149884275237794983457479987528151196515943440298872149170655559184939637362023534636888218131437208134936589804188526181461668564638974283915059558370394712383217345273482136156961283263085165038215295650842082471083485563684152892779777775636659828621565022125074611675903211654209654147012294283854575672141738992979980052464181684733481802173252198821195035184670582!
 8084292711592599970153750974790079509303318805655801013980812298456546816187153857992812861037660068440830849839727976370041660306524614826604283117793289355874205593451881326476050299179833827163739598602358878513460926732319515887297292466770976350989467701402822922459093649319251931742859694152366564659951119254685886480010377793163073879444378711516343580868385509803616734117746795525054156963255517565930011098710343833359200752031771871321169429737366650481616228139743691943602197933189113714775792846048510574542832874817932872278710961589682604151910321603588677947479259298850999499049216484971385441255339167379832698374244874127454709620633713904740483607941575293633639044817954141117349362026048512012305360554368887938629144807879100525559893282527733543592470673999726922739927756533972566967152409677307351761299221420255506531429549087426170533585033317774602589152893788654307666139718694743502046969668750567663782500133665443412014978039533409484305880408087138695!
 3158989175443230557614844599297128725620764700238088330825578637544806
73545385987638085847636506952673628098611990040267981130204610101944598035927435305744929624227377339552016915800533206697551301973113370391256119133054329794169919294829390557267957952817726968793291142577732050021476019969815220206152451794238984581852682797897974405416564805621008330286054730103160503201457405188876198453502969999264657956500190448278241738609540179103702546381436244525088702922663923366404351967800356654544364250362507952964892139065648414018273697145021452643164662100373809950418558874896308246574073342630025309949781559142128751970527100115710171637749883378795656865393442661195440774144399248742320604226615977147800654896433496235839622113531257289820135598481565702045748210917373786628025393070446554368897474906584779494095981224478743221866015300973454802469617267129477879519441513440173011883236744872044780623663700352425861765683808485736885690237092290882122272083417008979129256543541940782689930557315191699011807050189588596474048139046260970734!
 1954494227067754033537102964836062032755617310215914346844155390956590974654992791537633294735996020089802640794682925361277898320585360585618611894514061132224271286111668672502570336348863158571739711603288212386637491874566260429531898520879176927985320596870827320607720490875624976239850639187378806361073721159075733629897056657468837735159852306207834856672673994501972457061604170286561431266850797557168950806738619613357613077933856652942611789955761282203962786163036697657292746317600522624881300262015934469599332301304443908514144069612949095143511324043728180378030527016147459666973182339616557550910094477201123130169927082110437284835364658022798435317648760439520807362259586407873458191531059455825240310753772157432145713447781843098447499918919885723488153921904520156617192555429987533454002381109748520270053711471238979747010158547538626802813231702862012903865851442364486492865523581713720293880175294101022520285691187186079645010876529842532971631174418650752!
 0187692927464210613131762030850679066588256061616245123298333856021225
19961320728581640702090623127183448482230078940409243916327452408745667813673557003975514278073920034353313212822873286895420618818832914189042392958293492930594813919419210154303243567447699243068489549520239545645503065047097125895308641001156968732728057534628882092894998037694276715237246907452768749411737611248907019198792964232474948371863913292204033404762728529048057020058877226359767881747157982142176417664349005485153222335130502004742660842602758111430811587735785368141365683667133917403160705650379085284322678216464359301519207099123433844476197489701363751895168498630633471243935719934533251192434024867226850967122444228095486209670642071460389235934010684400475369638649751359735833109378326001909251574431920376122937708905574543628477384533513756498116412336892295228886685199915916299617867208191837173473070068228127018606502753029833901466999574794461070267161116027871706500234454852655318046152798030135889431096643822247543977162304676463531802819964493756623!
 7115116051978758708342921467498000152971410916725705796936154875615717823583111771013590125353955687127457997201759260654619005937960897846190272218145072358795484271499133150396203051241109165044196697558251321818617835694275540614559727053523826735711023180819720853948601822054826898663602869566818348668524544614408406952182633280487604446919008266967629645490754572236923327441664913195564864399458899338775870098805433186399855404932306776159182859287438960578046409842089740550683296113972392222269790364697767875517303966644741574726584654780659639564895358195570035797166891226946992715128448647722739811741814886633192899465947060089211318989429677196570486185276861342368815000041723800282976700527792276554084855433348616889849738718678861898732323800424009638640679843517162511269725924658678721107053801531949577164948506298157989469417142820421641655866599072861984938491754802695846196422947793149812238364153855703808978900761390103234971796963254719656491227455826354132!
 3414243643574594749297927856960776359148472801212182057123722912544332
455
66053407484951814467690589598069520034923001249866193762108500512364425478264357338213296609669731653535425624730809028817761133739720629836430505408619406221838502449854756687212600676339743731532578383548748244097809739336148731020239045338094741597766456031376811062989214090166123270039005050229476135188591241064706560312980146088899492786235478123370756373524321271800610530855171703405360330737630187113669353217698428260176112186006358489653414360670914199779246409721142744954698914635554828643401104014722300847400589719394255567755784403993657012637700923304017720157097140226189725490249963962566890848589775041571304292715928933801462762817804245124334611567291708721811698669587131261066558109715515556963348198442249377278998490016913340650139225583745253644587113153774964284515400536404218597690932979007200836296202467322396588374131752905866262694467352104426037919315211035606156132717795833242389410113783086245462951409581718941653818826098581362550702814720744101032!
 2838569770121266793214647280115968243771101640588292038122298228255056488502000903159908409669801425015995974256102202631836172557111491392144361101853384556828607031576644860576825091946215850695082849408530180664499120714286759898668841279064653948357153197916296821916428762691256721694722877436722690746310853419544061133608487163008322078153715481543546458370259485036167470707302758499672313280960162936123357408505167586704703228598724739808647326794039491393791308497363241413902943928457663835198421867634664301808689606921433831960422100947209843976665228225443683042220547014325651194268703971992934248063911831147159679288276590160658481161372294419943326376901682224343559260799088203400234350990585913929771576049472707702830957584270709136977043713575902026722712135534497330430506741037054407734595843092276937484039563820488592647043863621119935422550000256114497085052705009162892960498473983059770893141204198377018700063858078442617736127875809955159503846662074848157!
 2501821235408254337982027525680745741779553025894681945776460653749932
69932888205395151847408514744363568210924250171052586349534579159028715221299536595915807697373406864938135614834686259397425293493723922991126095352789014741520946191693752339607918005888183785066885788221740893022376707892649055901783573302904986104756624088404630174420916460792765924033500521369750536665803340501312807124279897000627372915259070166674643724566787432560019555424209445336334393919567680459087133098344796212966325811637654664808900711247402815156434346310814453273397154323345449268619307448373532903424290227063234450908155379512377571610492712179818535358509941553871821944942708611496926208222831105450526017646944214984796916249383350864389979794372572585034947332112364201564544595832321025867338212082720110236171813291628134769361336231630005551854169945123703087471769347530638094914882823181146014847359176501968305714704713971680541712076085415277906148408154352770547111386619355191825554967376875375655901891589207674352614885293763210787312387572064840823!
 7375303288464023488292875867457517411964259554732547129988784413376971744782895148060629750159810410965179248737254241586060709263434511221805151576805039523207983907038445590802489767512428111868311223535944953623328051564284509116382532846827690377989405609730496598216774794290605229064271154090759630490750045786694806442407914160424989736396223835534265688248924903094013532275982922676180213994468018996032067580342939794795005811235633986972790236701977628984073319861429708994553409037260576822344748869201029764887194618758629342131709327277769165187100249899666585508381133567896174811392400806920441462566538294522339155160459482487027752402656030802416084063358310499159313085394742690732347208841191820248470757329115072124544689852685531159985111793938108020977347381749339998889738565369940387595253362174823947154783480058946039366591889289962175210471630466038444412373450910382932483894560012983649341732042243216564275828626964629870549437086474634277118529382480439358!
 2160198607006217119659183259180757449365566031905742103306975370732230
14044293913607299742314821862057127972408432297422253064784702228772898891720445413641683018620592669478106500157727303468399829551105996427519834420909942982394136155832653884068529837501961002674327960832267660898243739923045838193599445520364710959082518991662915931963986386099844252455919444237409807650556117505789614643591992556426759631196277837512874653796523866525681695700326964287850720184716605737922725209523210990761127024194913962807481696514943204319306489969675235237780133601715355794152722674404383547747834615417136108071971047308860237450312138900813256243172049768868022829255024334939599178274676959411554430985036164313163944257325967461417580663424492506040232202802946987375182931270655413778298861958481093502663645207509319615250820150239512810696188302083787791753142473780066613661071255613809568754909763022481825473369577744250136333465052729624195150307001629823433990910006155502494673712884321972353399452938067223419621701616343292479375744591466577156!
 2668285110792098013823602779085249086140613238204702960336142123967891694992342321715288832979939112946652538472686405318731979322677702760178715157112713190221683641694532904519520461503355347344697871415224470877070845614120831498011066671652074655536718787287374690498716276246805308575835228041919956073276659175695773002879207062873063562282907109317225412441028996562194393033935979312729824901885059982075302805818268734536262076988428838928963551772699775527089280711983832712641649813585056609297466819414332203763601603170238645401038041933756887455935123839827605652993796946311157362367658035157564368020797909806973589289503336310275094784781357000647031676531798437489385931992844679705050146584222778269606759197774314228489834622963809575224532923435922351304412034590961012744858914050582747677591103619718748112625960272458667655714727549394120555133622891690426382083573995206157239464517444989912970211065709594498556475671053910136404655906165911779062436459573934607!
 1857771170611184517001545450809988500405931558750951206165545631462007
38739443327439156540822226551667114981361350737399548933917480863741966480932781710026395502591404777519347205269361172155291928948911285123125631052770972349386770893098856247973589327598084634232185162498530503627316455508600244801128794870890218752873453929413161466208814826808614162015915549122041986025984886099100100893552198600427434057310121427340294759435672697762854277727675979540678321549998708026058381328690281838621000610033764237919800194423704420633319989321465169743345769912822318261140907089861441540819914737474336816449824325266081666966973361969533212777691297726357984301509710815856277952410140312197253995009854837006991572638174933423198417086784859633091293669773835628870784080023922357823103612292313343138708713756072647955306878567678761408679785388418397508504683509284144719683435669245391453969726703865703172962418389792354536870706291053584095862528817292816924710463959137654339775103303861869054162785406796718856452314625346834643002030663624300772!
 8041839150504839977463906523527004766822033701569158523770139905412638347648466384117910763416394509626576134524834091389875379348887108440822515024794471987688839920035737926073657685493015534302684384838893140272196682038727684904065078641498395483862399144327100354841428571466367581410868575684974964249205885698437459468657448018493422802795823563775643882682326241877622162260709045198459326773477350182854360693935241658960117450737611406406895988292994464538186860664747288899190982296017892978047357912479632186915368703655952944433499542516058090830492735940881012512804591065050476649626758222413393315802709420923435482413754573059087156567567670109209505467111783773210475976697943635702499917247764099099618422342259389668469915441887720946530070344371831157287057320673987595782140794073633423608496383233359179022771268263032769487753200468018475770539434300795119666775243961591663082780839590538322951127233820755074415307889777628677166251881091187535197330098637717478!
 6188154764116022239030319559678981537333332582983600451889734131385796
009
29777458806142401045915014782067973943636291993558227602367510347827556486627121882555285317825358601035108225814502611204747092401718602564690068461731767990573490110072728768926194527588335875822194738432083457863305280755745493828952390059845682729141346432348817148584606783059482601453596876215967081249553230576378156493445652578255229382496265751170749498866876544103827053374089892104036867736560454285845169503140223236337570264179657785208175448924655709924081323665578698526453538880111889193286251925922213556676815576092763061557593066264739260898327834768021460555713159391575134197362381437944978888581196334372829232196632033578012611307701085721598982028012452701419440551082110912628261670708062742710620807375623747391179018806303915191898251718666137575727597103898114628132094118243212011578288178755591908312841658981012959939724582828850347090530282922251789724313294878973743215073413895319923645094033008944417799497855061146956152948565531122294623526306051560149!
 9246416469416535817179065975346477474751894490338863769454910133847537957012434353283214492982757320649460057035879741372847308556850024140578069949444209656454542067040671269177034205589354592147513994658656379532449893948072963453595989773250352242536697552026259661902239113744647015156377494681734403794532885953949267776387559086479724780886800681723558531314356329754317660439253838540575689974298509517127782488540660920326559828127019571356428139254066130983872519138828743230385070066019921570688871565313698645866717928365735525658627188144014431714367937481059691370932121680624247162372966171539343995336805414569867938971784889101598603095412935298746169109192523809742944551488558318499498594795902426366425548655563314934689356150341488374884631294653005659807467697736019455981528630627612626766355773597675811384216123733145970872986047138417401248888918797133273636262511311334676537629299840890377895200008539399763584744281979857678072104896345990778015426697174567542!
 6172384022032773364763975517549166533844727336853524966915629769248343
62650474619882335945593854238873901364177046945395798118752712159776844251179958071694546686174982003891413675742529519923536302864099584773808066759416971558083354262399667913719181197456509501421574144502465594282308668548345475504175328090492439697577338340692003659626982380632105842116831153608063960003029834869862501418951961597709853098934159069182644746212429836075434644624346418375891269938235380143849573643323589088034003650356294509895717318211938753606040337502573311825257046693447027575665724602024343580517617980430500157661220685910711916447836787755287555765149553864629003147784335242018223228186288983604995567100947130736251175046568288749334511080043705700857207322750831967368410921087264603086269870121760440904028069794911183964366052184314923073516315889044454805679783225559628577325030639073862370333133937948649073559546851796504296661825531052645982451735375632502837394355101805927205309010514290924335273127869001515130558740539553595264903028131275892668!
 7850268380277539808784196954244470759826527714763680134451227046469658616014050005981355426600455530412564538564899316031280559646970972771764775136237931869535642851430445630127610428264940367974802933019013443998609284058688100268883287786069070057522291637884595429511271236416290417249259287033518121777245720634744414071045798701168348653894086087934642885814053237220522033388278249160655075142849889502673047338689414665771519170670071546284933413054595326178257624745577860528907055681209392136360207948400190453482271750199199850351721819829155537394052447488160840114286829854219815417399461519446756653991108625702661728915721161670861280786442259687806540552408407698092622979890897438864871881241215285862107144171314682739415124540231527184641602104587509694837594318073620219293740011902747502717656734359424736706618039867767305606401858990535751230023066083708711686914757913363840862325384349267186066139046684337879651679007095096077004454535563136240513581616173843997!
 0087207800572797374766973300019518157166514482156340621818656955569523
05997320961352796043608491646454400985340296086167453343809689982394369382494955094716954167064128394245171412601916247382708669769311806960971015572581478531946257461453503976260554651254350214524143432982492413812177132034032371867152062735928163374410315471046396311177083453501544825945760866597757173914576609587753667249840517245700825958212454852196164378931310988248170038422332063288500432542084921594423734706930124693333918887639562414254068324429613965686240316412840305878256465234281833656651895855036990943259530942506080824684142553143703739066510989676539808735874993770334589530194951951702175226452073203602754639413113711611622289900457080284754036140638147708904136189639814679360905829482054185806765374568452152011414513584740042491714183497910852675578692364608405102964056854716291147960516605129860116421892358470677447836979163436922030219888963849015241726483510873673134583953442150224626155336633614834786432335613805300749667620842875753074484767612212952046!
 4026842561574021989849634090361092184760431288829692663808182477416243214918051745760516527671485956723605854481485440213290753231193378970542137669259894146244375806251615321799734696371796455473353549249001405607436631064741766799857256986302528399444346379930518242598412579835864959062789069536518549591816028252311296488624546624741498780234896199049347281966658307147577253201586835547077836728257562399243554639377454477973382960292239539101363924842457990895204656398045121789111868368461117367495659523732158831922247696642959496940073685050284037768906265808500246717295897639915288552871279469207921220672013205280939645226322708682212314758006603178586184106934504552579097773956618012334187417941362215786050078339034591252524540485754363277089363734813762506583880204845701532917287753658510284304303738094645827944631703476961344868288054938747420783607209181966956077978078659557407096044302978609309079720730749607010815586850159480975343530527293411617148317473396610051!
 7521700230147990108690345229770487759840572862989418102152969007455565
97243348361850377715055086033011150531761641696187723661381272278710986517345203857378730216612722258062394563423895118271063899938281939468089089171426867874887032369742369825435588883246084582028402348362623588364349326648017559046034282151721956396349530430084841662178271514494595409011794488525950494726556911945792036793654037611386749376191352883897654886121318115303047160619686704364428843498822552331296875029163545865426866088946046929370596495128448974048567800358527040399356260489828221525557199699352579454526174074327085989113001429067140022594327469021898299517955344274871811164211742934346618581259577501754135341180155914001252399483939017661752161192300632039269350307440800556485321736481168158330203170589764678232920238182476764490923997157484669006626848707926979745436105026659791718725654581872259956718471895396896356398273911694540082867722083973564852019605960672645551934292523068186375946771657471639851037580102664513149058946532011702593902980926721553261!
 8811216870595841647293227196915373233155149878813034739889489625427170463108520020308934976074748096952314381448595233628759639315703476429000525190908752531657407924492946317614112816050060433236781492170244718104090002523572907450940087541909448501323427737790282037687775988388910224289465863071885783632584011400402958201515727775055220497671741806522968128144535963077468399197436150775560849014830488152662261688754968034628330406849672488458314489610898411164185347246790495429842336879295028505356227380869303629064349610638902734239816444371298967524622134998071790983253853751824514318229817014980471474405208206771734829307574244607177847252459461857489049305096509795390542253069212360701703837910857146983022577248525173845914560791055885370470662930526861151496257016777566050987152218931199319086080409589327271465200315991180436374064955449852221163110792402530841208587432750830257360467355905024287620096058217825407072535881942427482290612611565067099069000096462286669!
 1935026133569804484990306069770879179642034494706647343583130498593239
705
95890765212059389769761799954609902557501292529505175646332819377848179827289216268839791503902841548928484050101832934301693930859769188207609832728889211355169823445644473332530729623985792356457676844465574078818475328003206204091248503790790336969679985756985481175481183866884928262489337313463656209623643601760475628848255746879835231668920327581208311926727387077628308791944164060207462803182215764029456583397476087986917525550317049629196191712150721245277331363754728630499003750245934859600321151449928406621582574367422744755010639122242188903912068857149902812503322293010196259879383127482079514574663690869011102131053057387506102876258248047297829759703788665270217441124608373700727640915037133336149717400905160213542870186599060553712590929896988757268780006791586909108457407802739901018725834025027067523492790845564584723383879369483932121937056631027358110963094423462935733587439546101715097484176032594835362175167124900482878786934431786340777895613431476530447!
 2710158730835918654422753350609450045427094382959523450061795081549912226067705369540347087231670377358003858882018536060774078592030910013073668615332051430948329712861083660252455592697326600103297614111917437427678278974751030295465030810406048421266292749225871319580437832558381427972820610467164454539667827506633761195615471808114106637289044508607112165066033989238555537675320538799346850503492185865362156116256077378507833681394845092505697034605431168901434565623077243178045128441499021187993090482889896661964477429526148689757457320468170131393090511705612968133624656576703275299788425636726104684513955787617455426140794992788515941932345573064585536376766627790456519468752359050707029026423593768921741125833571439855472717969334716699045245738576573463632340209580112235447644417233019968875948411158859193880265208241262541577592395355713900994061925788576243834396708253598508677174520306477125971687162927198110872264071673162031199505749535335078557905805522805676!
 8709400358862145084193945110212966418030102507190041435180262583918416
96334287108392447011217284273032774701343798411733012446913775974881728083780863283584806041092422086576772875220996324008042994492930498688498984582499837138589166913141159480537977042001597068934711183157338901047464798780815652192644112417536626682168177076943238146633641948679086382584713414390786785266254202550798750059834420864335320340338540716970048589542381941646320236449921869693519762514875895364475163444940641619894167113410443501482484379874639160009785800714886541351357234604662347929727283142415592080025103467895454275219424132570402630697694654016135485468798571442948680303910184410863890414481123754437128533082399373283668196231302956918569585662741137703388585366462274719316725033611040733156570076520712424079756999501517168219006451178870287463522929808818771007290339729922566421130560137577597719013994123632672808453894003190961542149931926133641122555360118366273278385267401987547818763539357339492847102958252871038099756543973256712948755822478362680745!
 2739034903745390658115194195726455858788269618859947491839526549635447571365041228605931178327747043171702175554273381131644612205777914607365779146307623015698777942799470800066693339080866312852037258042871394552756934418643828321630754249357674340668984292481754076245634843585997894799507358408972112726010980185913187269858204360215449353734228209983215127996754771510867255688821989769067943231991850034564659754689420908586518688541565005301770434777447943867270393095250807174811438806676944040880337002762289229403949546456869467365627651215744427275561854727297092316077100833032761204644001950108825543666118384017506433079878960184957256409227026453638384878282644377846764678894521861373535543656377606476678170898450543551146912314274141648367976459749610075175159580739164799319511126936601648584829390733187973916908788195618674358831373515539061314098627551521295444877104580897721910582763398947484910278339169952254377681439407418668237567124423323514823465867649964519!
 4524763308705364406871414568326066397694548019309437100867957512398911
90608598079561897702861704671402026390040755211696790396797200717133559771467791845713611149407966712462922999331477634216541227783574825862753499006792111978060307885749546973284196464487248154923884504168748844032656277470952960677481195278592514810702849070915018652287534294183631406112370858732629402433909819838680897918601274620818939502098874883195920209202041991431102432886184043867214698447218058827477611885531433454775949915708112154724304881109826753085018792712236067265424722554951167783499513760704930313675989221645767417615608894882995093114276568187950445739072603866015581213816955577135842043549347895364202338974649549276685353620131752865705505880944097716682618778503565693248837006191686881325769898892153770164294154770352800561194842247298518748777495354659986473128376681023168478386420803571506610437608027590099241762684102073191041168647523492506036456386777296180495366105618145387474536473562955760076828385002653903382204235925539829328419394494205000899!
 8872489180621128704903913002948556514749543445752448228715834065454230746784942749309634700151432631241612982110976577978086462089636434720880591553642322648312645150216051965026584720667061301204933869699220607212055074846983132504456790361979375114510561099405972270610245531643418423159313539053072773643156367264580132267637726686186334792960994124327001774495398230432040025449854464125821814920560149218878884850042818418295383774717036791912893763087010427207210527934076159095560569028788415435937041294487067737642712638215283791146308614599688138515495896934947775300910908956450628879874949987918977330055395549969672231130329962237357438567780028847289642133583266974725834606152803712627432217243252933925759249244741154505859760314253954019027327179534824534471181832675337725688313193570020831617831857934695550625098741480850738372620144835846400353369127055621195890629893555627791783990885764956240379714308839097111026422589746293176689672234040127892499944003014646792!
 2020383042161988077173466473516468109820565844567718498749974291629569
52777441709563128459610269014542233395364432479089882752945116320992753074993793818983147567944412459596372625788487798245921701280055758027161475792168773028767724142783904590739127392942678843857719239680522994034053347073573334518367251554265826396199993098367307950372448686461149373049576129415707070662032891811072389155275383366638170804303305567072752616774194630606087015556574452308746558396124050301480579106145816309013148988618821079382747513047641248682780160190849678442189011101839255967801588844050853939768387360141912309606008688848409587590939798875457125098902772115401440192622172796546564989599214375691142902020411115792487312650807559597284727869968278916268278694911524767458519228110865267700981927943533791355350051468985793823713882735357271717893830142216485717141029006997282353232884846219281128940817079740244219054436930380174929970320843401108733211145368423599993209089515669085964915227766722963969422424234188318035210991164028064348473544379832000036!
 2808190976855849256117523929774165820418448109089512683647084624741173961271488101932945586738194325086126535883736855992025907815396082128790730606533354490598834747010168086963731773732582913940201499232920969270678316759681476696675208077482680711116784929358461984186261721109253221606852538815918559880627768721643818351604955385279364210903131036078162438914712543316537004929543573131191804284196503216157809042520133124856053203608591448176717054976690739276489514055215206092541329165702491817166443720366613685787673325110828590381921544766528622524635921917501303428439331954912297279269763953174862232078789202684450835204124961260947859764764050513446164577995797419209394138731127672405794054104620755970157418271819156561183209665877740814676916977483766418386081752547859685152469480775281790629399270652523129308948664501479045471076151553997996389545735499561642096460474745985377240519452042446951551105760149422144598507856289800520015014421723603039442834244487088873!
 8111756954845868810158847305082029360514301370104506990268158198945951
504
53748572348798071613236899889286204993413477844596482623886893449564130688693968016240225696097259058369035914478304640969184582654758153494500776516075819566412400743361172866660578064097906850684383908655013660341715661217741365352466629240385273163158429247510718207376199742570052663628734248527697091241463260439116468257193844749765274127912883327647534004587978756721972850802515877654905655892204714962052521040120166987644538174938761539621762099818669564349377520407867045502757495420828343826527279906640404630855560157935415801838870887714052300577774791013360758346370816037414033581662171052377954778031082878931138989447958611693922813772482097662231537416555187072430037844683873444610185876496624830235355290685620889367050129145033747129770829859205524051878310562165213224612288003475473255932571175091617659416648239497291335237054388627240848370552817002962980905865080479495462458224013571415849006733084457388181196744514291152143427939269965562257198643919606775303!
 8374686672221703556890842503483294766784150367836819897475626360760561739594959045378728870880119654187892476530782025541234215275554653752784851164219300210400696015444285500717437035400703359356505398651785707006582099804195744951235876447812486104147556590450055377874542573276631373882502017264896961612910104812793263745673134738711663877099845420670270029601117226376272726745210181186559105258614533881970128991196384735029017400070680631462301308053975457760287247409909750691788261928319716472128495873791803549559085450061798813211982114298258375305635097899123594054486017902486260767194835184423490587190753372944339592409185352802957201038394209623342775620874772317011752756872410122453028153879584509634857983910451921318634956903039125641139059641254019436292949491921353071715344840968420710642282289811864026763507160796935047021002318781098561356791065930660078977625531978982500663151562983354439164449258057007801061628032102201957047579865658116809332423000560664896!
 7369487624261724101199075962069434685940406164109057115534545376809232
71287235399907443591953983973721101334949165692714299302802031477456050544661845753230590170786156443038197017914956765394045943560606605070173938931321346258503810731950386744835560194918228051677305768502688432549589089560814199507525651893554022636610084816146203865446477107121879516306983362021407461243273856073300741729085341371467646620823326530075778457801275507872627830161825087008428187745332078797789429648585975819284204996482962042735407338531005469939541254619473472170399527022703577938585129683664406788983746565636135444780666838466976517661499961854398962350237176711027408909193995831451468723612871384972420690809504422367855102876286804251881635840261629851807211528332237580970905745356917840193816002439654325782504544519694034884092434085789998277191512303094738055403082315560818607161583433955617281063733110606015264964148156840431946235604363017431750920771304908868560472738551730953808475014486517604975677360783315447229253433596384563021521710498738592531!
 0203978958143336638415592992550894460278070179622745210555067119131632626527993669635989238300609698160016708813443002039117719163070163778003830037112641824146014987041714805662603384977517560384954919157914179295368495970628632971745221494526436400040116851275873879434866688375722889961342993866402364058944824529124282016580047816694184780636604784838176185651558401746037289782158565908314893065117791985723171647647241893043153199908815499713774207210118331968619684944051847134805103762448875818172772334427215708740008524939194933981030831999522885426263085181455141049674896425768172031457741976055401166514371933763721881865065248544503999376609226777707479399801422580866214987191247013874698956765809816342407951357037334868399460740014838188091091227850498742256394710285890361789248694551999049171162317092974081951721636250623714208252611907131791876380037382099894155167362903105494029053725379895773700088178658870490439209102611278111129355194227781921470074363737351900!
 8329473368732239654947632992827531835181262400711892034565885546809503
02630425192198797773744326372609289111090052198687553722810530557641476148246398586371897727977619373087670426497044115114128900621261138853060373672295958161170213950300741417661128483328860167367167320358804701580247848646398079995767647079233106445662603373073615899226178752674260135360072952785114473129927914524506233402909639717592321979580111914669928396066090546200798237452122450360169104115632219532972695445551518284094539550786740409371853236603877962805143126766274036439823983188176059785281346639469560555811845893980705011357516820680694894385529135088285447348281517609715423859522132730861322041292330776565586927909570047843039556819940159642233595945502281056543779954708624485590800370695015608019307214648972673163938925538159958617022059139730270900638588414953461627642604428373891251918478198500254982630358510063410344376334073346990312703558308011243548158661164679904704099547923812878971867801098152049788060504766682036629672509369396073136693374720367243003!
 1896662049975065252017547135786573464383646763792685019584615106967653639024474899543219972319061169329622877894612265668306435189561638995745077221094512799188532444937648778904054422423347097958726521769377763707960407327897024558295386961641263246575492104481223808933638076494996719634861554060909141594976780877461912277082868446053257271801923246319994667678926030359795781182790004713940921719399874076000999706958163447923360510616646007787559395457858135619117973484724275643954446900185370303889947219983080588340583672047301059337164585377733373826188199786074067450906292255488990834435844707186834628390792947080116968639485118508116438134602812347712665009370864349808106119251169983906911241127884922501074046700100249875549803524056367371564404834835224610219675040334226809019609191836769753918448889810307693136036846490751851920899807967484952064252815039882199294501631224441929079058217550021246415643878011473635348603231817697699256886234224365116141378358486034572!
 9184564597310145801442339103436619091211751414322400433814714649570280
36817478157339925527876758136335975360559539384017686767430474620112279164213879016271782936332025735406498294315950055471411440663728022590649907729721531848353962105920750948187022309948254672970184837824611212322639194350073177762006695405996037403765441062871924178666242088214648278279438113619744675884359564005433840353292127859574881400073749708325048327857556278773866528397788884309372421959455553543681653293719886363436817907518019612735093458041094465517258849680261210153466972738116149856071359331842125178208697644136628031319592662998008004999380179915344918391418600149176520095550574294390306323540512913272285289533183861280090024201859206830124557688515998603667088214403617994975769301015816840489636950570719416181922986998546181106643162421543438857448343388807199476674230925541425220464613263330219254123326554225179003962370011877224880121899739867454023278310111558138887625327523466564979284560911758393972476956922958164791705775346063017007527431401713140934!
 7082620758055636513836577977785668667231433899715854051283817539517288672679243351932427944640427484557220427137038338428243358563142551037569101814745835641467895345086856290184867609167706199880065923053443639571728250888425996639289712477574013093554392473324079182045553817663723533222093512540132481590298902642974259278789454750065499469212124666206626082143493200208055224057223984383044936328281922845488932895874022579320820777499212636085911890296466098389588810029238820492462297133229297037751993136100980352670524486853226374478046384325646301000814486291219945715644790099446084293682847965274461276533324488110332420251747386222344906972367553788033995966640307214375360233103696573323152377229874426905668961779628232189871890962510009667381607994856169911256164664511017559716379949948745173586586770840471684474770849909769979447071072216462801394627545923362533618584457602386869037340402342997958662188971415880457537565078504261021206974369709692144094113468994263087!
 4378569318126994043871459489599835002482339043529602141043479871030683
534
29770829833207751807152848088283370145995157366923408952207467531109020004087766773452083041072554159390052576034609120814028417742037713070084243715867293605934806649256089060062140073524622034669434043776297371417295657738443594005475357783364787173858831995725380639809960264540532720562873151122978157160862957374684566542360082900430576533154127168989746228513385107670664275111061263511316160924243466569700709329952178094757112910514811469846816362099491211915737590934654666176085925249964296490499530084958760781963600471026739400740732084362442003461449470324239517678532424534809937752802805259240486576284671412186729974077030839307426174014500322104972620715170167184912813438981955969766521920190813700036727820825480844407705488949773529007409396411521592813098524327606824759522533080282483140911455034964805588336314363788086926850984022754356109530387770701212000289803251790104923250778850259083263414354851687722009982947719960230524388558044873833160358617226920300671!
 0187874260694178604070699902507500493233626929932140946580996465314285894029505075993837424671389269904330889696893171221522509329615283223140401522472006962251931218769483286742002917366443568066358210533280417672615156230212428885543250193477471628043834193928479334861222057352401287750089411533192309765082818111896355024958467106845292644845557427712134742858861286553169290497678456625964182472669277834400266072794741444083706645758512376709200048312194034837292085600229027797730864854147461858811157024028731490423374710220512254210599660703538395064823345926097124425018477808097717267392473194016550396078670123047395765332806585083484125260088946584673119157291745742241779493354979891900782062130861080386551622375812464835540650724329292911545092667131859296769309032438050050470579802957471634654618685966633481647375637582530295286292373436789494660108835291361314666383280711983717491455000642982081727450617511533164317850686055995804144705051451344346613543491323777336!
 9000477575850404699354952865082123106885520961899712439343411168098795
39624817085293385576090027022794974124179740475717835891513010194831142088683249433148178023376509533242995528594436834355197273185178049465583509919430937022568193180246844883186770873093472780380591552502312040642236094709885301607583705436778374146441160534217600459326489012510109436888394937501080782355178495090823589954072647462043742888105083964558842665486927650484032831218209192252549114726640636220307934550660398838572486005108528078987509229541520536859292619877916892215922052205519853201479261471085918843186865741159637899311216099897611097963356544490273435909832894786788397496610903105796567898848146337793780972063390584010251514800188040123088613129755420721536964927058014552750216146780869136607498122516216343548510063344349103534205339346945249747695508626569362762126109157268918512773037638397957159366930679492986483866338445448631276085510051818945811041464708454015362914582274572901534105798816935405528318673603825088352304739202146070349331910672726512771!
 7991413837226705030042889515491348029236323928824220795773086577354430078714994079606303257695899262392059660138555418034196698932436702851049428362179024244477738192565459972644214164588018332426573856187867895985236347842353680905992711999559785401448359660621563295163890730042756825400192358883203001911349752328613006510978769294553113966895558347643708070331569246477056683170873581839480453887530751714783371195076879764077288464866497918231845023153810551758734071896253879853762143717243682071046881420524923936550870448913554165562666671315419217636666644546134197065884404803958628401161360336854813455050935903141657252576055258698787030511931907553636345440251545233958233658716038160852821850071410354993608466278407506123683876446214589192177914259300649731241854636559956751295850203082278410326137151135198390612415964633398239008789738799337167288720356789486961278469180298840007702404614168435709646116237948458002436915344623192970276370458105466861864892006481857884!
 4704613762942820614210703480363084411167800614815023913690139665758030
93965904415912512096952973581273097903258329274793996928243831492062590293309286010332391740383834274571135139845774783202448838602196807671633165349867303474540139992159822111671115125442585376091673432769990400584497434759055642063076946934728356506499107776795892650798323481084018224489117074966510406187591847485769721036743268151484201956972207473448220879286996083629358763165389047839004874274793515152841972707861432196582841706939049681577256828050122020751092363465517693151572323810501802258551751824782234136431788165206850661394226265344697289359780575579260783216673889806612519238800016953432522620052889956108613287995075957355474955247424308328701918030564770827367014344539375937631550175093518515879850506946390523195829252309751407405254595631400743663136531859885757737887841902614118689544565042160337064786252627247085434175977950069264902695112027502630954367405801647213159267945379436949752610184466085800078312719131602123509138297042587023364160464484612847091!
 8634315198653654660902676182247471801225355996813235223866795597369258068959753037126480244820458137018203432869086371659833775710858330103687434657741106218143176556339621006385831674674809188717077376535589866220294998738274442554792411634654679406036502474602456189525909349966735951227127320524011111391852302706761427723092229472881013319296333997818550318293443263220646980101295170455704300632501562504315083657628326741230020495063971736784188910051425253052496886256738738477796628662164973624028836930961735437337313667758358357017944714574708124906980229776815688257225708949890899120660554025206080132245048251208137567437661986796426412986059431128300054088818812331334729747312126744443118675943209106681841781026557335326213877374737553457827904151159313218518285887774417722966204691386602093496942560536450662133317325961987682588594298794267093801141054153993918960836361924874187916930646357844807215658399312037940118324480201556714142859863727859846970740475543618234!
 8158796011413662352454806720345614756939780122895658521622561696712983
69008539004383451036299591188765554858501038242000728257383191539907527071272412720139581995535663735512890906976251070304892027945259155650048553046678249437412341710845111272716022109419314554015799975257597062357119650920779653514558284969464124712726275202638568898807683516345882147443822121862964661262708267422635057195047392386350754121166483026200971276710048982671613245191035278362070128544446701113052325226930150870306338451974189270634069245458809137680372957533468067793504686478745877073762192530528748136198511385757845429291076654292834071343502250882818892915244527783987472190081314380720430207245467931758778466626656846528861507688403122321218733296072442684943391394823440048794731810015672345261770257670886790779488435759761351817722330324699911665759663561548880404973201297560095265988234960223329496042355117872785529240802858776678063370228800022181033547073381937382622675719292593356370954061572778057244148311164042802001173781045377356971226702822063493126!
 9054549816718499502811568901079688029001125658917905559234547229213785287232821812125034518205954809677227766071310177860343882957331820642358723699341009810617234963824686830091332565344923468406806939017473532015044406113834755190428877540607758191617811541300399257403786443591301907846113155981228743338330985378397280207272868923202989439733948198177571392474916946466667896123429109370338793251233773971388025498350706646550164356596853145826507561070572470299837409048601724376419814227043148037384529368743600536391267265076156807813142004122411959494039297701634281240787208085216663064592305670320709816172252902696023063081292602279781774357161381029192980622509729023421402721191693803271329832008372850667961628159235828668657609990441599158720394183682247309036694969071774570121777144672683511194579923576437894693565354208606297301046730719822766077439302309468861548281095152021597052550236156478355794196881755560913857785219222596477699410230570038366747623550697882318!
 9655698241465028678631892113122406061809386048832645173084016950142082
157
32606429222886911152502549936021800510419326096907384748832391402415585332601152850704306609322444248252414417460744488445341855282414037622464301160849294866458299855205426715174054544202062807034332941069337272642970668910815358484014909456938246216847992970706873787740628928325451342260408837187219903835552674722094123126765963381557250244846112695927469752381449321640444689895162240069283709586273806888336291637240041875958645520463746275695830507984538153471523066411007256923629349276393671091313512704030545769699668455358471455918192837712462583521412445812027496607847718105699457043360508168509589453746307951839500347172519484435994948544685268129735901906906535989033569560310064479682631204573191011544496555112268417325152277386303081359758217229059766137627641766163476909125070161999553759643211557534396621688271084036751192999600088624632199987541809436005308741339626929982076296680154880905235587186807616985560604341753925240496799964651760002692691655169875265250!
 6773950851304080538844506092601096436881089420268561590738998509908250154946391822097006484553663668996858922863821597110767179767897501154280872303912887886996186789307198286754991974326270934100026851032592963268818524148957912443276487218014529821857497714292943666893783643822296585911141794051849420735706452832598845912259394927444557146677651511456929031395253758046337585796415811636218722766151898241220535132242248825616774245967654125403317844988384111376073500772008569727762648736527833891636142496421063088349308903320848779428644049722268286185994668934379485133485590582820696461239464975741223628313977338190874558033167517272238664736033632294221653127763584773063153429737277492314973942733916813987517165017810326131745506377657709788695976757422149371635288456874197560695360039337332020651649369708149229583433116310372740909866257470505147022723096296228767689369377387123902046516729559253963757042296827013721597849618036234804337906397035855824221088235298723949!
 6885357705045182895099193763474732035193828111442092546739336782292584
96532200800152631802914086468882484513127730626798081559547648285041727113926403155385040583548821872063249822568308378114474967278883332002871767003436969011263337714068149248560992223709551854738445717905417687392791717851659319868288756418186776876841019149180793996112890707515885455246994765082176756772116466364276819985224100965213050465083407275744849661976161460840590607410221444976223667994484837777546120077234904834680479955363749200222871127185135606616822912323921800558278141858159904406240526254636771092443831733984763285147065350007978318491582401175956590053502706403840870712334125490430058925526833691094710188568063097486389407660730095765914621565050197607344889921706745959901008710843618344332778765368258772308223344345432927526450350827510368852787696779247529054351634847177830600434230680251041692709840429423261549283137612187925615980554961799348822340432228376565318861257502640780451529541971941954779774061554624267671433647051086815540321664452516231071!
 2260123089371047550682508603240463908671443690773244134398492841467882847147933299621527265676834010400353802720252754184352253722834489706581156085710599336667745198566047220084160190860000788059526818266913138417341819905590105823592902013540514610372925984089244405799629261209829819631751214535332103905565185435755015506330230393983217424163887658141828375495738248135795353764156486001991020976353392075484934838869281611240904286051688972415625937579583189895007292459604679885544190931123329852718446233567773599333480407470372053280347069763700271572820230730576961414871966420425572750491950366323004651395418140725108930709443978312110733276687592803776507172513608755719376485636744855888825788766133918449302119188229270901950014684234363699275319954611567138685704507441432163390407802999234905814465652044962335154357201055418206044026298913181811835652148013865548465039391744227689983209599473453261485153380908818440673726935784293194085081800541112501203457445303331397!
 3804469488527709899805696000519141141422794776296903922415244615981368
12557513984940301589089128390396906823715967622826543755905616030020457274561527945965191825007133487156545101752772344850870016671622088134714559577331251876805648529105407392802221120032862781056402439800380701905697739652978779098800316200668984037215519624334297992810095608616020149108819115097937929003694499120621765377482371955324580636150130098086504424252934783569851494288463384019650862826192681818133145352271022161786885639796180425572709401969041952782218972371157604600163990908887257182510468842834618913181202969641334893176005480461049509279897517631114740226421967576451984887245324003253302518248307749123252566884756169542393488977846191575794422770855820578541006163487982613985550919249337634419693864702415434328232827684568414269943837235402540939373073804634343828207196553140326715847016941483313914996741090812530998431631207310850501690632931910182110539558556703982419629169520765719992723071763730813642389401482326265470550903841961663957458368747626735252!
 5581199071918362373584368718343059092217995449969222330034287082269330565446768367767558779608375718328106825559568543168045747689684479201244439748747005737572457408749217827564247332585933827183601185506372711682381424624589045907602969214280818057785601886552690999279221547127089592401794765078445144146455171727245484769416076624783260657354138944619885837567498476780536983929576326602264723992041365216237363614666403231551854151548111858108443398551504367348070980163062524751019715046695459749141410113086616816368604210338807456519949324586116048711164862799838024812539418990136377273111338342667785325923245333448537596647162083385374122635553089374439019515415756799424532380334083072168419947899681242688846165970608333973371771443649867987671879725126150631972885540631915126103864962031374005154413457210449044670519451569227393667324976857391603105431148168922251592576687809534620488181913512012841625814721027809659799919441603443841823262314480816732189123799465974694!
 4737199473447546144729069858854201016252306419680597237228423373245114
06540283755263039707842698045973210194934570025250559594698145422107028369067651113380082719704304519247809251178562729103526279169742580684026273075841902146284409178984425616298673909100537002978855069858231909288554409934577175078784925479171378543226314655666153587021169160431720984265232313966065488930853830196834019241368671420697276336719758147787236143301726125552055830024756665571711557695597207311136616476492124100074325367211171819026986473496581301013671137322293076821469823309586260175527216725842477594432158344832516677179538137449644406567381383266457517449057480046505684021118589827064600254984222932072749822069747698062260826601109618485569352118066229299403801572610103842829608898746065630467985022929902092919324617716061603848014225088691237342485864417312671847466345121490808553212758118947482517859401758447229142593819966479033908751036666615416468654700720220225459753480984235013648485749478855474592133750963767821654279141354746700628127674422229911882!
 7998135726907378546909110155681042971730577884247638537402679741523709462463943460512163924514821050797603268598660940087323415642353566766637531227634801010770454890510324057956596674130831157927974809669543472607247410692015339209093345827774473396165009357524711241707506350320886771741219349514666763871263737284611604087706301583760011153364921219020331806850032466637922173797926804663637619558362047195745588172551120008041991146136339555201130039423915975356674113670223255190193417645573146948220222522954833329774556051373077425177097744465980760759454660659310312734871555326438908338370277382207431456894458643717541210660493377454249047001490395946574594377123789728005842939621055267503956632149237672981406635006120236079359507250026118822988170244093230606654009722982433537652437799415918514933904172250146997425335378050436214109357723549008818690739026951401669721483626167233238511176389727375572281168991998039957293746032217281928453409332584411696304062383003542688!
 7429021182429856451245795207347984627346195104552425613736299433014983
937
29111087052996951918353365053484424284804631047652208342085936517309658449613028583365481954359818675622029416138432116325768598256296720182890678112418686878459731338714041872970071191986770129310629309694989935481392187592880483984513874075864302765615714733518354407350625531234366496005310914881303238446265204351362902626593330681205115888510435856994564993886957070611192357275711029419692899418765543688425692806386143513031063844433431339619697973356152324266641706639024036236559357494425103835682493854306636956562838134975783190902427704990944514111124123020604342232889259749143823157590798442351778454112872425949353333098571097875538683981754825212175181030821817650515556345242994845390457756267446578551759148916225117807053288117045974059759864583008005610322332538430075098113431012045083319042286546858779944012296561656389081595922394034392226001019722176573621711635990257575290003386602274925942193559612947551851369939324969278663506523882676894116763890898231461909!
 5968338612311858671495757270575686399745427113036591818384717808180841752010065566213047632675249466820599746393688064999076413425808930820409023632383517830632217617206433632011040344099409158405146878326260477568040712615484260346833880268094044793089193734239036386440254924481157390763168026646799679017556718706413633240288705087457165871395916429253614402597840290871343774441758956655811307376296889347527173711313779000310082729387122487986914124280084502725122546352721992018762423508027844796784337023680736143992859048111112541931101350959312727661124888954689194535563621879329974884586783481448626980470399009162895288368911374616731561702410045157757001603778370339572539261354053250114657419224801218243169853035363945988575041132622240054109705194916292574379281916876204926756847774860345138396946799094353055861500427944483112063090593443247000937536710056044926556034727477807907836395045187624483926979873135352843484638881332304397927748022015296192355486000473427309!
 5078678062530767364333228241961324270565577945226606569501618926256269
48238005695033649150471162428579689682908969058363758278283892895520363223930960420462287810637658111782742762532340505564585343287393682881055582302015544340256660561199160833124527637674938321952334956317862584221341665748262887744717933870329083625039959451591113255050506004055193310678540221401392893077471031783341055948291837130769245697952206414022795846705868857757846872528947007508518500453068757078397466638450736019535737073785356700362585582066737243338623835066357323527255029874737157104957827619393563501675928367423085383857351276128826173200948780873129781099401372087532187962176750723431042040983005430754543089347560999967053006260089395875398030047816817127195093934191068331792429451595438511210909172267321832118162279570595447822536126829509548622172312363166507257218634531741072397650382647261206586272339002819509088574096005768787459135373146151589768102894467346086010997367803156129155718923796941378351231627407516945694908680544178759792003655469263444618!
 1773732271670034442667760460949248120587970646584973528807924153156393243441257891779357259017863758256938063425044305458827958137410756022875844478109654276517670622237069724197918021522914548339562562284607838662926681060526376677358438248733782586428850121233292472070960759606827560580289356980680090424779414480522461408019298274453591426130067315399742203980804453750119539726194484844951991140281906600326280269709544871657792318799155265031123235536396866845302430159619734922623522743230536042233756064177773162385607180504055918235089414216126043893732003497532633969317683963974083408761489660534676500201801809501790152475738159051446684042332046251958596479602895315590775472041875168042210488273979524827374967425882212290841842673273540506297473956251860978458070132276611517332515928012500661030784565522793390661195546769846706931144543416538587299991177255340758362673072059819231864158196833440775617358760115854106288590251485970663025662727818819343204435440594264174!
 7287444638497088753892436548269542567705195500503048573967192593691831
32249952382903951907875007477419288341283393151436054565549927400340005147528601176491368819754058351813010642819185427723979888911556544206132952148340397465595374693176797126059326227357889369439528140371554981256229183602897098844835199959092724761429273847611342739427076465965860996751230503243760925283745354475985587192797451354560409284463123838891929763872245094869466433164585861170878840725956634464887728389814480697593346348920920847479336641147691694830437595998302984485104669711676118031575670430748683191350151086626814811080662676444881876373411910463014864339513331694386486719125305119771222260512927206628882836514602219447081969546319782481806230642959193438031910707567289113034166693906837665143733400982917691778335023511377237807008013449375124805050073219738123851625063208104966695365173928688581397749077190782452979419561688697223167521045066713791920865389367499863148664101700444576299589453219559866395809179418510560086861372835205544642033275428459604284!
 3329042543986132359098896161049110403705381295507746816387557681316299190250815702719076490775784360216977227904172832152483111546737798675348633009709840718852917729363837896867045449380220171574243059909227766330242974417045007458994475150076574278290259389637763493531594783200225424326725184230050688202082549721292140563372558158112710474157018538931782939878771279827488656715046322466438555534848878687664135561276104858242058918651972343533639572360994808168173974031190309304510004396180691234477085551492472966785089521986109016552489835770049619203738616558373631326523459824531995105916058379000397996951777069795246952298367607431499008548564143327220034989033840428531242112340210049816242918589242224349575360808260306762401546957880647296192668452751116009590537854831636712454848677882017252054639855865003582350020215085164236635007877607151985614525626495159105550747727853798154063271681951117541022889298378222545336756651902512168230169181983942598999759411769587521!
 5092794637661963360871925094446859022136218571040722049966386358712990
53055527028410467726202127446674545215457723708236444533570645225149756787051719480050080256782460781818548758389225888164176204903611290431281674832076693485228577606793484645865766909520661008787906430168167533916211520568108446789415912337414636821138833757732614027462466645150989210440638180830560804013701008907417193766295844421691227908932831982677233321279200768091661026838723843245442068679756039482673658206734515504267630881815855803931916173275442955764365162015166446685575937259409711518783692173299938415788276602267092529147461823418663672193112269842360868545204188312801997803348787565882710587023709613027479913234822581376961217046227422496101673375478801063408551486622869956915271626335017898033982736448774282315381482900134325678883228760716511011595871871450105783476297528874339274581827686000452775717724788020989656438529423881738799918747129758741165413323915565108908775257686286616807192109034326503014635427492044749312465201473231975770361204501174793986!
 2821525354972026717908950519508590979562153891218056487899678573068849963903277813229401520730505202096076546883252517526410135506514502980213435336587555916168367494289441214804865998225611198797208669302128499501664795238170649564273515525846846289200141881385743510670806803934006493980278204084501559743111297779680235822043997189182740819520245230161759947970828058600328892886741062471328690946946684390420120577410669946215723851109156923759278558684493977360688001922934914717580163165254747272854041117825003154049416495321147450754966548023101855184474204933682149867867387892495751470690246623904739663020066157810935792046362771350394697843435917414264377803119021954752269208954796887825485645707135566698502327546123988230278689013175732191716784930163650138955291315901174224896073749460202948512798559245077379356908133386974703741573965582588573741349035827814340746255423551643968904607795838664996649445074756579699351493513597320013303372081166289167650986948072944032!
 9917612907230111404658911382427272632968517609428418793980260523956540
664
59330078965741576697086719209294525393155274373528280048234575091448533542404918205830211736693760497384227215913483552040425761699280642854714019368556141102765828085704034232587586569465009202308498308267843272774869277955040661110043597647686786538495502722558854224986136573631739614809989360847409717649547154334062370732658697527645921337429714124207051122564494990791441924448328393791380420636238002970028206239318075619226485397394933083251970873138458119857017100249136525227198684083184047846936429025111292751766993988620343878917517267572217442145385761100283487432190524333293992809488390615294064110187937539411343031719168526355316735298536398677616350661196822472348640340968103858504606729601476131074024007426534024368037921068446153419708080881220768071106438905886342157852825822877436754701408310031138429853493528249358504036234592392668831144807754671059106940654723734658778941924873236437024020240175175970468295402550796773098444317986354134645953902276574320351!
 8843111559754635233045235505529285063631152408117678464547141327981340659274673208354528227663430595305473430938175037787231764648909649104425587969404117052776629702325695246367177584587882202846053053054661817220965509818396754440119356702782721083355606446657522809805862870333075787382108211292102103896165231228487920328037665387201958205185618250144240962836609846332252841101574173614882341460287377498491498459046298890328492560839573991405910241206845576248034590472359536883927461900635300602528684434546600578574568725002887974078126995014359696494764149318504962555216944452855745294807232433027736555745610429660883569742530736111303108238000315853873628688492109174918033905482850546278641000131694719989488942095308644650267961007150484392620633117118608612081871573273455137001418676869219670488590103624233151677601727174223305049530615852479196288967594442134623565193122194284407143097895505598588624420173628260735051163846357111878468347158834906233425883436142747938!
 2954834126341741688260288873554781665323832154076835909681205488454817
18926920620367096536056408987592845081574274786219413671699432294586933049535372296799780048719102034782473949179717197672625388495281730513600892270524308556487450412160335515149310396418638089265951903435019795036622993710706109803283472869345415135967181506297663744309949323695704953495914193527271514187376586945122363671079380115242166244941198004465572125975358046399910239327977083871847534799854360306617746854816743025350911414225363563383883543544686001108638480214792763158479351071062272212328900030400855510346076806651955216865671891813348506806937700390687013762540552466849767101445993496184224689804170186023510196499013377865083234368694437821639202188508599658131112658894829177348973611017473924599639788237708464359325646405544663545645062781650789100006035789584714117881140014704556579246847933898590443560951939559830484119070859683908269696463010331291954054835663347075482559716224095724560789952275137431729204329442145717570211196649273295045892435115422498928!
 4182930968016279099901439100065160664654765723303846462439511383067770124161991030939928940398116061674207603382917593065660440087162242294864120927680054840263546046021286431296861760486768545873324590490445815446897600129176759371782877815746344749744317472245714178249593326589599012326316543180978557825775355049571779819902461257772849446353525217033433931343645138304258981514773623679199418168832859918715721722876519947031424824878759641163100819127666028856647310961164666767118936763472129096300869239623420708862933863125561287340653467909741993828816638506027873280048505449182019933787113082949339025444084544528311079067175578158009386753600386035576806398106423575109973318402806850770996662013993830215705749043949115438309056158300113014109913958329032586958376761970744891911326312164098184347256008766211159695133389046258905040210397168875297634115653016376140172417412754156775733851563340968924430140617974975371744256647349345457924696799301102619433763644866753756!
 1087691613043613748330479441225952612415148981699807681018481895780038
32576338780435311856971995174084040429215732071789387708959315570227427282658161497408013320634338400868902388939183331420045159614008986112156292436416947254313561701811792005595928543918333436945191945143171541350074200639050607167658190582421620289769684409055245447001281886858143549545420556689838786244832075212174109487364741091578604099102585558639401309155175600279765865384075682363973583472336482553352052477229608819305408210532813113048809262550440623955759039194431714152652754080895298657263071634073224395037998714881512624460631281385241074143597940857665785251694389927465562180588692066232504493702921288512745927021376748342927777412718922155406268330082860090179218753829486291501624540724777886699889007098050569250698581837390135076394365418723293031183658168633364477932900707857451061139914809110997127929438493913670158424189691093862380272576452166781402236132290468097724877826864188122877993432976707163870569511990189632309245899990217975713134517425936032513!
 6902088395860854675047773229290628464817203195072814911800959505125813447571570554678484436237769148191799840529066771547929117426693348858567088139473448486214381111595475449852804057422506951464720084246244722993215792264672178814520648208302769361192173852367856740962791085234229560906326667104802881922637139090737684448093184449896992931060368700953087272410262136788706972698569734002280363504755236880049558697359039020691931283070710617913556767421587725759822191294318645745477205132894587827375775210307119425545175288583633445935800552400893120991882570655486639231448086237441459530559003065809529244042617675254206771033553684955246546435770101789796416313038674952396108289032577244899186229965198423278274995958934083103129326766102724108073795462818807634269861761703310093468008306518347713287054254996232603250116192827302129934934139799634261512648506347348327591363178682472894449321466061847965057304067187482841519147416841690897229561606700728197766108311410618692!
 7435733553564627254143794098134638322862433641334789788909126415318730
40605317247738103537082669410654440622661293766233632590613838197631940130398985582094820953918602481990989664862713566498757014979534006764478586820491076270969775705491508796197691944139015941256832679426395790182782545568969968032231781589778225657613871677013214802115527276731117341653118922038451473699023164776475938806016075537483382328545825950629102393600165447353942982876682073712192752999073697440811342372020131423404505259316972775590585657003132022465479086657583451266545682630554619314754718739127923972118469217783762006326246681456322496877656028010455006968281528657542598234834009264710128328430643025697652644694135027062145831911049179319414349301770348702633346016871029183608374125327587763154022303956288776844723280302142987294946474939503146491804133514202393881524875937371592838326600354064289535416985061992235303829218610486918255269025574988931977847206199198050179722622476371814459796413713846207982090839588211870480155631852081343051685237415842174781!
 4580115630583117678770897709425691536078780911362843548240228283945658041952201303119772279659598388409363583559011857427044826650563438421625360498340854389040285430492689930661353029562440020282673436728719262079402973506179692541012917537626608253968221806216418124621731189673347430942208876706063054671699631418215590292435137843643506322620931206801431691638497810122710715021679247205626346870673908875675394424482708382508788265356558197441663577849241763188148362164412222323635499389429907840921650996112353251201103142338355065493889092759611053693980830238610371304756676260555830927849435785197856390534743267450560490940770859188651065545300819826445252817408774654789916151163487539306741930233427583650496415686353883449297026988302128385075011730722531947412188603060660866565477142449026181091509558307427608294858110352011070330305870925795123533892215724742478567167678835897376761772117513058693433553676490367437388170444054369873859392664944715350381525963250553002!
 0490676462445852260521393121962997057825503270457798044858956070209902
153
44669537068428452178214452386671046940810750616731747856971897942787887160528345042902212243983433906947676464131458180704818421658186036693764098943364938142679991971798152335108415706476165027604538632999522443033893844869869487964925415099694766465468976921648614239235682753185096540881335332360315018454309181158979530096088238018229548364665073083461587537390946753112554261080409659275271456272255273501217657824322012822173684540188340911256369605867417354418830302910422954093121391632516652716281214020039348524629267702533556780132121100074687510492729215067733282463405433051464110169458015239281064871651193748496284714520592286022164309227073291131485055146260876549103696897085781125139947748938328842659805612121831611530304191551869772206964070517065583074542955680205586064791985611372083202139733715897180100934195299240863180418622996944159001484453489862067964505307736118399136114400730593042057496786395373172912778358482156291480030842989176364034258219775859099886!
 1542291506488185489391946492442442707346065366282411043806874634642445248921727008002698896840097704990687906189943490599879123299393168654297787340536374108604116821223280321443018450796681914202371152463948220177093142729884554336272986473983606761973552064654414860620658273116315057177242088765562487222682926660203714851121462441496499951520297356963468957934911848613873235673727236286722956930702227282618936242091446834342646800266077199502216509365191242991298909496734886916099755708415385632669799928723106696812003873504357001390292512455612525900332219730742628557709051926829142078160159206846851894960268032416450232179784549350036868531120074399878675353188044734785139543177396060055361114406353642161812602126386573094690593255906397219492038056287678828743091909615406869152123189362789249870124538829074308381607486273896787745378236370946788911603417540455089169754059227394049266623912040646855819111208987613022144456972568625452950130411217199809106691154157468748!
 5849599866199083983781712633106815336413320408361685895059251501682768
47524016347344155357829189499213859109112248318187172194868838657130404829477742444060109969015638352378276129095967481510722582918132998287427054987359677484220856206752067159942180911885102146438815360796234541509213403430061299786868257960293849765918712706805152707141861960573903188851282433872683766410207671757126610927458223352290512994852828161359254699066916018502759401681624498230386088013824249883069963917623093961348545994517800671078225519324205087390126795497844015698988750791231652774721289479153173128457969061288370019751895109166908506798567605165873074799841445684924921279790288124241008840884778373159193613204548263035674749277565413855998730321590540762951436378852229866981851496708348605274465264498176375321102923062590368635856799489149248808960412651107338909663443593384412495832698268242760102098965945460477365239871180175186513673393394494426767754232119108230942372896868022034743959324862376943741086660282017476556319495108722588920221524980324583927!
 1724279586677378380658016613729297771184466502501152581240730709630180406940749655684993087263042183001570412013792245678731940258213109454610936997492226185837465197323220368127821679785482540385357995868520967119563235803556744705872326862792820603648717936660559441175390180898377902808434422479687088565952716127883634043276080005804509481613762417573420339477986303223673828425719406058354743783890446415406579099993185608124308463533967991722881263788799160033833788588455471982316793889336283777320641146617025954208508851805129008431630715043310753954554199079646509023164428834474068719718935466735649456812354304961298884537609297708931994214630482207660235398243215761625487612842541210616113313364882245413244897545356626534914240822491340206617500721126943061249663413321878554680294591249172174641038186713621514571649507321984896957276872688364311053604427157154289136681571274428332133397633430005081273956718748263504621039314324319975491958090961365625700243201665807095!
 1887305899197870679368295244048534202386527588450776292787146342219301
50056380457251317594012285611355436854201081823715869013394106131783292979204109913274541054713071745330047233839565461871634457034018556047181381578089815947036849425786821926363634477428221860596424745794721701500258173333022732047386573215346948938772327005556946006475062041487331611568622852690741688093499017469127606927198938505564840024337032655975293686023874269601591645095650888549020898484988762500950696676359381231697790345117805540667349228798064769733991389207356808640524705632218673824785071644611430980954948809247373180071966058926964767438019702682241032886561113658492748669631268073768413367434448435491569475817285335944010063322752305783993875303255072167800795954106798161051287012353251890481593561721703239862529923914117857155601316674495414313623225134309093811713897244019512308210327892658362850240295904940492941532776864235979783872458059395139056795560489022429600734317792826184751933955564593715046875619975797431690153572144066875808686554524850048273!
 5713085317312441357923209935819400847803553026661789990340016450047094910138334017722946299265642334547881046056477140301707861814478111616247962553239244068009690117909228513527314795503645016130130038280678845335633911351731410242678439770712448559939264307744563271909032088393518523660330523699761313173348345268257728496057439167155395158529563330081941842265634997617320668390993072216558028540545869711890122196602406694608294227814321543243657610175020591296018436712618332914534588474962392709765816939404028638746776848598592213820703486498305225048439168577534548195511374947189521246181415239902153365851133525354141116564403339910148171603055960643734286803239100314070941113262326323998396995376192271369735001483985838849714481681517149745907959017744927744511130627284201316358437641792093329243167440055461231142916162639760706635603860065608371404383030041343474639895484594511269703337758329055336412225359275249734553483337232586257096338433420359664089728564431789587!
 6135181009427545203740088801072788481889595167231262118912500192087373
38613365013734348864042522520017704620726688200704465618473896823556471471078268263004521490432410553635545255918421354196865113739788666309750081425643198474037759145878959060984574260788578632023144025764605246372483920243154704271119003189042040333817000986422864341807477777798344255598930892290697457018720204681829416752491348559960619800989484474891662876041980060259700127365693936297540932085945466756234080461501354582155086320722660389340137673057625340655516981527778559929988241946426651676877611917362227020922783360525077048070759071803436335707563828365968139953907607270681813656575919866837510546115218083781191964755409670958249560178282456727368563121850209804703624641761986827177484782224634903278108854631415173718143297928832562499371156297157373901158363108704486025103004969469142583869370651203770466308242164894433580005968687302148524928795382422861000736420364967914869424254773064472810425508729193419606670525645064096087900244040642473114135660990065146788!
 8093279138493846480654610178905627645635564452678797317660085645985904575945045293632732291403406240934385163140252600210208532500280314180983752338963958307623736733425481189342771892693033982841203649517717601003467519208158338293632128206631310891456020148225230455288294429174005143891311827980981984843229029838696282514873944582039109406532801887540772094907478611791577001719038791280637623661744014404520702292452320454057628069657930850203981218378402067202501202667529553130834943534719363417727340636026257960313651197855485669372846404204684892771577804345867761008528960736931441334648737735250159245211976597545908769502060561757819359107740362583576536008089376532813708436943902272298653222182884374001388258111629715534575674032149860975542868865798743690094970509798609377027835722338833145398049398921017143358261896740031225279973033645710616072849682640266823477045583015458557482717137243584709948613726587130254940244957385588996605353709033892511454055581245692941!
 3788827165199000437610796725728059987482047989567855938858499483469651
949
30897814997277634733058570717902709356822757630639304970229663395528763379913078585931420781133511143201210260198730421670626014357584117977079045808380884980881666261853588355924200630530246434628992308203070806494107304156759771007752398558686759457317447670945568426890385311284949880181447745665050961489899151762992416428780004741385080452032953053918409768994631996955912786769493195927336620543091812055669246215274078665143235265920707086787955864168604527753575020748767143337706011912940315857431076777779521359026130808289832488394832094998845683076724175929943034020943993227082754835738850741991713694004987985861942344627960841444735665203792829531701633511815302931272302543562910554586395777780221165886661126933574072944361455749056372007128254481135578340290160485176052432969813550274714705263542935264813662388695848981951679047612474744680084772588713945527367108878475084256882598396368306676476645133082342995384063714939655126025964126916639553294222162779760787495!
 5291748568842182486374632474778324492983235440257156760792867425952849433898967643436575482307575478403350369653768736549802239878011920354404912882683594195397184364725540905314210556663207320463884838276837926105500380573953794021513641366249674935373241044043486238233624920495354428579053065452772650722034659290443202201716324235831378351252109576415274124465776261675436094709743356400769041436221806829935515109138556573734119489032184562204438771527004821101276120814078245264988636103832650848085252951495226355426460671844543042653382666861006655771695171442956555905423681933938717532038641155224288474087963872655996503545316017872842995906248975694314657253297995656442753810259566672558761130308635459508684842081702309037760107313710623429337807454750823785605494798769021390566558589286009199045602603206378272907615539703831101800844901121481192777967483910272882057559782053508834615002190348376576463110568401425042106378331650979093472594994266170452072326910171868068!
 9315989500806239975869483897052416122301717289403904669984942721339295
68126161004650902845621267573941439279503195865023504811047168563578354042648572127540263881287194620920381325464811617031358676710643658766055165513311331702271823215687736219584821685646528460697066190543954014065106309733365138119633316594903039216427085354228049798026714911895636425174891344121426361554780892145283670822169402598711263211438852993916963048048178929629882011238074901305294249294801611435330239008067065721378167971985686130290301299399445124984690100198919360598279169730514759434649602883328969660815056345056609378129236133490585780550945642103530907360195844637121650731982015642422013268456687741832331024731921868515643412032717030573066078517538509706917170791725285511743627871301600952208920242405030575640215372736959266799747810707279372391235577709346828475601076301279131199539176281861594303820778398243261731966313336206379349676875089524023642469231904541673862358360482837439278866547759485902892040201939593770656732119490991043352855179871403502030!
 7605578201914838828809464964820842417669924567583122624780703905576531412632602429224362037195329185547180915964431856852057882350103091076128060445704425147997589608880281259978623877435496599049296732208449724434582435036897803651849099512142294015669174534168383090352847796430676086115997636787204955057956365166938345210212057124671890236358379083391190802068995968969901881223218552528693485736518886301604529410281797360806895495240360664889446834853573711706079943054719216487594313141269759525166102522909575375509509337185449000729076761263467652916646455803715330602055347416205556683808723310114567060821971360199116696011772653512414405109362036010017584053344689875653490024475801849902851129056036281543727967628831238165774375176624564045783704964856909042818467414341076607549841146574215334379628252377393517758770399425521318169017399018616421413543927797334708765973694817101033181863768927283763660230192059197929591791482244163940318041477900282857125177644841059315!
 6446753633092415797021262648130428083893377067239822865434173173648142
45629661807931369532509112875469498015503179945166912284138446463087410279878209558773461766677933200636161412998361123878526984496762249494601622241984818828441759725089650432388388267762115386944907223140800386409667479556596033658655008345015746681003715498121545591770828552690587827462680189548409854806477673225930833646432666789519813230343847805542571189332448803371027660806642619768000401457681926141234214210908378826034880398715896746918681275950354190406896727813951321988421183256109487473527648664367133593683737190716713615344289207252730570778056160659161544235891078464655473695634397073722178185912301094436923139522030101136740734570595261330293674379321204061599708906812035078623541278054168265823537425938569664357627109735408652303333957492497719953466625694281212119266748886652563151697066072400219396266842825154475614963579333658452377240996873579532275919009797415517213348453335786814228739938519020936782740215599914204564464383816000999065053718814849381608!
 6550357227064177438662975167896665549998788957217902623090845448064651856930925569645317224108945164542679676181972883295841393513384459604167285457399141508049594466135343984501427618054220965984867109944082508151323925213606951062673373679223322142599523022293640904766459615450559484204881311441317204646926704975974905993511692043902760515744667739687080324780406343777841672502198884943540982821160007277291505075986936568472201694104618944458261855116004154945106281588724851403451900555634666152447374960766113577874837400388629388488610195028128078179274503495840575292845298389091576491324731010563331478134640265046262915675377909213724782897003196325968912513302152465612054358376226860928203077741687004590435263581749463672455178978493175067539046404160336384724054649807500393002457661071466060571949510914024823273526691221496016070897220722054628810038730762296890621526297111428927346339214378575838167995709651297512128824707622937565721348906236186014189959500029393433!
 0117463300332972907834026382527837960530000473559275468487189299720656
13653375153747792196249551796922008557314794457428822592422876777321288598065370465402461993872964993594356323021311084824249501800675718939861189726218243077831783344585703611816094139763446516272565828861687821301342558907381840573422275279094401507963350696306831585842595975834413393166679973048051471042051621356217540904877733022739698065649590094569569853658432083562061593452925424189291617305222097935246571227066400541353921262095374160702598813126795666746170932371740523629631960893652984442507430228049766416403828292571371636030617625967249957176153695852486644931720109608534572342362545038544414412716384767262833330818958559364760061635249859063288744503255113776818130533466466995015477493242098568659350490106211412991417730998045997886539985559972088652729738821650877480019866860316305612301144493319357840763341833138597727323452702126526577296264884620440503237750927026440915992126524862677165996591324571541392540015381169966140144979220598528654631198814587419187!
 3375518550958118710196924176642924238937549451631594772453110198414508008761556264407882172093511259342618446830352107379400041838289360585440706517264491688578728545265072810491172241294152234684844898973496533155693932685540211665594490751531039708324623445957019685643267568038544519358687335149681959769600820125379900840010546335233641891279605446876357037106514135683715512448361849192509499414144624632178459676671911648776744489599464431583958487181884662742027844189992880327512449666964867934589413298602330348292887626063713644580737134010172699240031409996289875932823997324878713822652547419034882217749819545570796378004278014587919441189077071435801103026624542936251505434616515198607934238562390664551545908689970098727578338564769103346863889942896361916953313831063514443194692997895215042734302745054891282240465675168373840917374148437318197118822641196702951400104844973686883604892628854074537124601578468879477813170839202770185008395994013507875106453561461548450!
 3534678749015340275140901834645675419760454833086921693902489806750922
992
29407155069237778782666991230158990938081337285055529905993471678423507867390580365538952018111477155275161383726656687055032514568315829590653570060806572699022721433791492375242219582555155273904766415152423084130932793556194050053244414539506109491632703871530370152810088754080933294790986591783965408974119198714373411365127164382405244158428876975714977114147142795082958870299279246833213370515267564394231135026287768903446466363218444592171575879241131996329875413120183252226786967899641329341131763665388968320511916362239963736400650624218691982230644198135153219731985910156362569862181748547088883782202161710149124324921653238655769085274725478596829812494806860664444935191830374836655081755422573352685140389878650300704028993343819723019614734086482834761260730198222686144117989843675583891590084699913140541383193918165643088434978829915171742974864909638389673430651712173602754537578343113521721501826959291493227874737425724572136025662638413895262627930213000996619!
 6300323252201313821884482221538525312767676304855187006831468403992681854876538405638483192100247223191661009134395076785551383704821428491510169897533907897563233992177890388047633681374846516892263571623071840641566324924108669239676012160108144560923213374291457844880612478637738826410208618024951305733883694158508782319709815158671170951738802867958015106788044933902480689099052919532844669682882545529207870809050166148536753308133690700480133882858546165406413320250693835596317424365884064726157576009934784114084062998236648235748554353359050536126274282001878480529530447698632263662782963274163701153111823408178673987661072812732577851392113807681541894440417632946304900618647807598912642832572998735287161277418336805175637941952440232128885491177415065311168183622698953190049592292508376260805003317433385637848674958223105863188940739807614496920179175139335329885885343364499791300165712868099995155763688357969034499847234260419431859912204658274956441376367770216114!
 3127001434771612016464832132927118257132879105841357861931189374595323
63102391270889013912909166527192377458686417036480120329532875161201291706095927090777356167401939117441244712460141784967972824936614589907255008243499708909680963641689156962089845192562671934304717145630443239981556886935433726230261498003528371665135912169317838230979648522206285418847348693935943843252998753765119249233509919666893106839343099291774291126087972830433166387584023702201121723945611447336541276334027058454177857748524863164999917048547694843205312092927399866107526313197643376538029522141637423602372218506779113887258057677755437425357442389979633581971403227793561397447071194611416517615151238823627905648863589472686057334479728309257094391377951656305853890416816898769258083650688250093611926107891124270988122269346853198517066371742046809637665572893641713249386443340528873527902550868995093761512046498450930848209464606417794077592727351875061493452818176751710845023652044236776815132674319325109519200587674918493027769559654098122539635771169467112606!
 0236069439457213648076464990166378437484109735730098749733872155726959760331137128831583803062490323833048619521149826235866733363594360815330962043523180699058672531667967198977573967198505633203916276929612784504325093027849365575704663665005042353807000210433790543654526769156321162307081538667932875280399181022287966754927414138146006565485087779489944785505088949148052882658768844456627293908196144006839830805240372569506411438993318116637701630751930445002156616091239778765007387433986121377676316379949916035800294253941509361182877925648901997063611511833437732287805137817006854618939770780027545047057465744096115186501688721678158080161854864108089863222334099124749225808111853269987957362030363601202486339705294671240192398688862699835431092004562279169984416988321201809559455053488532617542549536385150631189625309217665291658243159004583496939706876586542432819456476478537355251530689891097966688781002569839068711319214254198866419286668754537724431761446354156657!
 6287140553536428785180176621964712668996243194827310093974171042590552
43749687333036596872146018899966928025823050002504947431957887361774398118194129480046029505427368669231007938335527797500383591562081647286299516181415118243048649558704764203871577064527587236770808180590408423523775775754008846877561116658139251193567319094020961428901109648995715039720715905042478578296419139818646456980690038836467983679810123769463228883609158544301049426148760350379903441776859995675993305022532347652546889955258062893178117218231637950877845934372878641514463873034437300982480492495540033223434378058884644265651671117254089024251656807434576029571481282240947846055854321075345638218480483756258915751706013714681964216897177605495301992469530239019961482626017062848187963579912396970015944414686775318564583127254717439445008216298283049375695975213397439120310652126169622928117872149914975372547212930687038508756506150275226420337304121616234963978809943527080416693322721835932242791116573630925466496712499296143990750000976357102050913521721026748783!
 8180045968331069999559077825546489128367433945158247815280574610341511343563810566377035487980940326526654845824868458290675564358632459180753460775801695839975806488137704343413010596884392991793174174742867125143313255177595667391206113546736483115197935420861547222832758560401773389173211141862365202764491763082599430939167130160355550663966400637699177448238398404527277641720112291229061185595127506650649835460296102965747543759069555507510185935075883789469234080884424210404435178451018449469776602243257275763372138266732831848510419137225727990030230195198814570212171657227651891902737558032398085602854179108696330380502830582541552079221546755099881660712637966690626696222880410521943755535993478632239333088074294403163633929743184574294796453048481266724296055477893724165925475425727294818303585240798970601383390192188164731155785052643281067107830425382786255073575144178094379451520876964418039294505337106958002880600959261554240429538493922366928251865457871541550!
 5437681721619494162439802366970176458516822418482349498561226122052594
06946868433558288000423604267164920519830030400639082160494841822317937800187897147326541391659694146628544607201166338527550831900032819349165007915757425415726422107319213142403345326076600054088324224303953642851701019071959689962221685724205827008044884586616008524685471176644033745417169725731664357129934938871819929175946631813286486618479719449399756737688968894218741250518128652265436890284789523945318907597818378429373869271123324522402704855011368071301499127539063765677619504082472945779516147251783340582936314389374727744967896513648114070023132746198982924674668855898433555455760427757376276091205804848027199984955395267234262697175122246216969012780081098444425535915175083609503915428095603229402450125344480013590713294374264407657156719414139579192271365410090161702991031998657052584092579984341415907909404761270738304781789551094730906625750499363514227862650746766596040918727372254779472975212156735685726097885664645754101381930184782123365156997722636151699!
 9711623081473538687445595345401386655999956253624683462963168340979755045640501027726108378785182034937053327921389434083704172860535162743180971964185158133463861786405808528993261626747920282290077980614873787741173358302761312079602560784881890468622896278439020499837036853688102771127764916480789399444390409250759048332890872832414244933523646308167981840710198476936630553895402873674490337398474907585950356060720035878450430168811021442649884729717744959410584520038230125316607870885990663037128041215289078551534221312154711394784386313780256937275762215857679289152126300066971699384726344308284630682783195321247975797640301436814373461526469198950210342181762593659784532667602506674488467124609668661730097066252450176922788520569067359008431604124592847480566894697818276779475588470103788134571631881749442899892987167278685725466553677372831124446176730408752350650543917283196198305056380900140711890771221329209083766220493049679457866788418100358637383427091353528093!
 9425518198079349785464480249642736866843355216708089658368204954333674
108
68993443622970414443439610988612701962123616829423893580447197020973891992082302323146423505671064991136035773195638847191819769880710058067038705725015301906153585559014641266966919236290595038548687337612191372174427144615555267452282574000580347074835030814855107153993891683837311092750205817019512313117767785184487776872680421393928603421323899581851327766693655981806455715585403801215929712677686438428537188809179099573080680102254116516429854798597801200530325322575249974103543108838019843220023575674082733060839664255593659517583051615349713443826367990287717942890826604259749491147707142297025251125860603900529602402545826248325755757561216131279581281215685384085591627805709293724661243672058886815767907693035051789575639340031112592979725357775442005699664022021383473566037691695441318906191606144682518131601766098616772320663497456046509728826595127539727333686941755084872178893886406183984600371686896850918522983446577551641562981490543467626842114452483994131230!
 3852580518486801957088922618832522355364368736458347914690356787225982557597559602168145222994919737926897880657277499602061831236191259842299974459179319190700446995540584360693267316708926126170133984267188893421249875569902430595059536766540275330755030949068933593376555732175383356648904107287803731742673096181407451562072125983147245748301211066094797879629490438133242706116552697331798122204673427121226641381929147327894366091827878882764146146976422205029114448418441381849237635277149146906974336080814504292765761587542170524939409283863732947357784234240779548820953126235340275503505710289039431336814819951535661092447742704699911672378989551639046374983966032427419931139442903905760590741555533250655482151792922547642545087189622131135166993304543120000747182980065063873898926256489054397396866794321270549392327444279957173363591063334844185146953429812808968687408323754080262605943298620562918175441222290018402100592584355705001162633413891116472241032935430679924!
 6863155390027951392329972227662129951309940979505302073905595811915124
33304040788524971092537241747430138830317970184410857045135768151291536244294925037526161101183732100465189614678269724442617804346498440708181946488570155664729124940018323157474892122721505485676173310551732867555555137275257228070158444430690911684207944852719275167523884694520140584365412441900688299574590054357430805615594652422881931272032923409249033976547146518111314592519057258049351511243668916540226006275545801761174352814314894999161467189352381443368464042767295387167526081339509875962077857277892498559828348232891772081177773383466334241884922791980529683092637567318470970487223370762475836981471774211480432136309414872547814926308746678478952455561005349890788889845921184102235978273731652128019748541341986977054395388749739014574122119048053900855254751776918270607097967712659724884419682338105825994352982382672363173424267155782964601050683100461379274890656030763632598102793661123570622546093038459223095699447464899594352803595728122073590021484674876096284!
 9701879898071617087186011317039698435437109684351766492479554420274224706377160003575229427613743288102773742437633846548182324254585865229937019088847477674002680010096731972668495586454467670798787717513539808839832073277017804624993278618880767133092543389284289547339980467826791459819674690198306839892263439290357185733095966285388450311226586325701495178443681391853583920429643375838949238481221756550210355406710582772688757513784359797904449145269179059270350881467187781681401490099155462169014256978035035958724739149761619033480456499169804389482848716057330970807205046654803487557123331222248624733016399867137951278867986438102554256042535792751624131624549552973102364591993011349614295221853169829571040685148038221398883769639075814255195711993591711187550877596254773775135923387032299401391763658037067844008595624687639951401471457224685434012807858564304393947069971219759406459214429010712931914057426533471341641286645107585645881239511401177955080732163678101603!
 7343376015731556349255659393736716561935500458810732233559302448256969
96555838830534131866761689980856668282771323568706812262548462982103131760771801239058725534724204741520016176660218058824619496648746064563878996315071244291538840423245075603214047762425803652609205191482910102715774592414262871044559729269995650112860668854627487571876650669697796028230413811084693087871684835790925462780349442642545861204599719960800316630347958992894563255312542534431739985369459805836028674518508105331304764752853762874570977776754130771424300232534740409303069421829116816439039165574700321658811000624207185247579746980527651709727451530250946186599372850401168149577814259636124014780968378688851125147127622317915331487044871205793776550304016642970150767388550477383288817873121246007452761235417666576881701011494289925734910123564667639625806511271339649842282450273056693708923735816460953561164343750565029963151679745340938235328999702562718021656243625511798697216249832309565871968296025466806500004671622240239665382418550573065814460635905595549641!
 9820113969652844393015739310520628308914921806342871553537005900350470864609635410978841060965660343653544490617007078995831805614533906504770527431566417609721517919489283364812866046083530718819480534421773042360408411915761644613091367593152863992339638705407205479884795798861699621806442015353531790044765255822727670645936350572878042757348558987682966892335724288086806246324897918958416944579002959286322888293828009160324606353202382231247377367874061794090104138153305761028300884886494159225575438094606302586267698917318461563936799577053825149341530483493122434806333316884026997670244732749061897363345433278280820774402667097781782078312085726344560947085548521426584891018495735031866421748229856734063285256420887466425340533950450231027544934290191600084415039849520215325600163927669366477809584126560429064525680617095585204187128148134743445153937464754963442205389261099549442891463675389578760558424841902583118172885021588583788068989305945215392813746540887775361!
 0042351014931084607654329094608679691001884038416225009088883741124483
06461237752331765454201486843335315258075266734685821776462554798771580037807371524124840869256907049289006667811402797916365374333951451614111072264561762822599124788490992848729888705298083065245993551737408241133677579727233568268033781163575499834766699082383781455439162155128563855768188044803432132102939421624081354802623088222419123119256612052550161349899775372113033318398096362166247186330045413600338330530579386079021129320328871749951452720450623958005426893173481835408084873470938873886190102136217565025959113514421270210116480930930374941672915936245687860034660224003395352251424491516060429976479424234983779611349866591027178292993124652842563039824406078979869734206039517007531875786306161264714500100320811594169604357882471847656444135133850918620897857462180539472705749147588858463426651824146838798580804824882080550201928877634902053551585624001893464332426863663411740303122342371725194337451401469092871472905890150615238956228461520314617026175667585862095!
 1547768283562545064316264374580760714178578002758760804833259675887885318095959658148160080652129817919584398592529518445846927246647707609151685174638564718762214919321562301012713105284450748107002650244641785872435677992213039965218382791418482652816251046147211630479078224202348421762350643914152982300554362570147636995887845014405130574818011867308723759652465204643509343130396665585629392515681038169466662031363943991734489671398298156274119882627235109525122182170475068625339926753779784668099954204214991134354070102205692681999404251665893392849856566734733257949343731185204896148039890749110350313946833407778669368735475491107761126947029878211256476568149156669190955293673205595772792951298209071515773009178847796337430021458036031447789062007715549047648054242705131677668935326694373590972240083159402375838831476354214044086042129957701653672965990204836305777985457706702819058718648306138252752786007587907024358743812118409743929083622398912538931673184265955965!
 9548495881455735273119107469179828345743767858841443980936994532326065
725
99697588242192935879145436934910439042263781767557322498731475695701341604149887297960683857414839097389448234081301095658301659462807191784479826332845553635974512187260332535781792406870010686165062027823681063429287414508137306095489089247445066227733083852681090209081324313151184953359696898903910317086437143284268249064812666240692670421336716047057426553138242434220856097935006501412683886793330241865462230747202532071789380503171991787349112267762189970847823608111600798019560682135626640924595140594191988865960527804596189879889781246044507520439119510874257625350337428534435996680254877211293856191012207429651120888429546855443925190904093459699762322513668449395939143105822005497761651193236335578447738700727516708877018336089731053330616740094074876084857287050254039652206249843878079142123292038061883104817232109300172019148512553721123091515719016127137406536835464034590901751691907737631221262572265866454964495912374961837193955151966504573149034869814045381745!
 7369758982275113774563078672356216976682523924529815904675621852858455891453014822265840535952639098539371766197101587838732782383755847244288253637262108186657407440201307721398294034324598455034889846916089350460604602972075243052225050884840981344559999075868131547522204656145766233140452632696535279292379792937392919037486967196463071806072478474739655051709747509660626023429037646844450582247222021323863885571451323474982034996604066211777772978606443414673662111064805331614307054651648294660337643562092912703240902104351027595403970654729979272108961839673150847030362204984020805668699225246595358373749601331417900353700524645605869477674688973094413691010744202027223857514205225470819089634991421944317404112374851728895430801845740910319994611280556433442262289579340517365029531336028314329702493656220118807383796596866938563040365542449375719742102493740570193694513848256986001953215162568971401835116525496006360110312028199534967046160974620829177365729978564571306!
 9651650016227778852738340725983559673970824046315259176738042297431785
28315649444954503695640110936985581798511502721191591763800482965813078985947039731206537802032276034416297329698012059066824690143029493995250158989047710508025383515715842805178152642640065745840279170365562834115519991778849951688578980881405096867648256081575871689213785261434824019867008595949183437996872749380392439900124089292676454523422192207578413785334248788335354749324685978019743073891678142961050444496628579719868493170449749155067552127911161583805706968196572594815298667213335258086767899959649515960610988893062288696613263121755757586483262796857114153350264721407950235985958527648203136398655628137447612938148477402022504450859121825095624779073889654945265020370785100531156965622029849937475086136190439762995990313119008043197524580940000914558217454526625805274039981316932570018276842172231805140682005023092966177270185446003704330143234525164686645610521720692906036720273335396157708284888237288135889404534490226994538768784657248578192875582017026334879!
 5417825355455575490682500699797395059504613420534309269819057255312303387133029128503192281356963960128385345521159435691409774601581987774123819889586672711142729583108270898639204621803453794556243397185624971271409579259619230781884045355529797774221068893673388554858810722367687848593822515403544099482252905928348478013601350091515811453292144235396298755483068015588531659665633944781862223936580697312612851200242204741143375961776991063339146375805203581547030622952772170351482123853049326570584461131965622545238528606444933091816747127236972720295002626694938676067390723574413268607147813063279625225213583451461753197073528090113543146777394534710240060895178155583075721182150799500558837744547319261292538304998174304023070223890981607615311099288865287256021794988663396420618209213160431768011778154296636735078724191834058059780194136413801628579298183208684244469747609594675465935139271920270860666700964469126425789697600503752819096615375661855458062643522949216579!
 0834984379257431971587706468682001818232048689982564563340501384966557
64029708344806187866968931216351339668783136235117749794199305482289866190400647154359595792275442777794396672633729746627797753573196084347249181190210119294392590380260264841748444782005168568430346614412500612254411855360366968299480657213953513340788692453270591291498280174112107188413426878788829800210711931841547690632321330356647042801998341625726105167041311684938677002775094988441085136931695644486075931708354676736901777389429731545511459227701110360843055771824121223403292822987443986446401919560923000143949934530604425799693849177239781614945113120420486863791675253063490066523958044028984353925557848458072200332029250346597448132614017337334841522087264985836723648805643312830469305304873539059684897769410662489968164655101825562769089233065437474773251574823464207618269372020011128849083740841566637879049177157916261744725335692110279631363639619333830316909605856347865158364104095218542189253938453651900094568218823512196785349129074727334576190879527700714534!
 2964288577789197970051773733189425647467787059514167095015125436325458585059092777722357441369061070592541796579407364489401336846212597403776943629267107864806916569414494764962755479752699750611239290659055560299806182775792321198690451590594249076760144944330214475381107886168394173626824737953620485786673661943401837539950788735707695697363348906096623415203303273664416840915597267506068186919542897295549678007420888087319998422933180164226391830114079597049126719567266193876235342306778374503739921556049731619654537918413623760136660987343740561564616345985238478285233197307913701982509058532692942864012889661556236653366808679676269021933858700947062040850270178945051681786827703193427843070164519313139114857909616968441606620928373208333878676414883913529892584818453086699758841288965867024287556877312359003496164995760829237752268936555707635413408265577248890243575485397525790911342017983026115347451748939422823882771044974234435922820366214729739913674036710121597!
 0943082487534476980106697699031419407850208010006384516220354274895328
56955258016698714012790945546584468531729766388592232722802392295725516217043953779868091887085119555014834500653542058958817281907159463277706136347609047316518417732001776274966861929830048478422225166252681241060317143651945672834889281095890446951076541036189885348326694340218479313476380613355515202360217636561827113154532531524831850160025503530023509981187456840139784132450412924899510635618839886059399851860662669837430682156089353640803722105692217062106540290334689571523900667996984398197199449488473637992656271379144085545126277376803369248790964745110630943048104744082597529027649301909961828672066800838124770828042534854515494482673351770991586513972074445355962906202978965148227996438228462410049492538096631715849474649687732429417148601177579254648092229392563484734484973447687678972551867684457804193010435883847874498471915754661252774210651983403688768217709856479897496641796375853276088948339937898038693590500388591500418224769262139163222115117073297407572!
 9995059216141953417954539564825806957558191410105474085836697638897485443567038088777622534237252366858625286860701112073766444177034759239022054029211833635920768287468191635734436212258468551849117378281498933173294328687866734127709419506140678430955963466118300937723559315500840818820429901112536254951586587987779332016060230253996395820888578524640683893060314881551188185106339280138068829477553386857687006287381871755096202301678908295772993703948123553225117730651413774797053438937964519477623368044456610377282423774640653174719122855087525701248555303495842547755111923104174126089604176453047384486184959876882445549497422370796274252261378595615081527071735522514060924714662877076575923280000636236617818518201466129968973204506701938791223390280196792848576421517536050324280495374126017027574030305342271641863949578600006459952392766917288951034783250731781367442373727643857425217753618604996157784516405621251200757112686925439127054804174130629085265480196487981111!
 4373415755475499917082236619650715279722050896985205136490535547278448
297
20710781457451456846086111572956596317579388647484246331637656494481161619216046287370290404097536728861306625138090935098491430915201368594034990362979313644033125901186964880120878666141208928978105070175592631593289475933353555853961535737486473277884692900514837562696456927138301087192984228256114413262879693085543514821959294806708059222682459066959870498056520226321886000458133848213383801071401193705031999865589124946066131408979946504502916697723288306019518497855653243552234794761767925765445820526605167994476072270550260402538069305498861065092174655658888730178883841289599959659159322793045738084143789823577978122166391540010741213360957168963667005748458952054792616196173666179668924730031816330776842912398177400293806904648200505930567210970470723585762765597152866857405809911535605869057244722420834985942707651457804339879341679576813796362083390395083293449558059536376048546223113625167923643813542477484194804358933214598819421360579294167412261599983610855016!
 7244026493529026929476241342582563872303197435078616064617695101218541063220308171661124148867644033887297576584439522022196100737434541485089168713374426783595270561315212526207386933218305935658930621030492920953553814549511601214641984397939037189643986934878415890922090939070427578219059357094307672370243890053453120967003508961922242988160876864329829397148824960412446513280821124892241883314447492688036342391829666716628224156781839675243796659674581169914928136901450227978013597693138653945547206845777717459138536178479266953710369508963772279061281236547915708886907667689081937493406103684106738600541100262787008747059471065864514391969805597069505565050151233936665890571733133644764213070656757319919039388118938253075210882859516147506809468839245740011135470274786982168621274321497665188300319603334562235534421417368117005957663493676223290691848803237345192434912465665329718238417396919865871333134120710517073683417241234472371867249415108427049615549503795501528!
 7382248605384606767203928758686262616984382280560158757866830925122304
01599897538489228360095980752159490258074717157735374806690050015349853590369767229710437159210984693912049054262463396085508249182328658439340262938268563715259623894744717833699966180201154788249913323652215956653404857011232582770818862150130715779346002743951689275243551823962408391501234739246686510022276735154153398174438062936818843187021953946745788068387330450266993482047409308509529400887069518186325483548249662607066502499564681941064704071227311004215441855491231634073401961809074987236703389974993439243991658806512836679056416957365216050282244885217573611331742947356357748308478330984929574305730604504128402971148973655233370252933328593415448831374005810726242464775155356118977342742942596840194068133338141610749091640443078052777297700938276873668269280836283467725910032841281289357876118865330379943915710991731308768414829814731674389241507081233304663866652688517152287734958086507090211027130801148807052510861641816152556748171047862194001056128001346471000!
 4896008161813633986131437595378357344634700973802239706673331788471217421662379783395050849458405648043005911201841730050224196298113764325550862599366729792121239683362625433079201974575553798577860333993611397314797358588046748266319055503171475107408265754553845260052439117163947985454385464047744527444232082011580589401104109453833092047559831301278034058767338113451784704239620884935829339947629489274926307615195947580863523050039063526975508973719632143202797580886958529773162198359442566894666349865566418285278405307103946038370553195307057814332061654837208763730542151049819639823162239461555401624481922748898899154818161610141291114223327424807105120278497238490440264296807698034403160101365988085642296075406956955713350800535659518884145626531983654599814935470353339657880494761273209004855311359086974714535368901571896984157754811777941076041901914565272888404051882795084900826453601324291522888893797519995599859682889360891127109103099730675706218659729673463984!
 3061928429550429210546691609154182803517832368415521818655679634071112
43064385515415624897517639771881262098408736098299238363730302750594187706262635737848136886836829333969889277444686969662949968966027691600369860596890471841716000197184123626519979301278741913927227986980227245952294015243220840481753981240082576371360670303344776541140427436996205412514504827002105151741189088254926097747214620553667790075520087998923234653592526127377276954567121544499950148452685432597408757444502355950317588809467867062427950496812231738195319346995561510042092153608326032153069185727225992986003953925473431806464770644415440963085983320989428117389795068274955248706628273280536479247410723546119459442653797874986979596432214495014352061663273608338778957462690088960941621373442638200267657533910341892476105635988817008353964495585219224076981305252173195013237419645342897616581354073313026303028547802248519255207832323745483267963289071256274752461229292964140942485029059474155759927512425085069966347353764294073839182074190916254160972844591625614472!
 7217059082938576767130454384335990826160862846719632875160286080403534720853621937494941366551991508536892373512748507429481445196541693822917931530918037820472872238945587726485845658358368883541761056472125564386401518568769577988275174222434711115526234369721170763345046653272476633423782119587911761578339722874708451279886599245183279164144598280214437270189462668035792333375174806410499318521884550682118360856897563251181387504609424195574432639719843107892775247235667228839552735523606622598788598539632877284454683694923676064844122735368292191324554704074421666820674612656707964301200553515990474170854616373362027038659522738064231262187406268909039981671086150219582650064497781735731850521577151608476313142971006824824913916249289255612638476738621823334522830285701381554374765057846569058839482531341998139629573625019198571058084667923649110592908805506833821771837094406269993826919706824470532005794540835186100366116156094508242398650419987316238383574666454521887!
 3590261219345316048583392126663772506208519054623623733732811425816643
84249889798596679541759200369130045370371962753606871830137648121274105614824487959863510850054873490298447752975753493966553071505515441039093865374166652159183354997382566893264526862082359621402396340971224268268700253395582693224380599832426908453047814199149893110710157169474955576352194587457686296301838990582420127878675579693472318503074461060348391459879497794871139135462902548628222497438944743868266164360683181248859872326879107661623053800860292158338144328453224074623554187998881747238128535968382895006202252464635731610826636036431485635531605049915414413088721541443317452537321065139611973306948781391309687331861366696193940257200499308099995348219427655878113235218778124571834239764680697306979340608138301890778537922762154846640882312642981642123941745697135666153982555543529498172239014522235919257419431464218266477688866772502171232941522897844616291056628542007145388341678148913456674450692912906319135618469153315855813507648754132185945574577015648665261!
 6746620858010700235568168758105959676998901985472706417531288487494139070866420808062769445013196701970335518100417192425136442744852197815370357770961797803655471501006418180502754073583631210075848690420360453063743034388761523828983557372852602790109658113583990082025106415006848860377851451703993626938322618882301899591271000879075416628748322394452285023918486791381569205686354321704163358637035324353038603138245178894425200804853014804232640065209962960096641776937613082080687020130883472099991664558057470297265064248590310071846989531069017432283784757153675098497043483482059931223224751985485354554519808422814507464169325174171166032932667762278190834897227510030808975252050302466493512646127848908741183038587799856966390634505200221239345266865799204423861484757242890105114328883814583700148678228333016407276114036941362115737169985605841735445608033688890692524353381053971593150452592094012886826761957851131323839763615662128576482640972356689220650459488317985864!
 1010564381869889428992763148161311411978394851438964020161614470282221
756
48273420064615301617015673045186184377052127062573422587150628959854886176205229616886565215837784247149479866487707067324817990842497441413030772781221727570393898531076626569482761976332874465960455935018021232313616829469105165367996131496561881423079790028197020753072041377449667453062511078456579246380038273856860224589540614393614994048484286969806483262108464380743336558398688089988471514295701014512054966842896674866101866876512973139628321441026834165860359911438931807625644344609274750282537324722439635823144186618983533732369168086950292204814362372048123472392174822684291066611784943531672592385041053779311049081572958008218904109965374052294046201984820594719565468430076822037328399061467920788031306210807428878267456522279510397530185492450108066714356522034098520971712751588390486131129466673396409924349264716231223460568160044054572146286566256168928699746838216339043317628637080958285081909697417621207405508511001815330208171813671768543487272089172606743181!
 0386875499096428742804106528574447831399487497892443435373201883750977953460440052811978526927544248963257416298794288255060763951651083871176646737663875269750883793989032883574021122956354320874374141624949105157682271174177119322329453919740921365908600004762024328188811611636449287155599082998145435840371709565305275679006103858220050257742242925697737322966093854673369294496815432605685823408507390915045923150813226767810636325059586274551489228285654069452221056355802862241676405576952603221833562396373988080142461187550546095550941227200200166732907897800070963848283124462955965450221207433264365718697134514468968889229510802001625680799512184131609833097021782768602448714433613144592320601473497481486913207742459736433949200730885748206722411847926824053304598692754589707213154584154047723222208392080363241272176311628918816433940368693171355826800063517320974505243783052633429820515857292937290651440822520931400383344286009437177696508292941118971208737078409355275!
 4759466760770073958299632583886106737450792618043306725140535211613376
78960365385798503221845083723457258939744824492032873386027992042012799506284586176929349347486450464919686353383914495693293534991399224536641881006310307109505687734454230964589543614186308762414944474198666983477134053009577978720792914623896263908846392996906393101638336383213195393793042804984875962794959779336483584800378416101863317414981336434273879803025779702183088650364181062215710292820215871814456266435519128923907464494910427359692766523114695665844581811447637737523501285931265925760750556501984335677543209175069011358786716195493655202913909437717332015580807227333191001779316519681542280883705765075988375970217541177380871379853389628968302629816280553011075577589785348238548129828105014962885887182322180488826018274616448790291728418400029367469706652600862828438830881335633580243510577635285933515444380101024499421747818965531884708737815522364407145428295483213118953754081821607486597977762279102308233648436172336602917193399261678828689800578911911569612!
 8611373040422299624444564522881179747153663579146150494381217969991171955339291546798588856908281911031471838112996786565145305967981319080042218270900569304480748300834564251502360936375255638319351742703436292684023477641389903904336235185135026393009596644489877604174378603817234206079071437119444753952284355167788857090934059098426280075550024872583065055751125935389631517182606584600128932682974216179130811687821272103921757969833700705560047926599743236495254475598623484474040961714756628827532509173759154603250809601144327041198731596968007968936040759775018037409417146998188504662898263050340628173028231979912553091836280779925113306555777258958054972193754768545034660721841155705309674742472328699207294954176864890518966875077362184297915115758515906698154334699735695187655323006157281995740879843326878654838770370483886796963447104488103666255295862834343848046267812214764251660197642270203629450879879092306899776262202336341177118201539905017307149399611554840371!
 5228268577998385109384004528263675761260563984391352940873945574277648
49924141468582429138579177562329540201682478667600210215138266641101300421780062344321791952368617769613880500659250907025290015574994875260137231942696283769173901232800260299278068310630273490101100314067077900457927698279313684945163089509182904830296500190892833649883721439618079320874232876806864909920444950735986052895721169951904040833898408356330664385412889007147543866567070850184695379003257164362715713573472251059295865110984068456897156582545572563335559457657774761802015683785236403149785380983156625318580942578510581390461546524807271983290957729580553008835764393546571457913592767466432544838454558273091398616717779959434994550317477143659796683456454234578234953022033793923089622734428667174667986556825373251453774300922372120275316938566597761078235980188630750756040836771274187145896698345702753848703603042584280212778831071351132772777499204648303734048642790225836760077390083656159122196628426903636660298543235363179945147033963949613868716717763056546091!
 8856551844344516890334624584682912414317535865749891247595560896040292155393977446428877279516223061246477930882654235748010717809152774016548710468265535703098981310831043094866753941511631676658281403700866865547643833977042757125044749221422969080622787608544404858813995712747561301902637515073878311885144100537103141831634743367511749232053176825839150342354505860226305868702779243229691617545953440457447399711712119207789915812180624709441550694727351401234550204629067783378176214191890146908807079818100673485939679726693487696523832201910820873136965799813776062143345608391307991994916188426151766201151633013365240268650603921725403434552867518082580104629058208364681107351833729751961456122525371356771188784251994023543962242477517373345353389150726288232132196100844063151547998599521588884711599783751001062597243954442905647837242827112768861308729717667450387784470605049817926326301121793285779630213417290584506938423127857447098281990368933332322524565878486499097!
 1750320221672852149988277546583065590159584351618555205489782673613579
62795749330522011191610842080236996138900439932835066345181640768389987922413230641588672500479862191487276091383655534567175784547455676041291332244609551483125353611287145210743043635547898213697720092793013726170489082803939099983557408289800561303263280487840702588019085387730318818712730746136642050910874961241901769134499707745752836339783231561103564821247090359536816103938413756883377157827938294135462391627057605602271779835321108182513441990267728610496870350607337208935530864008142659916508722359726946248604836665891130395850751047449472699392645264605522665189249764530807213109352096231576084883113826036479166824680084142235887774104611556932270788793268743612837957576853818407467782098467762736724469111891654655430484797104215239779289206763896635896383566418058944214745396226231753265579725268146631176978012993711098245340522927093300399629513714438319513505731788056663961042122577872528013252838483308299728818250749885183147176842056425852484751295545343386763!
 1293546440777340500072199683801405226959470919911895518840537007723165819521053047311491449137585879146562388719464798452652848026896471317271515010401260230712122287922468881136328743346672378205581117942027216479225653704224487763296970129276913150042520225981080099979885590235689043290231478538738724020947448385394177836794323325613093817720501734309796245324951033905554193731155678109600573604690408793506212987488240528497439396469465846777436237028014143003044016617901165797602697905113693090919413004043992505664956242468380203405089480290002637622005786405521562274015538802800346895591754312762186131476052556899895094989323834728790825399842346397579120047011707656479780085662647461192149320181526856763348584378214733117677538206424894580965820041347269571623703837207793565976200522780225182252963200325369276531984459658381037550792834252785825917456435006260843441631129701955375474851856666610908213017688979176081186745294529881571076612860214031901965386239562915131!
 3915405878496630720194218580207054805464477547695567872089601597179073
617
24140611419772765025290138599281353137970925603612068498388821519225181321799809333597821317510704838060219422357710899459174705182470860381957578800281615561611665853316284726372858902442337220872462933270283531749284100443472630417990086941692873722278380802882663780139205329286772928042365659125645148945492893200840060968418317839059349023762050002243391242619182832918010847706957415586736411928012834964582068331157546262339166418139061988522457343683067739836101046423164641331355323522737526644533820300409551032192889761040287882571654340181783887410155412948949210975077746095597715247869128811244829284257197468820488565490956157685128610593526780265614393833585921788673566005965300985365462064254346379106298885738983183543696792192647757803797609915199776315697301911388169677703831361743164453785457007319360521970015173541007668696013054372758816070499877893650174222466174381932691928624293010619842541634604853306131224444100538119042170529502102039492849932802291875208!
 8000318240833795363864223783182669354546763785703606403992213306997783815919525955558887819155273311550013170879490166772728426303449497471356587672814394265492052630061908000591094495621854521757908484182984669384194955881207470010603768356344103320545001615165724072012529860495889470797218342597016438475984865828098086905490367726146202153986362941637717930476272183136596809685002918031141079704311381186418491415869758498660224546492765131028727586293867040021300059517816358644077874811780652256850653071350734245894460268346208345803133921453542233875444863038607087278502777777508677629920222402710743245913400402892872090265865447356210842527192228663131418011220286876581195927271283513242150881645019120899669021973736772018155467098939927354219911627316526245069499200284852366347161921013531794460181932739607212488739815750393461817020822302795639335431676555278850293516327345947265795104011499734482377420658757303463602505161561392726898206604832108554232208407202400309!
 1375158254174604210574559615339198458900273971574375380224264155677787
59307934804245360144550080463441240544089726593996633007997972592129223109419470783842041830759662553943244560963589541422566136737969285423713764749526337556977162602199226734913942723609178467619658720575970336763996591575636399342505878894376683014289164175738503388810078600218625038800881754282047678427259567196048406057121007965616492691699693920855774499424977562114141333324323795150936409664134080844752861415797124250850592580508106462051245722168848201979344115322991552482048598975130100755988479695867649524880279423231241980738873590666649649151139629244887105704564341997817437109316921664762069094056656347912220876673531620143957944457621663868466016550053394793158087747107647644547839610999272348900285145797974434466044051117604558617700843387605314800885367357021156503610454879928403753217591482018829939970865269064553815917395418408308262969421422960361926568803854599914531553195305193918345501858845493495578823746509856082129842400795180417637267312953711599532!
 9871379480968186645546885144362583503666244085255859306244147002018821220464219259172345933989619257901631775292386555197656249237162846568538934472706908824411028132584191077575505481596675431195699439784151633240688940704392660811215618619025303220713906467697732683681506611237692800248968355757137231128842582768928782310956781189966969774094893487241466149739727949412661076369402958236283034824223717633199718432399903981284939398586827244646054071699259408451818357188910943512641768469147790922528378375323956019474534909055101642338078115996634482620714158723813542032404931757575337079350969461348285274651377146834205626236321971729619991708666383043815049988726067172676572483899667394934781864059973119900529660035329941393264852632809300822108367705019712870766990024781300851305272966844060610164378230719136307049422049383419600953509993987135158792521973942806151356564313408161568884901747824857836606800403926759962908630937903111506727671941876882462830751887950689739!
 0548979889399988362663176223805421655009734384360758921424204680681022
48730738778094787723527390164557430678984175586097805980115965586660818087835319300271259737913358957897334008763443118861486976837881121510877126677572310183325111391985166650796809644853255663841758311669493885921614166745675555382378604424455712633396677214622446741586901295620545652768104736368260978986496300568279073769198631560129161425693064781006989197020226538674162603049633997127366767957428955566314014881184615445820075931678835668267089919455698580240906776542744450798568453549054758781082742772021979660038202099786595196994492933543169491649170554412944820929676092514799032258890049539549957229930180621792621124071101622095785527048886053819284236085295701406576742213483133260263421770543730953570108907807302213549826362852887826558691568563466259473132585195659138468924462445834402277049670665349938723547520909770648817090001106391255718740682470471367225709217122286721119172532204691459692215612297524374555068820561736954940666273325260413704462908654461510442!
 5600763291794861451069225887944374815778912508859111341722330315674973819208639722065135201582800869824687653737532334466697837732810111452619599588666501082168815975949566602903527583321493728643587459967647652582086055524473391211712979767298140379890972865069764920322099279240402066292979560833334837097343711038313640741164847600506985201567447227783589996084255788427247353061170516020218645681801484237712858766165911990118688140951609402458068261990511296112127545741192753463822939947534991074859561410795940104716129658891591656799255444422507796929870576970584791430401182545453561117242733713999994326721277193231933913000689026267852300420447759813672847437901286717096517647825594600907601267703866659554509740468485891271332399097293379835865350809726709485316164545307908715735299550751692425027520125482063398833903447828489486253263843703940445054343631202404956819485038629028569337191554779296289884532505765976820764344629468981452443342055804499465858237505365957053!
 6224403818429935935441506813507092057744497999051667690538020962176636
56068357815873203792310267605286259507765452905795272104204138524615686057656282187475538902520578508007406933729429877374630579256993775040268566158661680407615422161938897946385363383112595824418797097195495224074795953951942297685825139007695483654789933863568806182905679340765197580246742179102503322169643776004412820779904903233081231761123799725721469283312184717521295801191664227393514437669837519984530645787366407773806996529187031231945950041645141202258269724698146148818462890498727283619238127204197791615571313447996875757033935401932546128936025654403122892178220340954344388369354604089544580247901808476297034197962302160294516112476916501860059811641727438266730728952978409244016569577657255557295761302425335479095067619819197014241516659357446039596736185325510610079244346653294418180701214764603012486296399753334724745983433900868516046724022521613626334375200406632342549930842141858826098209436157432408456471082544310188309077262585702511210465516446200720391!
 5374647393215292063379797098517074773038060536283898151196954606442017113929566885311883280626433431701717020517026485281318412516343924730717133554950605158671361101058050469783588061150722926127576939521408030298283970431417265709132950829112534317694308075468655132922242764990417404748134107636819495739774643796865183044465668398318484194824417605986382138378235313730452285949831010176224943940539018649427132324272489432022720850526670401611065492980272688629950320140783550068178326612442947337934708704036933947444883640146301430766548886919995190654063116647678194049730100375198570541672527647023085919922739984234149334998390978640343907692242729337668926604934944169471569715547059904217421925882575342592999565986426768451410612384687880654457917717504027762823606330079437584074366948131901830157091267666207989331700172020539549068640945149774097741094373452109428596847172702340645067100714287458635586867823699633907994488074376088353368203121137324451571040418642925879!
 4496377751457723511758660881749387826753877641303779519060504064763026
806
47426906879414474482693519539380970178496731946452891438922238632801012183431411809807504797024389919357272570527060547047281474647446208222454074714169406520696951676001055917701364897132278420170033566432055511462217933132322217119327373477715778865837696990791171131728353740193571986318244470476154481845770252344124845509681281166649709060432274718336680981167836515700468018768170956889324184407362310602566274757479697637472090635484029491734727487308120195052709637583607462545479352954234171272681981339902641902576337361165697385508744130241104699836432221001267728682180949890762368689263384417518856262832129659941213751796989052092475199878946684512057837358450431489084456881613840158803969872920098540862969471322598632313171273219428914135494323359122937242309660154616499698557962763275554577984454403223040904934659346663308857369596023285750180268502120007127142076555657726407983020729194806512936021776113609391135939353081217736284318944173962135545360500246138787960!
 6760408053169300250934418257134216136144401191522895306530077790539720033966289417946596417779835592534222877746564000343935264773517835159330557199471598121250380175595475777459515207139084336100115379049015078907056708818445741145088305122997002099696113097121893728533083594288099049270074679601280969718292839412819896052132336107052144317601499501995895358971833690782831386342368579567965634192930497698152099745288783121459736846075674766360600396879174354213850348953262958205447487692413303661183286891127783175460291279129556760074187332255429082447596730430080458966345337819875369948633505377224451590105416566588706989890137538880243275851514118584543536529874915727188653564082683272251101470090989862716772241528776898622677036983969959782816557940888253718376453740221818841187448133828794719644549375700207234696253360159221820280817972604912829242072671298002423760022464850087988988572315884221469461474910278915546521230594248610272604712698132414938149901767357489609!
 4118268050477173013164589468234540907505186166101541070179554175975982
80422938627155510777799674591224661638474771460111789648586772191861044175307319060399730981271821910672442441948147115278343039206536812214246550226930206567588127647543438557347426328154927705626600665467118487652072673356547316696621770698336458358268302077663377786474895873125521947859905262932469843638246857387232842777898399257375979040382852977873976846638096241754775914830964299155281451658037282442319575209277265826932305975246124505643557559140534014297675082443347466243985834376148793899641444025141130024688693719521578304486934438407345590866909464481382353532042192534791688998014391786232376017552145946542744591797476063616652401862061888475586487380583089379600294714755490167949590428156184287251585293982983632066919799567389478800199587980348283125992532975991050207350736266025424310513286294034955417639910947632944854290444810268915259589521457320122663991033216800068635048620073570348589610617902776607181677068179366318045382379191259561984388576095180289432!
 1579652120565761109398991549688403137754939354085695344990800901270384017262618018204667379599468295436971942325792206474709758952510700203774171942638934649675715427250404693871883572775634448769445950849863887761683550588497002868572692805421291795858131914228380387137282755286830645433314868809215169723787601375527981104596698829177796241097070913703788393045064501245988678589578863709104821652981152058332278081779915608263843346554197603150488841919860848406264900399587816932942706196229745312713653269444151463625697342752416087344026979787900214636269626201203775338836775496915720824154639242413505757494323179537955463238524199308940605113410985187805588409273559116716167018711815535058236609856919392270006468228835899448657522671480046316567521942019661830703452163928231825112778342832895414247217260081014787580302122947515344037127233216708657243418108047795784144265189977886011402027123294823762338268920964111163011032217548508094335350434077628341593003000533913418!
 0446423526240038073951095137011158509534732482237438035089352893521658
77809760032571212835419531225508204126987603541890077136511086047181941080884311107425363917138988135975319323346515798647750468457586989391963118824114415430357040008264012677795384110666509640790498752217172264156490434959626706563289904578376011368513262468346021348455756462607773521883602166221683273267524660090778680934843387919815646612082484867805064429695846021029304537246334876025996224270099370735871074599684633237610502937874080790673626883143222400263425418349464974943378764251078629404943559708895096801337624024819095581134913297913613799767020614698043501490706733150637876240206623907027183279048028514829560611547406959972561949296683021021193050250622682638808965406298455619793389128419758811358200725743561685767723665936577518536374076870100824867273258270559473587594991527183547659915630391378571672985440402751717388265873849917746309881277693341113336407022766678610507168850450924177681798125076910950909144115833703031224085067230545812454372712593920137937!
 1298950497688964104658348507481945401185770235917246901296651148215007434229928281222799787375669920071296284554728348592496576820307884679506470219473098014949774430994977910414662850090667009042196029866331103011001113278230180588984555896639346087537285190743600228423038962151716195641806562700099995601348969285573932626572516364002040799847141233603888674683408729576146976265971507573970514521674038808385420153198494093562083494180844821651843907186454857935411988652622403271917749385275782250382269359705400549454563248668816693702136705498488652755267963759254295311527394338996216801552906883513703290248458258150712763600548356859654294106517041963038966990987130227585345904165117509748613302711360435317037171841680987314181958503156487077214947885462800392627751845665043091260341422184230421013314028569150289035417750909654228140833298247325956328247018868131890697734122400982457204778102124425786794196217970824549471516573880791213055942557982936591018592952145889198!
 9736410574890894887746130638684259775642325268634634396779838391211928
48155904632572684429806903801848937387866267760146675569302143175290992680576999578973176289166009235193383288594182243444483733745857062267504976827361392921256590388559093917896293628679219569856722077114516768711517036384009901803018928779566852973917705416096145306993759159622783391711279810129843002774890935874894539811735338157684613950841856380458329867284936286928780127547239866389241352820450578035388536484709732754492568009427559651602910345775124513594193215268950901454459524169611369806470811023153333882766622987028410072488660528760375404302185784296422316353133503406804027844414752008268900378635478415653636895673116883950433545631780101661551036438448861498271395607957291390579008646612982441522813477864422645334901586371744886261087774283733758627720819683069638318058811078938957283767783011869997008943365606245718983815017674655124808934944770008373453061948200224387252360495475711739466291361825244605762600948866902565813293113506744377932320250380205435018!
 5299498077810525998530448875507249312550651003885719082485478389932660286033739356873644557467569660119191601438807752987664394513579476071447098889327766053074116311530139110492328219311058809736704743234405890882856400267975943534642742107841490615409296240833879108156578990949881571269023662004328021528958961577522206062145798828404918233836573512543126936803798726868475523692007777213811796492400361590234577003494115340683355738248739131353919147581585276254133758998420361887955138073173462244771235853672790530083551436917470851610091475448224060922455757610398609663567882894550033360433372084655672516489462327278693098950945586309830114378782588321229906713291819397652202572455840081402413093213342095068969419077870202615357580218210512329081352831950915725992555006719879687514630234571315295363312886696129887510461508593563383915070262240450567951168869460511094662767237607237505288455533235047477489980158288045753005046091690215964523830382629210630322585173215675280!
 8913584883548548712412653274247165752201579356043381984648837766055270
265
52678470835601024356860883266117880977031360613779093609113087234077209618102390157853292035471271969105674794704414643312131439560967516626112894440503663881934028642048503807286098791982980487313349900484552194065734654155537801466230578392118511432796651242618604478370665694246510969746211106625572671764171963200006067946154444738300958784936312325235285189985719809160006814191918616838901518124804643471901284000707041173800540248415993671028492407559303963487240301375351991157511804441626152220088089789683333245220004404297312612251617655694246030207535958932402085289249243527073965651388572918316494763448810446032143908764832655167298762199973683709458549393433833258846205940157298446429786277862823329069044923276593292449912404613383396901524758560101968276123720343055108979231752867773878201326684509880718026820392202804849215743424256804673069717712187345608571520356706217008389369827536191719737107940739990603683952061279228549713860022565446739856276967564477699256!
 3009495709270131191929824955775763750859423691449068347634546043944371318679563025883826817928975790738675774381973520813126806852841944365315510971335681257482834697901789014318277526180883313639973602829599010000519724377015255864819106123617676411458323693479550647375250340609927897230719508277849700119603131624755510087288521738129185608767747856196063893512409250785806286682155371236246489693259203489219130671347171099770337362895959783509532523598271289649198711044815613010829185812739292211017926948642819683286246929210846438959969288165507695822898733723861578329428488075621932309574063083808914628364138116929229083233675690406787653576163961754266645938024360197471995403483650856887128855292429351867994655684451320866302074899531698788879839089895456546759232060581922617788376612225335473386370967729593023991180556622809264950044987752773346252173326389389494914654038212432180736158453611404602155525975366720223919881050284681073770437723293121597536227505157238764!
 5294363483879135289887879058215501111042335845183102276113343358047897
14149771525157789848298936164491828979317790326467228749418675453269183640879828266619105953142528663092670701732405950706227386670579287338827184951879760685322806148088186465932879942779746124529540952671249690441046131073909192112396940683518446969930471686617424050519222976752985296684867348368116257663525545752244031843922462332556165225141042359232732018883363608901360504726337496205823706184846895299865267466363021958716136936786724835356109940373813996989004405153889590391032827945728151139758776274744531842930536613637951698172746052088546469232041759114350013503950753484896156924950900207556055754384170290146078181869924923939119438241100257051821388230098035458587811640045530311277179266614743774837366237460202073538403482309687677893623056167893806731785663137163538704715874017289052724912520827168930437398229658837763226587058276813473532994786385827743816547793609856131567793418000201475804245593773783036039563134913576340135030348407399275786595343912755160207!
 5308652365385274503788859712486671650039877419265374145011160495071001864930153582757306955302684228758483403210477930534852209549079257356397702757373204550799101581843679809773130351644989780684770092412465890171794998639015234524231446407331462397045474526050430187421299438212570644915073546929709320638029037759118818739015791038279468492628606493557705792753569998447487845448455800506346031019432771827220312508097750299519197688024658963981141533713506843610011310996298251092340076886268173814285820414110607895701149506894308627965260288795353976116845807304352996562712209219685525228849169734490752782340903793436643175688240831929497835431473144939914844944463428965717965533285040094675939963594990733864266562187481072632478724304062904946792025384859153980266086302820683710681925863675616167488300314934301281052995998880618862997236896416520456806077951010091774657308145469192581327312967302559205871656588042033913153974415917287194875701426222147192789110660275076128!
 9442732242913669946659270657251041936310238598175490798699438924388900
89393463412138281362194718079811145030002043390157920439312553995192226090889997125630923302714291250144039818705004202596087808708135868664901772444736952194467034906502238409693051825939968039421038583216016400769477891924212148954359374400999379643728561303628943116743708946744737971676182086415931683561842400484542707621856066439597880214216431665190096072817460641376846555288918618196034882585207484555661908969318905511599162690872569882176388463745955064737773914158066740766500977834149348421618440383883109376015393889363106315487134597252904837036883415016860751585799025411531953560707703814971227446960968940953052600980817492700921933267421388744897485958260981627811239347933827705619740666378971366211011150620641783273090943864210443410015684879462446967599935247049308499270573111248239759233598986452827704154827762908516503796081505783509823027587421577959779004592060888004354874347352982814703676657845392604783416704594176917489468082537728362160668568691135194523!
 8338908918911109127985145874140765028525906720911115279925914212843554397575899852207175909946241446928463268626340215826602498292115869480107657666054916190877864527586671942368344343143419381233500212897771314250005292249716731077710017168511888229988920847294675210622424553471607991208322047262682159688664508167350961643933992447751146236967030823020942646253674913470340742458766524088261910336251980464113711612273934979644756701454581288427010677196263293691784822862791205618498280909007323886154644578857828584097096047744112659161889517766291662527168721718762516513631708979617646484309698655020383274990369013956616772453347773594284105079107689335238793554981878467812308125958197651326354256394023461702890360708166424177501440151789871339407195406803684014377753823023274168651273314467179277067541525937370934213197597040931481491994889872286782267469651931566305291459571361839749552474801943392794936563511497990843542657131020197144345952011778759458037507874625180499!
 5052213989814784595033178625784899977510091836758799219228260550380285
07810017854415807312470071381244813199018918287915172974806315354184027249731986676050304698921400122077849186541670628894614373987362169714665740339540354657042071325868663336279283212156148810545073264464398983800241706849219912974800942850816694356492957834344123652616984823031940948633410216606988284623109833870141892807820737483205430749541642896324813950945589933704491826186642654150819005827072358841898280998019151035177063881643966427934704377364802695785368103679866531939037687765826608503687181035728366643365057717227866672879309080997221922188813671309348050105257264157381340641178162104806787143023891668115663107287605369457537784780650585029952691170323330371671960112352344407475268128928355868286840263257160569745001944449517018066181081906441054552466219974605510837665828858129814451526749038022695678115007030523761609761607516474358393341040779805577229347759913433136721597866105507342278371167761831994859302758572613970586584709868667953396094629188678055717!
 1136878610078550074388185710641269205096699149289422749742545108502926884893954474822863067499394273403248683744914556473583037878860598475691837004542330128662758579270951067896905333597342936142003288246714880458353144138630797626597404893087110768851232307860793424512201715455801841692164076089577132875645199431380232720750051287556376203397533006053915208115880105429443178555893398246356458310469241582866117884901004634140760949982144654146039283751024735058944073491964954037027224534572201244636870031384833984230918324024901579518659337859928294701598579591968598386859819449054412980974841995536896369963547172061818135855259262329953991693759170924286136642185584676677206230544414885826253705320824543744822903027802706575103800171088178328186514598655832587195546458525341975776978217729236120713336412402816349700143731500885527129175891960828973889802021760821048775450013336131917131976208564149148137964066304065403542908487514460930454287978881572479698005656607995943!
 8836482028316033894667904451136553073142332760578710820792676043953535
466
42253678185026829228847438639303958374009738587014265108634462047051758476054990457272575031508505858568197468429290417067166141331885043846980797356017771048117683664107793967943620268481911773148240899769255512882631452780126438139137569639489110846479984997677906299545449515731787008040712480283337111702642723015442391360206618534063071130828152074975371931468400971062250371959216386582428228940836492726282455960515525235059120784146707605675873673361894111742761679155530171994367568479285326732265780455932978644256669444338925456899171225377298404289632547282555336798903507722310316422225593686622402932897079007749621309571349629289649293878759756447666331001001208538049136577804869477100465384219708755533249565430227984049186231967906253176993147358452802777820588676922324779653239355985991799263382568607931297153065955394878327773888071369814974640506625175143141064669754807888250621080369303014952360247668717017783045944939821354666812018915558951093237791066397432171!
 7152861012900733351801133111413566846800791039962245315059620716207040285515702614335810300780277816502377517200967856240169078815127492674101606302319578673330966741953326317915486900877212517307235789809252253022563226541902339914103803099343538458027068033444271651927725823425369059249275644499599318933730202415613392172868821116886256585270998729060165657108807389487583616952170620956326824609039961837889787201822687023785356834418100121493461723067675286359901128088910089647377924597956882500739850238077509591298155530669248953573727641323856684678177814057638772348760403251294676471359436659413455310631406958562634633689731065163807435534312610069096745376501440519811834923531887194079939990955389289577987504772778032708466093615488559657996970259562328028461747441648263204872412829894947810298822837746185618582323346671858688349581842191943883222041292566218213616277944900410223801402421658236604363913231229544346569498272220679082328807024151373524162312274775730325!
 6124704268544338532247012797778599783518199543021487594778160761885270
83820208483499747127552820257969469966553819395937982896137784430079530185400369661661157628681207957971615356066202735762672471209934826291145872585661003020261654600684814387146083727979259614599323921101703973376987349543904745166541954737744116188091670072852497347235348009245947369144102322834363438410372077100134620579466406707530982408555035768869970078481436755104015453365221491888383202132791737495225085910409412646261587266461619176963173314166337444938488514859513586790187007958173647585040709656344453006310865134015456864546098577937682284642303310173279927121446955531396650548172764019726579062195388132535096325094744598989108785901696922581986048732516163148722533208681152503877839030921096397314087014632627748736199925160369035164018132286384101577891383454820869539491141654192122441037258823537352832966225404053959955125418804695534701692796581808422169114677949577090318147199522420048905885593746441615349093468210952738190692493401258540162129838882360671129!
 9047278538251093221267600863567887299111060647443854063130702691579329114716835748930860734176203484242255797432510010038643688160552466827732801481669787349633209963417237792378830351660548716717928740011191447262456712470024976224582240273977070270235032377124169131491308448027264009944972595720923593023069927300052249073651419777811827203052590605053664793101848708283976243597654102454719021296462440721878685429130719911560221343598109261278099244929883532142115168804430524223133517203668759109206121817157215013230491503852431276016026780710277905987836302849099513323332565542428323312697082604828410911646293553079701347159992856426889889700767442334648965004511482489448843811905203162023956125155080114293455938402258904452354916067705752641775197360904402044833678818915689702778936604499831675503334609974345390667968123798331363984458622049182698598018506280836505817585632828672397021647037926115754368783456640465906078885859361572607337647947362839418949283576050483364!
 4940113498654912082100481325506837562819702568696995491876219763972045
02790044667563951193761315600645448648552507497994208500289544449953357450468366227668720824831641359948030706016118223091561752595284900289952934287376173510267424188159371599489096979222577214401390912722461788838743608051967515303147911414335732073658590493042773379844712919544464543044009597518309741823376186337811529128015178663600901647697454495895732314679554993893375139495643626014549592646737347216021885313265446860088537207722134527510310595262530711102355378856916499591169220838887707805173543839856786701509637808868647575766982532354044245428400882687477770328538261997625425819929342059121797780827787051185845230897298563876865112750727634100359941466012227948957495592036099460378048483855259599108171236282744204017849802110317627877887503036302263616097666758010603955547997874569981579733423399742444758845313933453664591755258134755046344267161094890817996895922670464402169176805100590718447352631235416442486477743878776517385347897501402520406932991135325561481!
 3604353296831292899129535615290402759131767734127770463653085221325754863079335478829963834069993715154224943808824064733263123350461388215947951691759254509848097911089233113778953966407460834573009765117060752414362883466091800384906356926853296400551653599785791306066404745571908486625041462763357204425087660332076412002768371472025839577572548308176352281706577594153270832662553910968973058504562259368984989756227021582652652806200251844164898191969095582120789897267176461338008395664877220193204636718817239547049302092798661041184695704868470049638641259530673766660389421761893875423752240187458159722844252290797737229255101808867399083988549214491386356253886378916159188842405129981936517136925916957791998849494149771151943157558263070599485758635347496397568559703862678054007200897450252705193979698125296883119164590452097563052833730948602383296272132256900737675339111682947198127705742624375221375825032008736375320464500057389179346592355770836220414528501390794640!
 6724667360182753798544781407692125608569448105416619567526475074523902
54517053109406626366824745757346070406527575357774320102391334113813577503322561143900976099469521398177028414610884136085659183932993931358081952707069270927607721717779098763854634460240516904994977475774828730093397894064147369457198504829905134842867070991509330445796639195355891478010944345098270173677240979049480592883846575269082140684093675224888424661256052695097801012605772822873599379849977045731761175869419846747429048640123199674462226863633260076411070293488972360126214984596841603187424531584352054891859045356941964460633379884931531169547583611157497667740703154480578978170504573192258815494311439025793450499895500372704236182645680415899700136977093646184318296660690731354763645120346808804485446394798810546809849670131795494286681388276584446505851797712368142674585475571382290726634603164381375014654291945359934360820628279072531886575179734245746612250274430190922429627769366531587168094442427862498407494665563526804502768435782113627340694356164251537923!
 2246664582371079321459044461110922107039760456510101286976059355657979972303939386839617991898691799159386947086324241601016103098873785439567731482972348965947671427213412840043762106602005505662023339519575586451283024177142823715776932876797845227571042372817246844546162244727036661864054672492501446712045654783572692144705387980542744365066549190036978523007037200614183725711309111681021722867212589594857460043532950331146957965649006244622695391251125286803782637520834620109193920529940673531650175837826327641004899446489071950821478410208366699644155548997311854445953123278819884351936466907561917443638748986263627650302720686092518809723608847938016252950392255210283185911952095216030879709223063182430490513612517852667830989648407626187112119385645233258801563584566325681536597414006351665385278330279933276181873164292843436635161566325528087740547669670001881483129926494975606174499455604840565169206606294419074711647405755619551834538740640464663446523332035103778!
 4476758856666609017287520982244711564504556724311091957346662677919503
511
11912484914064555435257725496566392678522191762385475381971083198322848394692229495373749317257755425809647949858910268635945357613551466037513914968451229674554784247177930607499992487150391737113310598418240045774257591786671219505174289611967389888904579312607783631612978256941136845078884344497866404495895781779775376331750386865692143284565907638770350854549228817745921346447903640967193788480015659908526276175097739401643740642321537883413005026201713197591248645879230068500253381354891513199847109339798843654460482728915497107603731744512609717170621549152309355807845628392179950936649904409609156994214938711242914663120546913223860633526874046418697649751346003184289825747512025844598310398201406094846870769161838308623878910614682419728320052615038511068199058351769563236569694142362610152155381725036939198820292713685444010629436726451203334424480829528507786502235886684798729233633452675826546136476448809927763316550213007449452989543396175266117490169121300581095!
 5424491226738528512234383695983978048397524645101205882674283063999608907655734436344801490488298357189816409645101192898539876088229692264354208244568412368752332589778385243845422759205676092607958467279386639764013337529817410380083971366987501792518889005096162725302906385122448156294734866718079216757439502335418797146370341359507068879603101501646447422392328672923717256538429014706590688672940694842542715905205340933901432108131385458259704348580931485506339418705437548201917022688231751090132941361718770058091133457961642203012598022043107382966864907037504453868442844087909458071383896209544920759961553665571306844046952712994878309713450788275724844899897349703962246511049877700417937126319866550424826450427132291612309324616413533039167689451483585692702166031906568999303527296694254093298585047142854083867108892734431087363457002691119243249637729822940094402075202466206644738391720442575483401453940803546273409990964069072075622907374684131198586578798855914252!
 1470803517849673589369335350075446723246131252582687046375634396463905
94790703928961259764866705690718158460299360428566416523782711376077456210903179808657173199934312817969129429620455695201243315446083595765650783244672112585007760996890714299062146372250183703199851692200508139102053789839156229925006468735679795406627829502247459266561768688629321162565605008454294559032917372009820858817353746878318206447022686127649760906343394156649026426219449599972627879887420686537748400124027120252747334436166813022720475458702704640986434675736414944556040180469025649085325167271670951279005239342170274303288614132330961696475560201838621599787236096212275704210996873700071225799429518696300412954188779628724093278461798048647907699890577733886055838249114228316374869287853814814314622428398496233785577350860511010509261293230994924741892675131618818620753257403868480696490469827999122161138665663820326019135968402515649247906443983330031807895236961651840561410338434799376178182100474351909070654806403205691171664322099215471240461694247104315222!
 2051048853663827047208352220722817923077243786214629860668300394431840318971195938758807198115048397750862492845205376609935703511384695978429595440648575150506208497122812336063954148045231830375903923041931293580470253223963911512793759360151408705351460629899519407457553548868619822693246955382102194720212488490442636553953053943533004050613359968320166698794772079525866914331899092118652260584960881496268365467234984048143810943198574036837746637093658063733929458794664451682611483334598089481323014234497363000817700302901541674017957443616201842207605357765423162845642764409375568971553787286959872245740725586288916275422740013939248909372055545616078424153956188399905582479740297074147881435727079149221043557745460934900573768159682819680197715906457966057549425418144532992479819966571196455188565565681215133490980465803768476182660137371756837274130617046443808292439165371329638261653072310606823338899995102553073274412094269941379201101046632087497154105874458261159!
 9590687724094286978759462694298805477860776458005229407570308406385160
43605931255565855331231165546386554103007269934477311816907866280119553224809956171278815563935190125607711288469473226363577830259656423269738474469674793817191834984412010284235192195947941188864520779602313430632171743540692488623758813507950130195421256853896066931254279329444504604143997511059306830758986663120897091786738144310626732857291352473357373341399649816225605641974178798441560213301230296004214891147848575264386251814296191368983822274941558639578740823780903834140879297644511888802337200988640122361741764305063703810769278341189017294013294623856393085315322442227688185717288938851686500759048441570973663653939411381414330070841798311723439743212898269308828179084546083522761688392367067018193779063875186889826789859261224877072553707746809091738121955681542467817582498635908457752822108733709471005344704316264532650987541870482604085049432894496711511556404503759922183153150621894176807974004026780591637359492305802189105616245901301913073423092201187748905!
 4176347523478720509575083012458009760894490201422832151708178638297151787541023277937785407268363951803722727399072461328116672620238536295804476874489455893556129416678771151444595215072801124528978389889243980579261133951171633727247632203561341376655493609107607754288639415375091128355095389101756992734810580205244749886065694140688059815714553496102116404129920711915738223964968790061577179595751167559084819296904355934449028936964861900866118483640844547092298808201869643501024165892806728934618921288399805886754723382266287467489827600721396917908199418072364514382989430173553032251147891184679935694376925654535114088246264417878175405852046275209119455171507153223229003178378639299726457950413622430738874742958842038653796300887828497491015367140448727060522398327465443452935652807696047722150302406032996082014428740664630902436955822017514819021276959194854806500251596627667211562658270387072145811474469794369850676576882350350632790855260275245784521393118971219595!
 6022277801052170563123963444611270021258672357370900902467406949257666
96530479737142762657053595744879087619929979754915470956745686626669331781602694992456378613345040128648268256454678144257343138486006682679767270827808689640327625941678840571459411480462916488128520010261056198452785431676734301941800287392809461519481854686631099079515044881336501254612214135427912283913036947262589780027331680030312219807922272339302333969902493238136301781213601131368310388677339001225252410376288392001146874739783019681516234484584417084711540563067122150252400600956684502099654423577855478800658445306335458651974851727110468692370821037423834451621446359164268326469767485119161178393419514216263434572806939369671644034523111798133136747255810302330033564709193131184154932715418721453955008962151995577648095322472817056846283525646275430576200001721499028964513843833117116585841776451061858250821047245469890855260571543347364077660598021844622302303576492869835354772286691167255092926423495359112977808670676400914176047251101842295428946972427193139578!
 2511177137364661288610993859615446366855566406324240965511527124487408138633958403290683016637505159378894470032446794442050062323805678075861405161794915675878485475379803613320458867201313746842227773933830101592787382664035207938573727331878722116006978868491056887673735468207179344205169186912073390602304035953144024848275524988496686390561518129135491333068919805095831954745243476885587738310414344539933978264379056007932577903268772389335970408929063798623591326882769120482353226853311130949276614545789111470718167829879548739779664939334049995804451114426378780550061812019428565801151160496597514709360848244784071510165688191515476308537089917774950031546779199405543023845556843295871228070339303655080520359026902225743269417733783302077850881645997749984355147030418993109278863628555954986664521514608322432702939865354711714611209786446464432561800235200048641692809012519555879677770712014158540324292727965139982142625427852383618248974400837646571991833956603365094!
 9707852328897458814933477309948639738318201932446879191922759819287059
190
05907540673571852348118683464347785054157828224490798584087005861205284471633587772330438082709137396889505684555352326182211102373127136881420583983854747049000536093865761777730487830785597217538818617272005256836873008672176915441262877549503239222116487221786152262091124259237746705501612558235461544208744584214964776025595727402918471645315888525882788428685588949650842703942989935442747557848840925342436759646126543810920255629982051541480193747004803579667745874100884131811872582385785448488816682771330320509148049902706338669469099351248792271005092774614149529146261051764859906929923817599024416187949702356571809514425854995765179296210567446002214133673754807986035969594685698337977267285287592506044418464357782403623776670298728323706045274425550681518095558886835891475330457011692173081904136821961979244460426499343848452732374619113711082446433501694801550253284184628733492266134568944139002470663355470788141605485679668656432669813031783621646465882083005036445!
 4812922884964461641012502375768282189455118458059573209093946206486775093802437912896018008279404748174220633279147128420951370105619432717629286857909094932180555689790662862891547375486731986937384664195856188997708279900169246494251903473777039886301492011183528372327919965077715581634061761969840722231867827012354034994384291685565051517438377353920322561159929756879655748563713998498418898187238634477477355150135350791910818082698953601252478254704321409778469323294380147255125843760860998146021996986315484735762920809967022312307799997668926149370948131311761267250290202511250176953858317579332482374758716019598930968995429457152380277892235685048764182413910232691491655744448451246083051457874175073871767441735511013076455378978875222218520586133010759127201284158160990129182911856667157392998092917991491610004660333292257760867565666359653418185422560598843184427218109423181090631060596773327840395059606697721027773614118272064342985384424658772847185178836337528193!
 2542583005499614614837350414191861619862910670638791195176205055641054
81485307823643720165399965209504238904116749764360290243419567622446851420894565680323277778182804023531717271616138474526434256170300403880716888884214757957281324163069397719048693210177484934395220889779774606413216065912354287306634985649513842991511937541568268804640344074003191648752422812899084960491088752481897662954439463753621983060853026629767762297282370884106403067983957045507986425562413295697069031260693727227049738584906354811946653533660264315355456127620022454365014092870701038450249422996824698948193110638058489638349668423154689585739417810047802743102434361706393732266714140476450553206852545277727133799598971912933510953352183762378144828212389833183922695403629441944477939338629478208565391602768654742216021974541625034794865733087486963621460507966572115585682647125640198323687221801627370274085461233153148746531939362613438727849840982678998619691220266975459012033474871715272034237848532019977394108939918323993534360838319448350407170160500197194079!
 5569291694412482684602905546024805566374925676902358565496305630549909473833868200225327275101476538201571896891764386176038466914712705020901016679314353889817992613894958205684315254271733398458496778421955422849693775382141987539836280415138532709515070677831761849268674924518788782565238807875593398741899239410646608428415951768002918996744604562347684174628436149052409961460913299078250776717299487379930049706095219029159187881565502948692499482638863968238495608685005799920812591698095762500632522742977572235324464631299191602952782838780863743794848781600798669184494495203389091181996840014360193709330547221904717861619952110929112791700197667202021639669184222413495352640541503434784937300948107500099230370915388201550820033012007604036740047502823812172353310546983710100965755488116614281741971422411114653964940881068713531679967489742793722635135810389988254516055367251021364169290032107312234300723995569142252464301262735666817822859016903399525588647085175428439!
 7934232749253399892584039232079835993252157435842523037436661389938632
00080064574750880709379984627470966570809436929936107002734538156848014398180022649796165498392424721495385516649061338869947944876407062566016055171789113105157898124840674415404386343218080496035776369336965075024967546596535171500859975076400045595426370119626833504239694093247325407321746536577121897863354556824170391037818242656724415781843849453825620349781174947104658950823214082047820539992217083096379247191435705268927378829630172045984163967659793992468451202167315575940610850110840150149395848132431432648317063835229338983573286296250064539653232340901663455349761453977754354551018002272987816661057242312430623503991266927255939838704468224405690217527208905973140317194993937576065170443081784358468902322640906702558256315652710399198787449960056696531169420178903331930791287640450024529260777573554483085149912160462604079663570042929414152107851793951248929311310872340368754933321199716941558224225323452699165148427080749649824320910870913027192207360528239889033!
 3776482440248216436744892838932717872463012952137775840656766503422548447952734389296263521706924829572233723726052121486755901243751068863616862068481075325255190808700823937566799300052564004105686873213457742011004302127479640462677207960288680754533284461163963670296167636106120956409159039226759772561277082336910179793240276009477905049390594990355097623285524569201492338038955511453694537989642439077531543866107961725493579716448034461266623538041455573676426251445905719258022229306403304943177399110774599480518484341690301247105284001145301170159264176031004668798434006763661357541593810739490233845959978566490063310019258076179659274890217308818654512491561008456492191733984184936400789242534005288512740978260728184499362334439677783416430328617074655574470958871066122859798438328988827786089949825934445706255208466693362073645613299517534649909660709934312563597490296567184680351887876443719273432284967575348743806058683938732087107123411960330893060235219350237964!
 7530151415937286211822952590670185758559048698103361310619537044107720
86023300066943559822989972003894205071241309633012473989889865016134460416369764129918551398564133480244010903820420980509818816370765602535422885206425047489586808991794668611719325033248230241059805584766380455213789323057235020097155747602593772076776087468148213452253163020878882398535566840846201887763338893823940059693823475558119660440536601708515543140928633570921594481160175329658341333471773027110597090517811589017086602990160512479450702430123230670262179701141510682002268139997507258321303561667949126100542012864532298006726890009482097075854102198848852954596019747306361328429698553852265238161308896659145091248868131259535362960576603197504295041188439397247053605789479862831714003968480764211909414275681202732454233195931119523950562906226110099643989483816464487458668307548577853287408199375727485219741371809429677774117222393641356033211909334407556787838113045199845148628980006084838694206218527192801877804248668080299512897034732944631709460038595125453386!
 8355796890584651723006704488896840610863040612135155203874213928449620222575465858208669864060498655425885908145530994843493842733842178645051398542739742909585700856146256183495270022814173253676539794691275297470131700638354159654463424496835263505948534474472107805610781082964942647881002597931877563923904329178532763420375229756575274340829508454794701524526089931388578312391175126922556675728851334043976962540393117493371399449529356801060379694459568597524987726734807907326761824523355212162149680234492925428865514573375655765945557092395334281424629031727815403998341556419837718018982112476085595551899950620730071403452081550332981497507024426772643603387375397314843137407092665449229520423199007345946393119965350568073329814865841109199443946272328453677112848473622460633136028591059635237193871634598696364439068540532231931524135469324875767304633817030294479835226020518149444585049612032690923375271623551335262343207219430093588150339359897449335269578745727831403!
 9670396910017073414932531022063263016925237018012024422688492909819555
117
19561208381550144858365716651026908664871732381901486099246991315460820019927050473056887614189329810831023526482810810248545022087572212834413437948499972792025835434172044259846932740914178214394928017997456598736982874282682674844212137154682327511285341652370316530704325828337211237137609695939937549536223222219746596193325290740424876025138195242697391017563719753430044796178250431153315067582562735343476252539142515275704787843767885241871966346241992700802576108392749762263654900186532064549951558029083985132726273219672847830253852219047927868938953878036869931884660310436335243732715469989881118644367011402842620261504738823589974728149334325706547463702245188728906125503027379190264039657741760689897698345664647052047163592144830709958430647172750763371802071459744565251418850503716377381890296968528440925819317441005557608985029232710160089825722381739454369852965476949018738404646564373071319590114076131742822038833136029708526145123490730714762453405024542376366!
 6685575740120604059886955630114415443141696986074032207886003132790553917869674163555240250767653085632242737847149746037784064609346812991871902892759763070159840887781745192690147691030030234979458511000180886606216286801110915116104098327308808995433755118718317378655877648735885449036687907416918253831330636233820582015488544982788382174243758054923815972964061963105821516709190326318730933813850113091332770930342511221097215505610491387050426219805260247611607505971037943664771529353491718612506611636738330499564878779365697911293195878277774060107533372432790009732407256070388800871137309659634457096041175089444791191621745516970964844762046174128154536128422601551301589525862806957063924443547802390516861338549861926656762276035823498556919224890690116459866096156795541549215758128354092025393170807378146507883203526651345707065536856992811242656708448017786461497404549211843122762184522441088471507570190883495022437569885049454241057266246094583209596257287203099477!
 6540107398558069966198019534500506514501054924018861089134173060759238
43946124656986160560909454177290736400939132195676836433329961999796542434802656940683698670617587413167650506027135882574433707216458819522613397054520523441280923173065051989954502858538352287378728698291727580782420982610606090150925211090898996438929786294301411140067628774992078172379474620916899838961894863077306027491026703883943352474243421236712177024610116024061118571687050824404916238943435047025081364915515510432725074794102473747819226520593355136255301812196424992488212992601774080103719884212547447216029695002774268507752175866917993801362584224173985607669916543275706123045286728070763189470589544061884213157138003398487408680941446184585423034495144852105399124893245548665930533558457827714423774338533920824127763216596753832665064306388069556915620262225946941429007998769834420914699989795683266709041413980686333251565256968787899225743279613964370265431446393337990008198575307978817613374360948392830223380327973203865364624249805511402246922647893159294491!
 8040382983649034888638697564414855608560537177228737148228236864278113657203947496906937239915610036828075141178473782562212775995916775814038532986888513655232313938431742258535628070191544007763016347647781261324380248421865669855274007641051190109545289838256348407045580809052214769722042873822020644511165580202158137220466347663335175617990500897780885600932081454176443903235241939731547218920920202474270405857913543792600976807636298756614782644338926121213456594456801042227616524183764018673453391488079001363603528432174780401683146726188067936493046865873646311483282698049202278762554540178509177497728294675692935451666098641948145836444789096038304582853698956080665666190360310045304720024226393881572068674690061929873082248490016816348921255433754447580388736158658859248597558742783859992954170991722511534025422229692234366177781929653313496747757220978430193818445059850750805649483189679220583434147890510257617490997582001234724410285079412318437601471421378295110!
 2187358993917081686805598813354699137945378313771141354919712434658109
31127833266217592227589369934770498435251921073517573702005457345130587313221438462087602775184053489371323766290711205526949053003888228042048082108519287610767728145489279440322723628412479431926441924307968137038294820058697420150132353198720519920353877314215882211485974318238790989199325393415037876899596958043272517776898661258893954420139171306418862951066526896062414520844803403474113314880043138647317158446815754836531670512601746640760728095967213272942245361042667928094697735836383498228114766916959695573277028279120997926086381701765421015111581109268328748595064626236299259249694378182229169234325485361604152514206369252147745980941988926814776443905376111917463026074170414492241949800170623866816946607989247516971850009428744446624100586380355863065063609572709797349307096488907606301907923346170197456656248712884986738267854626894512094622905482754233025173213282785316517586934054111845715104834632832008101152525413119367954561261216103197427832103879548253917!
 4314098770652570060376719683830478692910032674834420668406673515088586091662976572277996926003868273349641875833211808091686185171345911568508931494044819961072502337896779899188725826867053775743512465081379862813483506643132466270924523654698351740704265136988241433088355263194547542532484588409399378463186733813366103100581146455151877305014130815666018061132268352963971146240104983148464604395200616373542584698260521254538591505364620141659306152413774330372464410397598500156892102790937867860318517672404695991572340529003816760724247701697815214861519474627054614221125691272253815905020395830514685850036024200549094550268261850958754262109739913220950295489582891742329813431540692575705880157365453517892741527128941314318269476902588854786599196898835999043885422748469473118751974887712150191591908885813263769981215908089691823350590797148746133368039706350036955539422590734536933263896961623842541047946294837937463813246124082530690269146502151719655242567884712722975!
 2667920280384129661575021846811088693939925268794395032672870087581886
10493008597501969280952048237571389454388442416217566263735180336432774017341259427455820267544027881214092868804120300022706318082593186766481490447257994467045942382811148786117712471299402343531934763897789484462560417454780205295530815025429801570903923821472145748055026968444380960380164437261953004403990818426587487953263601747734396347413330292755818200084648860981832917078621243703459404281501604147705818564413222318877939216398896127369924002251605351282937236557373193193898341753843970830903585333085718369311365037008190565450432984220993814900454454004486182214055060528716831341426278964416953339802968795175366678475509672567390773471816933997590011898911139624652061607188564911926642694016069590616104437801498666998284332465257608825710108991959111180835030365079742812307093951984025480169446262059236363510719901481567744000123130725410256056015931684053281699733907071537208809013265415408408486946485133762274828499161274747053222550579183371978299802173759142434!
 4714866343808459910139255494465966742373011912156910484733069805081712972731380662922967849316570700310830556788979123298130375103174678340112081353091466073367511876218722324789683703827950123954449539675885373844664134720247001588520176131215481437213347926567224469179562586330030699458362891038126489523388807638438188092118073979276831412308688094691717655267197134112902715814675294427625213295015430115336903892213841013378832753935920209051942093938979412893807659530870273550773042219114300432566846240722890340217115127316890533946785187382278485158224704841277392682805651726037644584400682846673735448259249691621423903388931811701138913150192228541073818145229259218514857525247618384807758382986666755676288831008601526358935863571274217772895154458312934709800847178289672734129037076071597089783899342792625573818895631940507275208732599945654560858685535826313370849340641393491374917907721822853116009498270366792789235878843160849183895336236157657683342228959270239391!
 5386811958152996066452081886184389697200189356785489494221651236101718
473
76046060382961644273311730402586998521537216477536320660720612329293239624078004742806780812454299279509350514397602119291130378021703950829509906994439391195500340721574148017759229971932827163039713393800349267913341650891139464247966132094725089819572375049113312916698427371148958662864933613397030362471630128321007084152026276899630681896952666694405167511329378690500341200428417394295414458444754124677185087103019497637306464566186349406566159555902220388135713617682347784631098854748031416075183130544034281127035071959901420305881492321488412935694452964317031319035779377391901656912577178069851218011520363784718232894953444655146267846820263039666301990692261062324086257493667440265813971924801331606041280430940301178183953384569734777875549650522671989203980646508809876595990402683545829084048874359012102485707190569558518229964816324570157037483350716256177878402602480795436431427740975204629600770595232159378392656058476318316453946086912913902970752932457528311220!
 6316530779455997093588019101795478468222029813794967339008709934835236592521531747809149296359576803641645315741984082949704240390235340265922135259853080332431785857740605690039517496624783114615470747101524109270990190694605559239683056148077265373998499618880204526136957223089073682258369725346732930434907962315838626126344424086314103499740365508692160500462809793942595737077522421277559627928584177313693090364594363844939823392918548955367647356087898997197780703866209274631851985085192685262453825870249573805010993816323870820228564474021890350370205158682457112552023153087809016194370538717681644829394491186589768122858228286305889861029605283254438604524159887904370477377371368502135393822653949023421710889783710051749817597020686825702725971239990477731332089067421121200821839867778705656294246938200423781349130666302875875209256477327316746369664746257061200346715640903478963148186821345980612729682565455767498591972867379753810674217385801948693932923297854556100!
 7900054725330516708185495508295733164530389667280573878280582588338674
39567213201612236427190239990318506978094847298037705172000913056269672052843166496490463110313400903781521749243406714466245262478844479703267080920479660215253622977798413035291824916677547333861097577175208925700627095398419276724681021271464465163618290386785573635507001183672415428954047748343284348374756430452744506808442943288003263534813266047601721422694003496285639702572562837188280089547602386663065497470453498437664038598946458144805319509199259451498233613653904412316740712966326187042419884078656034688944098073565111719088416213133703832847527158014023337408746055090197337083604720090201650957663760378637218832003863900863187002521159432783932847926470562069061394036488309455202394372760011556448767844754083561603998488513772923034323530097939678336983009127779979497170462853141004353493338226748496581775235312719601590617282846213714010305334392027034513019491070344617456577179219132414373649693969048965732825756691327645310834456871594499005092022404757994214!
 8514139245457253260782716471305699581372348962272410151358146339359857391762405734462715784143189580687674488008034901047315958190724146417291159828969702593777767500673203833675999208981411198985757705456900880667351053470372132934890554554972053530105573246966105380660995007027547522626763831652725279154833145361939167195510302515194171781239124482761114532218866777176734174064523789930150371042110232238847769373142553479838888837413246016948494522990510710895587932162056322085156530074079505592494459743510349190441133791566366617724617723425057713516044266303431268508796541039734739274529051405512410302983625893362358342678655320477807539090909460140438067643829114783029646518215386189201400711494551862692991324737572992206115252478291665457569566383251147867252560975782740644380460707154246177387337680719306797191303107259747170951488737474695034915202425718743866194207982872883105710281579364027146345327984734941390242082297386601437354856090802957134692265331182640679!
 6525443498999697808629347038553615700103796998646180680289328572972529
01428290197040501117093960401799400772790730059574064535923916663881144597641874269200937829705225640556982994851451162539665867422363083935081487782114697145156264218397232451972563939261864816182977438532410643492525416862643522704313723804662598556860369392975077940069921092726870253264588061666922557296352244204858671812045093427166631890519262450149084600688052235094443465827402258290512950304979961401660772556448746146270978688973256721019292300982454765438008643740010975723666092413723186800774476268629452639172489702676745679273486954263296293307799383060695174258956537533033198251374669746258716171967671157859591293894641900519594231162554265589036040426117249989093064050953199964610719970516938281588424916149236396001113845325917165402764954766172956590312791649517360294213628187264592677678276896029664972247633742345885325543235731917632165397243501468576239165650433876800210156944358236086348457350102531746380709120581568187968385839451042367958767056686080265948!
 2952325594202921026887529115436922289471789836330628408977303931369921911471481628943832342429101443255465123776429921208276392973771594064139740520923053096407841631655435542402370608217818229921582821565401767669766120899144806005952990654376236361202630598895100772357556516592197145167836743551290845111362955595308758670837780019199618165568310045570228278919161302403618351641223162709045429397967412823508433094522021606266842689197180814965483076922146809272437721832739709295506752479298131156698823159331096989939122543447935774560661126904642965640740541928822647854797979744559229982135300293155312717617221863197089822353116106940684881575528948162082091816672481312890810462376990701322935328445008140894151893110987965407214618275748055858024353816151391877200444585065798479202545694411477966399229790532027713023499786440344218249616320189181180432647831115159468111481647264547761763497871308668875695297626030316668412146343026244079468697828598741839503171394290013559!
 0877225577053738582054889531696018068632325879151070588932716859422071
56076389078597607765508430373190771766931455239135186223631142711608544580408475000247998758230058708826549146220787267268063637453759806741647944848149738923875472845934387527928676644327256479556156983137246251045428885007334895130250436750092419290343543601085669208294261850388397292138035920978526334813384995927253013258210860871562799411912242653301351854683014758836172716488218149835028778855753965978890610683222861861952982764025772256605724744655934032528658160143865185373616114163075572970379994466511411405407942714753778111142551339728349611528753303886443281608116519009719605585040319934565279822223428072991817130543227748759230282529480265505717408619925237062968149812420426377685988195395996847506801203170391350760070019492084836887963851424058353860689680377544207064271651941908844817749095380525810448247391349962282964378356130937457114761509358959457926535184445824407348448910093955756022910560624484561256004382122790034279070393187107523808563892113640393583!
 5401058207371156598072563030772823585173136193707794908570998474013366850020841298191122359596968222596454588321433935711948347789268345889740076030693945402135727476634284866657596679093779764676816301584881677064603897065832759236308140929955039458378138514377201135323628926420377834841213595082140727120895337331687881000034208405761803890377556602679235794264582504634285826405824664704136419947470546611833543879107633145242000537808999550347417398247970896323065778806615087882093271595756544842616883205894028796721171980537283624065611890799913802883209434331124691268141432182067023539066525496563617615132401567956891035488079558258253280000374072431650591530590694165524402644222655346570827097143842841856265032262749319629589024754165345761282409353540627014400709114820954833364938657662856625027302154425979845382948191301499938168390326408029823488774147168249587848181800555206691015613702532736823984640258918801203376500920647729115868497705912814253936463325614938138!
 0988193472958921912237302958434157505102177387600274257006713072132715
585
02718326316567322974165569938789693238288866660475346398736332850561625487738543568830057262497407546851550544779206649515963229258022932661722962213907725474952264621797546086820993904542065712223201937656293829780886180306195284931320849673872332603947486973079385678500759409394786742549882024204154706671982406807377080366075125464173710459356950619561033855527322098109391227546654430715285653966082482186099201307482570769885348946915431971656972247661616176670651988734448966245862862515222538429015608740899543421769517541033533634037347503819645696162086050486414145849222445318556939210460917094993512309706812433674499298196274387393132097040166953757317336392406620673366066435460951047803390531981705875771238273780252473499031335004611778877727476072034257314815970711634540909184231751982744277637794025829492137246161424412299249358946143400880938914467003203465218983727289742397437971531983072961242850269656158846639448405567776686058195053148337097686851718630667649597!
 8906788870683150525108802156270017004232925652577553571474880717033038406465942131322256028818375188180027781993016740998644106271998252745569596806164230149058371294203283526086813465820686611208819994256087192395986575599068847944798957284718971157601126635233211871997466584003580218134043653557895102240963230644670362396496910274014153840261860400252104070107826599150449718939463765389742339594447809412596446793881059540177061710349317906010285848179428692776802516063469818648761586233701525160236371817879990343795955115086514540258797264232005725044441943317120137468254190708531072152085126939846628017711102642445638079158824956674349287553422153367398007018414596890640693638164153469373358041348621682362812485519628207372517116447100484339267712904709544982177124599735379498959250181926670099192319815139687203924078131733288227406183489936891596258827794341812597822374682335655696616170703773942455538602130433493640075319533984910869963335613308498200462205237942126112!
 7386469773435298406141202933574769854283798507314230296086006458390203
26683297106647485928028070622289411984685237118462881782523378018175736273865633857652511458976914251738657976813345533125961089216796759921620047777736601739698157005189305563209347680575208239247093075056486535401470969258633244753524002357951420808860993523690497927164952973307312176270227758280584330992778199380439217268111765936516774634858681152391360381723993804361913708704178324583687073268792759151242132793069249368067256716409379581154374100844743180798479818456229533783159209437058598793067431495842128091771469371599883933836596763332855084521448717349872982802287224597211100337067885195708636469326747159061232018112861922070378166898254061531830765384398395669071980485139529940333118652808812321707773513270097093437728645069055248320188640544591213111790441279949017804606511934621383518200791941711869477902086478775088118722447763439728760053349119723576540686820193680867718864154368080099068512360463269609940850990396948362171570718698156808599431927550783617631!
 0635228624435829757772397161712443900078527257874425455388265166580154504944151640169244989042683457345626173402057140117938253155396691786508532861602277977618284482128672946293714911091163510449320107800723707449634925691218904931357361767273707579489881987081480329456080270142457402799289156950749771877632590121855832116833245638324635426413663047442069533906874618048742695730825289285497755704465530725372653544909165505854490500908073608133007772880591762113407812702207157721799184691999647647655001009776601727964696655224452669933769931290031683521179052832728749544751298134025062913810954966857283877952905044288966151554228237601744913735138627397538983742878364570857778791777228294183786250926281394514140283818107124993708570349600679768563369686476720810794013433268992292032107971528543223093687838982497846997755897775841621288966611830971893956180558988873478822385862983606148281970638853766387023699719056887914200150058932781576679554126561532407775118370166626802!
 3336345078784136697950895864028584925040484933796171180328045570796932
17083088711762591995943564413971495282622098711793930564122549381874381430808472755308389172693462948996786375493611546243336309926769946870192230881483903481460666095445247038837612083165142010076318337589349399962008248009986046283062432490492757335719180582605324935512741107358603022530576982049946002145986397578505832139101615820893810253664043283856221560504818745659654507487713704550258145886878709415841423636958253905004410260672794345106150247722806223509663315736125142667943414074665206353454658392226114632355783939937097026201916221347388562453983020165547146208476297265257464268723386362315313553556816636051903571895244664237586619804114480252199013025958934999070183464431270680599004325613871121045068905575067907676256305038426262251372906522565494265482732134998484160539500471824985656018473144907426919645745265811357026510716238773346883372589977864367259174115570165529248420631521873791595246448319525159806339460374218673502419803903429172882058569352678665815!
 8201195876069825239649292348914679443084786574974508366962329607901893079624458748437251749229859571678125574842331673035806137323872079009336336925742457891953867586676113412582471603070894316874964912571672763444303055435879439672798391605502135148333240544829591240121878313403045929441621292750499845016709464849534409152471837782557600293979425014893421463386758834589638702611272977948184530344423147131244078498214846735862732653628625501039736030179463212553543423298346504287829926979525076211766041627496983635949960324349579121030004621920146211722288584413301742909151997456174122142548151012748826300946974835123007217022380251636265424573166829154744421810027776127607297892368258611620666702210658425698166382179841203878410264487735566199629191877992434897623591813120793421262858085245471431809776763721364584043359927672555158766872926818986466457737181567137271273270691744607683702302787924243821403830439878125470062137965560074412906471083531304202892912152146345225!
 6753566839681362781899954496762854591729513324623126862712073070316867
40866015957099166315864652238874562344964515990749792099459034313921494067984830272254572430514353045490785504685756559850314186308483486501057512449287567182899127645724607259255296433846454729452076411844381790283425846409298456812175616938935965975740429295571529150768297078020239789169692521995691674357951072811013584487803476120458651798666327827480150636490227523192057452153557288024819586565693666305469970629511442206125550456869148032744860281726828102742488640261601893418136540881702751903632798220382703820898351245577903536165344698442851334548386435254810831284998328941817291612083907139068486878921381010367965044352512042221465614364722014989420021438344201240970146623634385827269296108625255251189212907148360456679559516865330531054510197832165741762682855934691871492472425479123271529093087674353283875056316259536391996859258022570941304541646785723973762668711162282093474137383953097453856228395401248478081748766221827151570135695466014514527686148821945134110!
 5980195908637689785102904745476657438215181134510250246512821307882573115182513573208273422069550416205631424449297757854181047996194442936394669739813593669111845157777992643506435444778907866885667636555675101330203920641099446748697238001890185771237393338518911517615291790335703578359795955444897859498954246647154327706708272651894378379480640334221433772404786786940630662072056502773700258523743934557949437175759482223948482130909053923116986640964837350683077249445046879290633705387963710117044090375203852640296257030044175089847800778547400690983159410928873587189533947358288473512024777514415286414333015237602025716546639313515169580288664731538340423443705796376486698042917498972943309837151215686192965419767908754359006588519119491014260755969465368844561880990145071492835593653328658780734465634881032988679671646781357384388603935675481267316383463260815222677433610342562799044580710243729086055639419844097513553481936898944385856295365499862588604857134920887479!
 5326091097703034650129404022860283613342235054786831175310480437887068
288
28150004082704666900724460766081328348616471638169678446051551761653711887635152359278589755531581273539168302801968872202551866090543478414559163466458713173467524042320513784665145484852108274337280013486724506825679412532619761659887652396688873925240799849352814127096654205069769479109091969184310175731322507064339087907860867329003063983535165159800074053082689602417037023267069764470297602604698157613952922096431184121990812443297453496971403552504286138984205987355762655435347212310996418075573943049847583589778675340827775255945346907202949290138613691171938131736016464766254974355119237231903375664039955424477839442983518287742464123279166224872611661531195565153183793037448307105649190863769246430392533328182321026516298438247988940816153152609817835820542047575742391907906610890617263336352753588367285253235669995686270183081216740528018000255368992933693867881167440777299165427880446784135620093629755456915180767133129637553148165799090729310413796284759941779072!
 4890998839946581298870509883672688417262456006546811448063717429508458798293125338228957064263555895195747921004748780099067471349081771165970278740048485584618443621880455975536139781877110016001209738065852060227467398432198019506909533162304589829176162586011360218289353059467362871285557042048740358073801752241601053644920727003135873627446547077793526648446408067183202372794201434472347416804982143532190661854299254690278390239469367565855047152011417500088637443752809863355356663053144742780108559946161239902956286531638308517479794311770261662110750667259113679565731261079068742527132102089342043068644265621908898010268788167758633391987936068177968001520738645811186433222300276066097923728491881652219262768209018854780389443560320424330725687346061737023245268043661758961997444611691103048605905531997056360086339357467682549327302610292972652219997013784745668336927819603268412053872503967733874100943023310659498597575628944088749450232447104514115759283854319043656!
 0997944177869456505908673727940501810358913300780225183670471294785839
32589452033737115409652517261432458213651094928649637279067566775702907881082452198737279403819995024928527363407436172234914601313374188261577753944998175824449373817062049505167229424285374716677617880644347567422409659208038034162784725694268290229252125238485853373479136715924694997360835010090841599916137804841580776617930919159471885690996102325600636796509775882954357381862985180328592847704137243664895146145050192069446910055451753162806533052264007677708933108986747592363114249211964737983859542557785447923057506806386126902090132506307939519222133860918595065125949662111567524770317261323632703634237172046692361752729643717179484510462385604258222738205746694163997921781159413559646469298483067092014257797423800935295307642131187963032500338498464286036340724983128555939809627486824431957818590388875500902591367550437589147202605836213776664200909010705930533871909593483383302999128166144933023488324286278094503744594199622771925912129739618715920208473155346980822!
 9179455741106929562277074646829225064076988440475901917347741466498926352361347170216506656059047328036496824398368514816737296969861572310728805030865542054653459983217996813769385218793864713741529934848299188089577576066975496074257348997204999445924747765506558813098857791532212534825426618429008335815330042553324053214212483604361281922172957838444800154600298950501182389646309785607091078801026493793765650947187932258338844608895546152946266400196083891130912856890749524410992955918508708629877492462935098430541631892065189010221083687385076860449558367008844971994147118076441320231950290439872981974058817957555924943246941547994050095786346491078935958277278660074156011277589271569746691856720880461585956897392923464608651825973480987627803273578312282423971491807934995218964891498748911954466018464859793933432798169521734810473007464831253068075519706380791066795589876645300045068524334584450141943807605732159724289332940953577690289281327309503733441374448424049652!
 6726491230745760280033902974672600719069651789305684608570486241921921
89552950120649938297904522189071154499699379144340897775117026140825840144415357391257526878211204779567643328875396972624473187903295250147526864259374561435487996402355502556241286564188871149563905477942768587250411279911978525278635555326054907754163728187879421667567485785614162304336382407650378801560198809577238048798808776868188531550715521356754582486210745365289042299172215641243296548596040476034010896079300019701881603401870668767349301168067625375834101944939599597517992945290138196724876429435303494038404548902069081145170358019381915900539925385499042811644320959810429725600989398297814280181586790336160128834089182426560769657275476319967224533077566356514988924033280178529096715912155922079660592005166471511308401574719857331559508149313274438609677728968456286694798136503135660944529386858762164723841947266752648279780364616646165460093843200963866510587938358408749636141970634373244074406175963950405430230842045311689261869054774551230814292867131454787249!
 3672262714019480580720895607295402660357300016591846228694429707353592797791351415457236366805613510337359416057986935094459307645925364350129491834074656822106802432954472119886042088970448772597852229355144143595866617108405761912964802496895729633619081064734292915801249233415950727908608747347297779283102211703600785545769509313647869059130192897508136820693747662440979739060858195703694795621733909224235687871954488870765540417538648949470012505326595490659115857931270481659345687647710613834516572863565673081448107224136252029771512301152163664361755541537773135312607367384511610608415135837496499914467183123847817266127832291011902305693426788974768845305927887905349031050776142554299629387548417519639979120671487710566996732225389139322340156445850150383589716631779696503376087263341625665152168570773753040224794403987545693099761184759503630211288883923449592670037904222571028065129805454695532114953758276649718670663197079169226050790892188740761776634726929343000!
 0285444517296016471890156412069943099861693668518983340105486629594899
46569035360554157029370869503683225813239174001133578912283864381866214276391120167628509170158013239407971658678751993359226067740973101511742268902396322001301650111700896408566091596419960202060399859516759933616460872516105373830608301385470114691786335380234107417724977129694982389334746097814666330889062394193197079768488622039448966521855308553719676675096359880517797472617930326912831826748620578092652565290342801908827059014054663747001383302588936160171501548886893591056944044972172021139245648474988858366001193030933405042481909480846789876003827669218171908676966018297820355992071897780429236183663066794572605188960538234728759328230119515865551801782831335658309861373165259350308058239625590828657292138654721957793122433591473237524037869082536021646294813204884573987051367246382465059987311460376225349778221030101454298751138224482136735267372107046667779742422508385846488729490960052186147747715199660246552260696212706208541687872395159978268612079223288649559!
 9471294392000996760846261445296688181911180944889919558814713799314815293295825160760107116624951556593720289303451396577612021582500179271658211474939898252164131398331629215911678786311490350370804672911346756645736776031670447118722869777749372049841155253422836893646994865992816389029333329596705023331063186454715946198921174696044074793011211416649749227696638793413605543628013565218859169191601265017034734921985779121559965545078845902800241979283614688616696872940673265794485514121029331647678050432030238929162094969940946268112688477619419298887283020453254835559564561049750752610524425580938627342063589277682844228129581464734736707362255972829437263774877683992863763234539366344505846403222027497341502487576599102151954483914148945282238326814839805199707655926889831544715769511831555106187300676856804057123078324335686278130316986843408552081541485255677208828951940358785837202454478168634608411970360599469204205022389505099905474622524732812866755075605926657023!
 8196798544369738430363475513530101422313185966598355017290912266356068
396
27244308404652362865284232381423499086766091580811529985673188270001310938215761913296593145799781199823426305914119833894125626021521474556185978394081691455551300017513102083825563173616215459035129106180015379921299481140928264215227003187999595833637241432647124378051975244525862986609139765363120503485519687014261642737394425538704104093401178690284831732444669643839274132175880980004949886150245568393213699722603951315999095278370145480127595279256570668760339430121291197850593657439413065417846820219003381050360714952969682719340824995408242161639655390093100714463887620313491340775627556205877748079843945811949518820071320525940334421340012436887461101510266689010672516105842324526485513982392400435721956683073657863463628471394771876051423987077753537119885446765729346358469884781033914667847854708731515042908742459239461326108929195037101182549231842072104379420062672244936264350959550337583817195105443116873279605675329829161312575435682524564650081228052263681461!
 1597532119917066036435974480828856219322673936865606254293822490061995607753330652464844307273487208879767292696814797485326374608211517122721743446121372624336324011843291889863711234758307389741059168181881668955953718239958310915895586515510793911051537159282391972723851893459502417779055151515726497570872428767944097314530204095907691738750096132648370745595341535133134490003875280310133785644191147423502245236200886553420535485956209777634859173787806212255440225925273848307765179996373823009096197593801747525783079615632336266463730838957384671116709275064415747632824210968186670214207763268375526077611108988944964673277534390149108961636184144351402764581222896050603815546531573231035915735922758911349256900935607147977688700731954102283427174875749070918716304762388723409696302534078247465097250027224145260335082791705095244089375733331231982030215416350786778265509321713781712313716114212318124408063309815360743763950265425574723877774795160370760254863489482815303!
 3520219413464669637514327152808029100281629344182641082759195249518173
69371136515145376975746303550396881557703938983487154988401323876915333088608396152038792659834262724317749276862696354131068465624484349311650896687484469347103405348229548440424944548029015008712091167917658606527872481257977534747880316689003510874585681745497070497359957113398345543688948216100537152614530056399124244539962580313280228578155567533705179614335935483126071990025851110866754290799917035370060643683886576034328421346749363284798134599509524459413666885886365358016564396724558897521380576361590214842158335086871769121384576004437560818745484730537879160685430938408101949720610599381353773087430936080254374618360436914874112722209890114767287794789539517337789411265620467480077129380534584076556161636714032813645067389621785209078922246439167986043804019848760595357572978480805364654179647434163208018815226299727917536184190105725391023526100666128579386128482872115114433121748164404005618360186728632793253969282324260140007259899509705126468119851380702881169!
 2974703651388278161801811431468727933233145431510250480273769735906929697188889345453153536951518987596889246757887794347506970959483891870919998567821390784326370316579878408076134700595423153306313562919723476311123701263743716988364569939180204023601706548474104482716849915119737619157080068754318896722949153519195619312478770104883649003430712202169327164487378907486971688905566978934955748268599453881593423799010669245538086603569309347485162719970008372666259460916369119186683408760398160534571873044883787844599456410661946492827902987144851382966227706977101867972627483623450552498684334621758253519948935838926400082160425785815010148688691944139135668696883144598621199233497225849337410553246237223178411540422579197837762605724976861180888568657979800450074365599616849105084972307353455998115616755131668419573344751329229644291365157996632553834794507661032896848698762817246534181038300169434521758808549607478490075673039704749799412435126184213715027756166827369026!
 1688150889213493507321826932280660518231576305416072303671389874837793
34050158419807105831531091345171439567188012503059886950631165440619618064708073612376753683950228243987528605105113518141919737956946936386812745316528106350383468283573844055142293480079936682108044936068621646006766344830319224958931559540458169497241368057496365679330791963671525698071861874731197459621434447874538755676792302136148597286303389418237450498917697400714288423976680628317290119085740325033854522235403375989440089793296037412054603543841820076325880936286978935955808509497565067995350334583706800572396726813294621407540131282863688230745377375496644876706623705867452856052628768437103120859783070774298894233319665993370672470968952524985445820981439492120793934365568025694559226089370437968088305921735499028081872394235008316672586298989188652170704858091843945174164560090225973841145776221030576886909260019619975636498357231553711648007804190340734995830844145512294281776021521049358131823966276787157371499828414080368819714227388302087450157398585239725106!
 6895699623496283549272734508268912027147525704270506111845946471828532054542723345159408698624119906327074618266795601170127525835086473884920460278571285023478467533903131878629664955207064550768958438391867679066785694775621300377608024518082734525214320551606331504036994154860613067595336597168002359216089478140468185331471060954683369162184806558707134105519361745103710159921613619950970865013778053389759398836693787395482278968333613816287002510939802307692164016669599177393122483908264479128099857806405324340913718621885323049102890113716108308680874867238115859742181565370929674465518492928750040651580719202828052992244416273543223825649525174246715774826896121618525639989365694450558351032818566413199762669743911116778094871793696573690376143192238347665546373088851777088449683238058186610490890214787876907311571261412345364963900842699447080255146246808750232039897736546071330432841705373441390389323484250318168830269138738845884794203557989165117728792068933863168!
 2700432147008424675785294166046964037538411912376432743868418340633769
08656334246919941284466004865121778043276898551840227751809879011069676458190953231321128789090149768694698126335988541954556717571267667883715576312670276152597776992561643721030108499313035437189899247009395752824298729692241071111800967264157307261862392713715782806114143002017111426482584889272072257212203277130099829499920651648922455188366142159595891282375248360621720444959024857568099691558623443816516714631633100487392293226221943195365465767781209844862542039608301127767452831340676229436884135422093949607182598326001355753099690969163734966559745037380554178792938203007569843076695439031187270674422084002598679309241436629052273054873320374993181703899256416167449649356926652153481507710571777303188284522175363855090902876005207644455852172346692659704934706045532756296067906066323102672442059559496173835522058814667667226152539099092237347001406561397500633569448750968771520848323518979421232259292010069507200894275409808572680945059064154821843092352059880849315!
 6199837134863086316081775309934313568261193911313197553117878918315599227750248461596706646640528488092119285325699549573270133662891020185295971510209873181846394428005269519090433002235567601977870530906642648447231165417685422211916748623508214055524163362856193729156026563037485196337983124937125125846685449441793989395036130563585381465349742945202428280473039319639196656867950978121194503715184948395534618570760753296976206042126445050572723736239756574400005188506438255472818396964755953980263000973297590967668112501920350862913964308563802687805424226912067084666956677938084288797590663333851918316580733312886410779699802773881216321646181972297993823279225034392320715570655636931529218829355461902365071690769166585341141620278688145206333435182444586927795980466279701274348819999836714161593004038549093477123216230853924966881367722657236650480074286645066723197281356544204314442205442795569289248165106790636054314227622982051060394683907359874274419025274298058005!
 7378424677214050758689327578238964933029539316754365582636829334227866
799
69086201880895596168898194833665683085048883617646031216687630865949198367526097189379850864296154278013157388422626909720754930123834769332599468506448850358448438659834930060179435497954684711880581531834838854670090003623901656750909851974382608917629705175162644632104682240045354860639954363499876179329543924509327532211671851255361710720256583335435269680085114896326771841394897101579682237123237779981704531349779534409755378224041468783103118732043028771398412667428430830099637565151994256408235324995905280936608017708154802977468046987301844281722489133366907642573498314953015491797186038684886416413668203152784150730160382876090478550704679705102972376240049732679654044375743461492630923299395310213857334039465464313803932847546016682894570398520289897056199050058566331681025424796122497994161923808081718695617683355593082034329171118611940661424593023416858928325402281122375144878383804375333860052459837715219808574847409115965605101261021357390877587448522307072786!
 7510269340595258400443876916608889983769297115767546444686686822582163159384153340218454302004455678786165353877900684796481611546147742567664346667861657143213956058051068524929302034863111876979067573730613086580498053996249830885162974483234209187093248655663168599888218076342633618038033093708068565521163083570426598784939627742574272212686526087553770343242797213162471865621815021272100153381435276404467438408179213985247176560645327166630534436065878850200216200832224339754743884656908084822976109598909361512918143246941901775429720168260292606936286775939441303998070048562472270746163817080272609324491040716169431127216932459613466992507264935833273692236372077527056795318598698939329745192340658032028977873471602317472274608055716294488616376900498802876817834462006220327101913512335770364900808455544255768267109148155967365538582594382219513580156377119716793670206222456863485469059877803465897456584478524088192688309227770546049463556158414097453554239477673427530!
 5008393605426533858342924088679140936814423285879009223052915279991590
50090651924744141709100477084998890303385633941944104864392190202256628773984626697129628687375722161881712782123563349047154994707588680405946324980613245053389545238627255245644008130368634687268413792193795785077498902782431583827323503310967089933015706641952401640480259861958294666114657087896993126661948681911951688997857138260889720165022115150000459167591831413795284292401626307590692810259150476906872272115545836998472442221101278300842149489854275989287579626814082842462027344811563776158858566660628707597984538985888539735915067846667744073558896211764902638877304631228815008241486403525126070075059042685515458730819944836142517500969198812147177694290558463647557815938880662395420189374908403227510206348923283093410282378940889895317257072781466983925467615050901133856273474822826535359010089528178689238513054833708012163757061868763785954802148810067207114027051724468180760760129942225757837851526237298044375489744603759100293991487767534772424112309983814691187!
 9572544474496042009487586321049675622617109806570375457977845287555067068133301194037028368463183005066807530624706475224361857438269778398335421299357934225135203492355031032263242244961884867197753558031652147106199584104062211908359669078979633808121363989284373107431582309352969442335189333013437082432643853278990826149765002466223360134797174646420807983695465133294537755766227252446205078516996720198999934010133350720758077104038265583648170001882520487386269472797768681984124497130143674446177383603784505886773104155213802955114829413819681116530162355989101477594807594117715701165086921854114710049853076615445032636243434205052785612868371178869862422845371122780475373192140489569910861835758095498384445660130847465276512015225164046008638825408921010246158353618988556156795455594341539377450291006612155870640166529816814549150487091045363602336962679007420452451078747671110858160388335049073019845459657543115162722501328826413273272004586475040035975388411508587123!
 6676733053671651766723592347410822055662073897145896736124428601318448
09900996619418551265914031244826821505050968211722386212311526523007131658654273609247852137350152630873645042097086869752775065195387346837523167170317938647078333812547030567421606759571812448172415490067795539503394974344065110140266883233981384072995257794268605098038571003884722484823787587024923392172716067232378375966828065587790533662110909733434199797844334852653243507225336039871946098706430167889540908433831832738009554905680850927913218961619966362620096226963711045923058598579332139457181218497046923974684711940903162865482672781602334664124586755315372206986570758884561592003927637676159553914381141064107128036641827384857021316647667552407500949113768318919687594594576779755050543591395884768627920441607389943866059704875573603207618939929078473257012189386351243450402561115311061598160410629347212590338103396221076910135920641844272757256362449921884192969284504886557168081476678966093634642719375556300958026571667406069670450700559764523975309356692672134756!
 5632231052170979726788201175673384420258585856309958277223767012426195014021412415170170625748239199375731539805651844747814978850715687141423536244332730212268108547082779756822570093257014058836963664043602801865735583944918479033626350155432400879444552885841494511564094270922406588405815702746990628262912354038024579975749327018239144762628671972800674151064615784260870892100884337577739685600881081369285756508018435930996339224874822734697948078406477677577435081064813113854120266818014621696063486386935182283330213466133693279168595030799246911478332513082076691015178579716958660185792729967194005523669049880576522883405403829572329495666610618163109789226399407301157002457628374773576308183798161638119079736031587212198313819620344976981620642398507522832773373258332437288216059788610987355191377855881403729865083817511632667454759408345296967092628169980844889010443639929417133550491721853044413612755372740438019661670623338297380240490629825860951393502749589875052!
 8072067318378647302489130579054815627366934203153365934803545221237593
23198928884374803732410786208605622462175566914066496560325627015246939470098514711600994089128351947568274832967227217668299349444534067907365525417174886583901039319287413336870559291380027727314775486977554119840138896045288554164615529596730625328830411855501188829841586911577081853736377506071335054326871353825913285097958561423027436039576496067859801089379556543087594553873213235007603007730107917896408379918870861963208679051158891374126204838541157848822039592359433270452459141147350780545504033581903384706481014248689197256381168631933216497629814849539646083874849543969458515257951809116266545236733517450163608333529739655892210921156911978316729184425792575755004030749046664227090664322428513245440807605030997258302179025792182169082377943883480865654516580322492664139624733960511524759583935636607443829936677311897124381434507144263490668336746267965144875760421649004657804566810897623735246630448651394648231966040726712639274053714806002028814119479141742109645!
 0631305594241005639877803076831545495507157300582014792515959046024661151783936785601612532406275242043711925061379648508919819095877705809924908420856001038860239431557064092622965854619405990986964765074089090371020410737732283300019434413131898982911460768793479475637926076608714832586479309319426065037650312207896059737211942645807433393229464562171529928698775723744217452435105937015224486976130482977756125599017514547595430957297867274007217741044287624195270575130818896669903902513418046187913963917519996106880395794578140869943557929398861400711417249894605120231528627326923240980270344039357213519034584028877988233814226609893318496674788926698874274514772695849546580773589496632043196842272939054023420699365934655175946440193569680887573651356552737827558456003178125785472579739016890446296702126248612178766264775483706533502859187059393901778046471759424323624082047979583793498520455967990254051594049454774417608395779736867376905855647918279488713678562976470361!
 9719277273687581742206193421215839221471693970525072478316583686909212
066
06029778144229145154061195058652651412881871106491879697943160479965128847403654083999670832363146792721324493626985707407047130584348263293188454405105866194037558732502573156652753929021523622074153014465759307227508883267063705821488431961565310418901791255484578746340538187505614044231461197845130970565453691268255794448780425882950076968232189862623811110723687449921424691504040400313321866823059154359549671890135590314696913736224077614431031226486037647919392677174935407534162571025588711228300980455394033370487328235883976509095216726564747258020548090639892790959497565422906184606794762581291478097037557429248089816541744855096727088920335142693606922157665634684417142514188413007346342117709133884972815682697556483084091332633671724772500819038332573981873743660364293416815416085287464587255653507621150730885068803456968232915354060692724241361263834962430252227348220766743282446251953438168663298333351231892641537539026898020923069024691880866165342597137031996465!
 6365517841852252077400377550133609358614163704490921998912980817235962029538477316594515932545751276218265882696502308327487795212641617601548390384586984583193711720936819908328893259160168315237898417509554214565735424477030798689073885423655119403552999768615121850369118581180619655257629645824743954946388495230522939043192083470040859590624775869267390038385675195963571883814773408191367110130507853555897601972413186887351769388896092097081199608639323761143676107035675675195450985667726092830783033338494789630261029049827785167734965663017924045814188890168611037149218707553685442128423002943618462997844709902389209087028258677599793290024068740412895878180015512623850669835207610152581029222069185058987978076103175274405860231492711148538125250221206590865901782025878010422474264403050814934008893553699421554124279402428833016355600845480611425197360007946836767439289136803754522585250356433749230406118813478986495017912039521392725893518850322747972830455537783064856!
 3922152548181723320806672527665964316205418059448070937337627385191779
31869947302459081165317084647784897935244335720380614698700923270065387351237811893555880738276143138710477321330658524292176952009865221558322707624047867472018538357834377022350425081424571284375657147968931036341808937329972201918567752838733601339441772638156220284901596044742284106914681577796601935784853607566769164334614029548215017627807940265327540169883435434195316982597257270323767232710438850214575511607810784903672734137568505475128333182816818068792348394235790283046532570909969893392931956859422151042753161377858913302623839957249246256520923809821631002200993851783878629128475464749973808460988491571783874044619813744839068734059128423831399226835506173095377600773344155197113447780113636712930495399900198370576056147210774583344123575225879819732015437084932129176882040450744949109305178697056711770114196561695487469569955457946649024598805818205226782805544006305517162010917064549665772809123128273037117934488881927575250994256805720457156003088351254835453!
 1821670031202098881756656024815643339856121033521803122203872454617649277197607561639899925558844824712539754441995752875533816075238289074957943408478409819050499547223491767808998973555428169119866029105054819004663413715557369930816878792785736669646282662826784498376781127049916168005880869983507642972740292518890639492218318736923256039915873045117744833426791251685385329353340557406954661639399223125662373328913082446605159607568186413772904955157885328899061541234378136169948046390831109473541619189442527956102391550363062024648582096751952056686309608898274241602664868431018535792010934148995913294012970080979209338728524506836770635227193756121070552995770056852165473956309340145995070906849439995261099503701149114858356584035694439244018137587295066820507129554209918508765071118127238305255094270970180836733246047964391637119624816712878168808667228632754357219976027958550212499604293420723785566103352134288354032472088407536227477076722657032216145985308480701432!
 7113323279558962703353311330191389309874263357207481014426060412219499
87395209820431409400117396015001163746493739333742500935967983549598081681749426411617589002974453790246451001157325681153660550492182290718208490667306837347413540876864688036281053463660636396370508400603225944423680684070109041479140807437243253754204529454923205488540944727773308677289572844835199306240623336014894657010295372769319239800791374246128988062094042510718216870035418271782469358852896936838712339508180711265203231606942139435044164221180458659728470198747058770491745236140621664718268422765043098722130253292080624410135651901924297683194184224795323048872227619999813059343435409634087341494009836113799290104049021651980016965345105093201186528895001349855481579764869199753554001996239218303715570495661114074906989061468803162745650430929296856492049391426632560049095467246245060386702779065977825588642987245795155182788954929379136186433549495607479606299394332898956071018500741297402790275983298534453665473738254430506492187558490547253663137453707765892998!
 8754531817075803390144697612612080121923648496013191453758738420887032773631045444103175204216817020249242468543393848183239720117336727143759140357324974219076628395187262094877364228903555507099568064481385391213949440769981765712217675877697741374769300803853092414702592673097243425147389794333082207091984442963493682734555999275654308492145005895949858388972194908048002110310107746945750302798672045602966829024330049019586565615233850660108608524705125925107236890391442604480419106885691711560554676557754131337846734357281913557921521252441634267287935145798726236068476879424492454329593759322568038241243080404415170323303546805930255459808401814193883913099131378039516586688564053442504597686306846470385293042281253712888124063837191968251315506404586582122027033445251500245556971852044942712661755709779076522016314099243456249658234632741999669659190963031507721622959737941330449069123546628999767870639644275439705307201015678667651462562096649852069770710283319925355!
 2221017907154255491066890989015714352252320882493548326405825443322899
33881814332460776202119276353556055401812466401180644907486567924930457530305406358998581036430506691788360446337600725210593072101922922418953223829158909341282287505109801463162395736714345765411805422274015650441113110505863376808693783303841959694538613373289247160253222936973132249379972928005992675567247975790953496341417002038663419614534418285905495280534099977630879343399759789105686041339012606507861256082320438045454486313325106637239101332430231854665265092939118054325741690275954071908417628867735299986425460585144807032455850880023749219853889982576356904694020369388274466818401399841773978038022542914925919574927731783795745010729161896999328831375419807672649180013064389905496374484069145828464261242049616787491900287079969791885341262481087950554207435264417947194040344796510910272448179190320555977587738427273813105814360328119623482496877066808719029887234172895279364187064069484639801089564315352334229003147981016684313694791961472060973085801361507055166!
 5133391443324485869469012049247732557182305818857471699146360318779330138475975986112096170716267577315729761334685704814097969154860012512420602987885535337647846511231292899852004061054006583425034516346856303094050978983625277393412354469101293626170198997139567103939774531009630549010544836570216719918722034635756363824411161709378889385493935561250090479363717154224080610343811886033057556124867332684560694175279344094970259977435014670199502710791447832109784571556218883274107109765306341681297933459346742756707244134694314516216704733767358268531719605428171285887083015931604884149219032436305805033072196601828090094043271791799057699323544388105032406749186069157840628987344737670923422578224494543482808126567717321258040238692893611255653082045065306634056149010369686585620638108841621125072437468721892420926302653347648510064882401875311077523879905191475130170115551259365095027766386560475993267772695534780632704930394893489795980911778925653744326543937422785062!
 7165326171004913012764765858878130048084071184414269029062542006789764
961
69966203724074999018383924962308016797133423606997570874906266593733463493311747238915673444128676776285007328674289347429843541691406948981446418541344524728510222660007961380960752701040772759689266151674443660665791711951892709120693115700607846131048600959027972951465467723383197530039299820230677508614793783103409232516679305885809444971780201240607532058426904533209973279358065620778914455124440482552693035330351335901481444516470171740967805413422095299180906029126071568339276616892674456115532092800093355234193476248116875078333750521448641230046935912724551684094934356435920208400866397288745264476416812224319790057403767520411314593569082948636502886651386671870984019126520871938214610496291771605611241326229847291819735019232646934760673591792047346019502146850204222725499060500390527173983088239346961329546058235596168859614438551773255682572004086406671572614287421586562936534666765030539943726433777117552486333465468661747102947425707471145240840693574593305810!
 6647910587257708703941215958349720801434732021667320029592177831146547941567632358090159344983934360311394701960236806436471015526548330332290324948488740174871625554178432345983583131736856741194821648828321983039293782089006668641656356329990025891242536746598742757842445313505681163336650379813616103342876913997790939565375874699178205295126606543587480249531054620790828692382531734870934885092202989974921677075930466511581133383047832465845377999596422451105520528225985513579954331407804687382883091817168865047464734200601615944581759276487831751006154057153340802777001733934869159725448358499570311690890502347900418269611277438910111368249836511243522173294127706038130263418165235751483500779868261068935781083578681115816638025428639454882447431521714465318821226560337168643885527949083722967271505859983902007370435204519621300668261863897112457539798316748358028660902437533659703795530174286017098228525434662822605029782281922967974950706846947014111471827123771794543!
 9542475455823176370720020939524803055024861529194258380746445612475663
03293621119406438535126173363837578519909303377895635070998487264756328815771858778297353705484562184061665163805211633553595615713655488304023083904849905346402275363505322131262857984748871208797423919712980651571562251453573762296496995785161894725860193048018878841407706427789821115503893404172990784288779139603190909475642774628234645049618558957186727089305050991750825906016230356085410026150659958294094188223171176685610343109409015195560359419762952715191446546570114627356476034166407335530107840661217068804877676582960344592623864758557477341228559099455126197261503356980467429465446524107479989467997846489274548144629270461024277249451728542720251707513725879735089028835651237307514021621311702640482513319750428220989513845528136268841773267008825254317243579889892752698716039884633307640274102072542860753914632056334190051780169548164179493173488781224447251861194100883513137555490494181672864244172188026388165627539857333600411059599433600445109382525788027664814!
 4257909554842576325666768618659127051483898044159755020202230844231648171457820102308761368940062171591863696647566801150589395069179486179388110691357391119291194764571638424398506767609270156013876254738775551308216149178633110756769969326398363601998430563988679303503631101462125926182324329202305048739735551038806183963033839202244502187780634180139029250800165476559906039088069177185244075096351519581930854853494363752693142834726012863215569558934759037521733395698605355818133404046834587120394074492363546970801353967029689205641532705761785074369410421620028138597409944580394843717122378085916106254729128941850143373320113941923776992728498792167957048572084826211789537450995901605731914510330159219504779986163997351363430181270766361962564218296135571474141968251977845129239951809480276157790515052996245646768594108003196552477778443101848753683776930481208594934751495753635190836645103834811783830402008724954329435980183990961161442520808102461548343772159007474654!
 6970789568255917810215356444060139689315984451593321201982737877807460
52798480631885339359255326405680475871392736171274390494442064001760465960097267419950111801944219947030763868082018915210696080337311479275450469180708663306830471771276993888434975203615083864030923677079665962407466530320588557954353589859477754208465854466213117417321363819376111745267198453771073659565949816596887595352725655305225867778743619699554527008888504312759094143302364295198309281704636367105770040823556263457878747852344823998469437807398003882103551971467793674394843979504226155553063937295775976121390828294776160906986615995244347407208254872747416379054120320437632649767578839449115948526175508148236435201449006844903755254950452871127759024402682896602399138122666872871694391424233569071672197485298549065028669385313900278006222810546594919496576773408717385262225853195847657410136500168835483562369923544012235969360060512297048480867065598283362546162498884058080568387476805924167214899254667697070427975947074439924019217135876892945577148244404837002827!
 6093844436672655795920533328636382118343620277464608717645601823692049975214261411194950914136593993959888496873253905456168986309629627745569315962711129138906875337142858168326558229153167341288902773433554934478868355341061282300218466236526025203082990557359962941212840361584876982844767216650605084309332357791634125986725241074116285556088741764834982071420906963904058285391826216228998268695975949380590488575368152351745149646614269658795620199766438100506150418006870765847045347714700596330723357790794376706421196119205824254444186413088962966896033391500132432796099227783533958918466257599319452669024214636598684615865059340714840086040303385526382246381589158118363359664373818562104058201328165698540316735563816301968056458734803967516057164490401683827820160310032606803266839604685589812913403117536801291255768900097036049925914526513977577298346853058553693635182475723337804400750475514350907561272195228462960672210621607461237715153711868850400371478628178842646!
 1390580536475028946907239289094722636256621257205691977369329031393413
58756978228791242833507250272859563234780250407896120197892164132387436929916913977434727149780099649672978953914872704895812275014589904462389058696429492723035412933532387618921156458876442971363897816413221384394558034626557913144029141250116885199892287079988203332745885087873962019584284916999880962566639784614021609505972997287096124330457625312926815643291803738394819151464952919885361976689649877753470040989333379727159490519391803031244093812163606427205974993743009579616220470674611740857341097442874902407222407192008491185818151812427633852311408809193386990524737551796979153348369860778847341792375900020696454778980465442096165582454565757260109829279462120160358645909800121461108129748652676649377548555016380093639144038747044068074173071114912039559556476378636872521258664199651815527268261024910471618972792199637288140577295437189483001292061255825008809586482343503115842725044714417992408858316044363542631311998838150344747327397732657258291837424868253221336!
 2019148473697626755507600478474750713026331527914424648458310542617927325595978995021636498056801672170239863642215138491367894696651895996369818952892920910915814558041583029638779178693541218300409986888887076505606757845234883714489299580313972269250026344239337293778361219989460046080519291815736507140605213243665711748651865109586655317669933181738303448325237239280960676905236851464558272384358920906669573835462780112429104142056474580713944479048166588098158783472998391031027522874694740469677382116151097247127560918182160321327115448287990220915809954467179102398577577600759370662369931528510617800162228001306895034828243805988974280780978633732375367387515639962500202688917156087205681980381321592713346498607978324698826325052172467732321585052767727690807395180206332392022289351307434265978605937025106926387895048939556321921166611355155598132690575754094401663689426009267552040653336553951459594430336472986972522461302873983497304830196186945556575297910677872775!
 4721134723081066651220266183702365900835311812752978241047417681200547
328
54088244838854668374142336505912599422868792294835077262714575470462006165094003489129260399554319578326832004035426871828068254965253831583532577307988741429846387393058843241116758545328754899971955023003383521326423565271107017507937488068307856033254146019433209677063749357415395330037478839909900702531462965980415264558977993948764754107248509319276032948979171741362137841981035068496164039387135610981878533506494822506753456264515252977403298927537561691817485375550733716370480511310820927684935994530695581210082285314541817055339623762767685236462658936773733428035587857812808211157430619791553712435643547688811631808683393775827893152246419954930016978447909000797664761987833614645661921975754528302389984112801986210384988301577437087384108280801447372876668190323709674289419709340243364458161318074772282133775375992468949488568872590487141814602376469599508013866043470594351749860090523183122013945918488907530401736869961254394667213996723140303493622862701101830211!
 0667511115697441309369448508843086392094696380055670063404787656103708240980486788426585055996477627529334517217948195455073849381133042385946444639016837234401990718808607747458465023324552057248971165150373546124839533550370716633546955833592208900331481109310503562524157515546073932444462024389516294507183976761698709746973277318500836328590628633813257734717679708600828636578477101424365570873713729405753606851996199014232615351912187818324038266010409932276803870251828268990501392874943375476282680559264438064463585291569837975102408599405715559620169061180606385304794627810116368837111501855642083240988162569805452419611080501075913425742311627438861264992086892643935521215084790616735964953417920335729931922987009457311999116978422688536651053937230734148336277659461082027507201354847990537719775211020802148813910728443483895833745239607913126446165738853182117046599366534312649590347241970089105720731051403100314200160783683427754926384781255572681147907979017869070!
 6587063474951441625253213465913541611593773542711274878442640103209138
69535451417510456835940101622677546837090867791763832995134146804688956935286804536200975579858801075441759285242964102754439417498319758454369167154537583187985830646715342764626016617073652015024125094132891717472435772793642305284204915384313671868862378670068866990269549824223482653556886677643797575821735368172417852613962129235281465101903304020295980863199433281222029898589174133129412548255309686872331162921846782131002620265685696863338986031149068251518406535826202849203691108013004510658289976889398622302002987302026668239598343372148343594114186800944102423948059712951621528595803182583624588407389192471713075627136269742883335952005433740229716897756514385002397963122083229688685441518076875750485099198641600385192906490187818432826073803657941537508892247333091289023297839157016547098990259096337756258327711521976990127206542767363431443596338669837899069142731429877121028098135403899051819659025752871711017725535981091889718059690665346225255996108710602903850!
 6826103736595190365980945903875680234895812098378184566328475101226255811761539113972787869656636476038783309584586952129741360212303926230727583162017153270980917602947021388975447440476453541813844023239519271050083654112614498747762957664613152927304082624646701708792176731621559023521033971585954705802422838270279714940186022288724774495150192048406390897784706393683763842470276918437140113263995349055391609284364993786270814923084851585691045365720342141118382724192599609844030715132883908461395367071412105272205061025340510194029407497595745271749295390793858606386322716975883091315775480834273084500345820943756785117623829181332285007239565267328818090238219283414941449565542842602213790588610200418833919731786325472260696786349814689795481129245649195627574858991085116766023520108670357206241041911139896508056310177625446789940282116489206299309939504162691936328525056590712236826429134597500011438126624463961940292261249313966460082178386024222634029098826070714131!
 0134022518229251811450745324961179827809809090405986688873946543453374
15292835273206845203742286706180187577441930845756845900830486689521818505462058364007276520648231602447922945765035027161024023604827609189292591418654431079730615857216897581301459977941667168583567014562797481377628779120199707733760091548850548543734919107244488782685079767274247498877503716950996456850662105235981331559735770965590640499957013762197929214384231902193401513373371463885699756025752609691992041679698230878351338934097212741361796713331802161065533514784012271805000560589962544108742917710596386148887121653420274202194001089823491632143341096645523645641574425476162806149948622628197947120995332656928835757076874231482565476213966576158701886088308735206342138180550809538710626433109792183401239101558732344978992864043400856643324403552063429457083508674597822201907204349182098165274154755619205328716377066988391265389325883009078593309732527980300713903254611166790612622091484958642463137460474292851212258409058847153194384311331074768044632952910144117885!
 3360841472418307882287955388926542866644843467401260175278300532377950471739461989498412658617883899732766773092597723637251124093693571530993445334363159572110004778061319562566494190266100292052756670249815648374796640972093861428742821806717729444668642296989806010450055271820474193533036594764842861974188173599121091811051783171735572336204876797734979795164258297228610893435015799839631133567144207775122452215944588812353931831789842776790776195747512520272576345924105999269154185950946053770947153664423368160345377494478203803147994524854190241582254730780105109221383043888730097415958976243928516827241735402495335256497883617447651981462148737973733502013899631749840480314174733112535768108772820544027530157949921224822818831585990321764218085761179589830507631045793941516754013599164596088966112035636072409926071387687035353083602313716182758794943707880262354513499947100575161658408314018141609641484855569557304840323932205248542084091772149915796670505394094970913!
 0942603584424107356659675150594129765057268149531775654706723150313046
36084548358457214462467208837762651946049230729108575517180870401192629859967437399667039842997856292449157836794560501938232289199784202291438461928771033981179532791964008706484999927364161019298282836441987022831823536960133729526964003143205504271571656300347801719246420651854607568110387948042645886919236548593033626064402769482209740683542342439780194853171920260633603021898499877395705143192427941574283714669171775653622153838039556125883362532556198988813839413151905940783614415697879733902202666436676056612603417723852733817170074654328762267357799173442064014595759856058119852043609907487862010633095050398949713531747581834943611833358525756392124646558514617733143009987470829349366305014653167457492149127422582208884946092094232114334628251716078318242748223680631197587626810722779638741191448120760796135398449987832458778085584707914035804032279332157013895936581773539678475775385919860590770257149851997929188620717554066504414367406195975690246107524513634966072!
 4935824938152862368659264139236327584459542351653026603370230664555840862306562445697110879197830061029764884611057424265295474176486625207870400490901790467103598496470060348647617110294936726514970098727032847990599934789281851306023690074930957379371813869516821395468129591464986234149183262075502638768248950956748676320264693455175510292818249839119646790918239352418715552522863268318942087699775967873611749834858899300898246311854478422410113101911458213306528058112412300535896490363692652436919364069404865160756328368948571924613377198958925336526525704820267206476980220983714151087480827271214552656540049463226137117556522557855785438620484397274512811246989303953851327557208738586136332845154980999121622176081942298329537528843084974815265989509596031707675498664537413763046783260728838516515898281905983662442409841239767543381995641388773390255619104043407092540587331227195150043907332570074022910892710639857026423394507230166256217803265052508088792039039830239056!
 3040930830181301726145707308395001842861952901257381244218064366115969
970
22276933679377048967651600229489255184171690301299072120129650133350627007142276635497411119992198196646987095666400665324210039471451781291000017803245406453689450147394974900566906224257146068056925494622647946704886636289350462532097847012868109030596278379131960109090781603725759888909156680494319319589059697362378318104294372533961007287257463297767480226244825115785530275005860141541908753722113152887672443495488939371268118235765079757375591862260954758793900685505379226352071301751998848581413739120823909552910494808863207734526534495606973773156538854783575430682309858090330634518463435242119359009917725193273291229892982399848033143071342088986768649183176648276455164850978318312757196668594096546739916866673803114287725605476721566676445897568217849958036979388003509182753585483735102380350966032255255659914155544417369194496215692433112650812479498775233971600989640432045163241566124325014550343166056753606443540198147107297747801155023230507765864292355729797955!
 0551397602321950701458779264414739212118715575931178810856734946743677579086970048686007610485539674009396682669252994853769134670998340658310623221364207499710367664880906366581828908867836544765605239961168746643503885454965793933667829994221239057546757896113200214638887514277042848516141037908536267285432992826190091240042693001842308974194723371882770765364599634437675073059724489094684373350253686017508317203951523600178790732272888524363703330044440927812905934536866314147010465934188347468928262998823630130601376692698821779885172124541457337848823038246719166595110517463243127903156087414886070815548311021325401335686854055883431018870889387613937325023408807965938201480483031644811231762015402434502589721776700525987685752911079948876170334681232019932311321928743418466125998701817465611791461186892683702520165299119898887494882924206169649654308944234634175306462620663204127052479046522225947485262988218016651037739152095692571767605139151290790833063089131384670!
 7678071360829899189944905399843274940243889710601762751648654324350417
46821740477205357907297881903006476217956560515937853174699754367850429962280685938360583506521637181437581203594638980135385789008753863779994425275139716428576455853881509599865425996111121263525218353737540893838299407147671947955656533381033560920916513587960431756452149002108737452194070166079074211714638920928718476016090249231911042267151029060178956746423834095198359114240864264571107074853007624980220673638377984459884147751507162293219203102605005515090769789431943783482112231317197696873083287468383293986801931916537026638200348246498888280099530802191763804197594627304342370504981686266314633138199244995135040933685213264862216626143045638015541670299756701810799145983714301340032034976529521643857783420248049746048135655627876700141167645327657091594698785747109517077561758971954701469140528987623863446660752169184051529203706434167143445810148812459041088366769369630161221404303079623341879278070741455430961219509880330732327122514307467437929490847000111815787!
 2176047256284368744402999903490723523364779561482607275430475073383579416952085411858141421163366331884361393046086404438120305008737474074303519812587955651210154379618540181768351639553142978892109793350644218922063827926017080859661513409231014455095980500497093334182603462822266136524578624368933828748180808311663214088601896279333796917967023892600395108849232222624879146995246944822132220716228187633754117440717644082563597774910049844113158664565521693479469938534589527648029861584022640999942100043342064493941644651586082274972790568046591058023199814041816664689710703815899178259905244379416476766531363703816495568807841719706669088818711189296355409708944935083808672087408738589167828057846463873013356329005608175565705186898351828853855818941876184643188554188353220558655149196084013505109130429643867372670176920946256840482169559422438162836317605490729939838290187707137864821959627958273728438493021076517011141209712718951367781133634522511943256406092909203989!
 2030311428693110299616289715741651353122650976566387254150218818945769
60633826540252017462748433137865936683535892728894413722271223237303189976271218756359030552405933440680406716588549910892233951031852280400316307779313938878812426373994576617350578045486470971336561226910545268032335170946578223513263471197754156648001216476189153839445438270741357110988027382524358192945270638724302898388786237397269948101909956476339872677974381882407864696372061345750204043865140481454084863722948089187495333684538332918569261160013609052698074850778808097199220790549384644912998116044510512482015768134230369758459793135250764991726718978359204624413558353968020439011298808208487927059939845208151455527716045554509166391086146598101094364855299583415894050113221759189182274078858545057370754171980793576571347642256640078552027123596498418147809185247540517829859835871945090092645620322145679360032009803658914036592480297059704238934014178494089834058894208281375410845327194765940157849180879884127867128834697304445346330011340784244697467610052163252314!
 6960746179723522751888911366108472825044733387698808997882496174571432653895931989193809453735620069779566007329207375987877395334012242628246381176046655295493277601516544433987977965759642130364849538029733629734054095365660271566620956242040189725410026903088730688596758323634848608003136749337880469881081792434870555858612604433511134155068347210280388630798842486479599344269107098070530828950651392898724560947408991150499159326607612639813504186421268398792438281063901902442716735076462402457681752412977343770472115340861680417829499676506858062512747529950655953249881866111872216992147209556065475521976145504910999069756842367521533929735597122527571508766565966450271917178205293885109369447210327912997299789495953721796541482204684847107971331529242256581065964907688575121283151575700891568839077515923394970555715543961203428758061751886703983086783340810134816839437033921934197424316334687716755401028790595185546970244107483690998853159223576836050185875678557363745!
 8577148410634013348975908777490583345539770579535213590168266477382725
08556557813548876359883200278577063164224046839516165716965633117711645412249718086216525530845080263561891326043596292009640323843546372129515947537029341355782056091034650314827936141065660345442082853716002311366813190919641028730492085004174370383374462810464620942776963785580934275787598784183334039966019354202671488261281948862553950438151533608881983528174947354252961305205889894745297898192765362302146492716408632029235659299419175245477614408430602237931856760648303943416218753627041474976139638429863915287083114593851766848536922452479133970185679661898100702047221233180454192307994392215089918339722129466485426691824780579878782653881338779174799929862716454333930424609112847414100761105420089712585366728363148608986343464569341024174867567648864999320167607691395117456163032737449804460907809064030467634944431558869897372150230602240876896280899677720082954009728621969369799908562863781892068734312434251912571665860848853313223426184326055836735173575594624744942!
 4091891352020742489171844022318266702073646768610186247364849275801473588812961571164530777730991879061029888628714930204679227525167103708071639439123743167928668219344462247657260407054599859682878959481812296099664498418954355051269746222228405582160178156384893241562942941023547244744065298275956508523080398810417675310953945082956686670098059680397238783071088873099167083990986667030216146571722478408522623333842572081681007339653460321498432069726639309186514925480137010383870547849580569239080907147014680319441188291677410010867607146367034609701658774793861986557251491603212619971997380349016484226754491259673931239799007483105538506866183048290644335568139253044901755675497722458655370131148854521455752765003400128947427422375583403216774265860294150285405959573417873490709801590858265302204657806921368634418238335855058044069078904876946952301682422689530301950384904574094772378584130809424481263867625452617907185667849491594475752589043298597155625391687066405003!
 3869114702527528774632307639477366220502124317111976697554070733311267
595
58114307664350837766138393741882119872814024301959257723399249774565359917373704823455256901746838618160590685025236871722925582045471781431991858074949168211910106141017546675307620289154632134291872260156914532339244678353609292392595631799247736426558854142993028945714297643673232226292360240155503056432028370518644027032070094133089307407897145934113546630626365872857188977005569179639209408954049496757766916683128261519805386857951638874569339612697366987222044985742652078573393450055218249597364838727810394612054451563797961203029165947657469934154327101407474577289265442299660080219143075163201211471223362886891100314198269762081161023720046209913211643260706919886802864097226678090238074035935421449915746197968355714813677142010284368270041034431879942143613811977053870570251577675008745353928774720196545049062159447237705651061967599990856948777593914911594201505099136774196405319122353927497551027522621259329031592920206322743156316398835598947694912780282598450835!
 8367998620353352020685460559216786552835764981566953231585885723872988882219155944803787090891648567299072137386053604371214396169103856951761602847570707412208855744548038615549299960111090089529305615092834665028803983155291889086590281766493385503602113010042614046121856202729086358517057052077500603308295180906193350336573369268872311459864004662237348473629802877988102147101924585493748777453115962897925405501780747491964778406746552790393195565813896692543928611681270286078016492471757947690040713838418710229217335189894076408089714318830892216393659687537987014204003784913012750100361893552864648042380140726687789499470242525139568329366720126727746887603228486942873013499735546344984108290399024614311248528848255524681487627399427149890898964065884653827774882015498940055948650851084658197861933024860833800725503537057526726162627120895748385707810716790396321406114798575892731652066513874141839901415240806942716415312484146575073671621014372856615067280484820945901!
 2141153970570484622153904550532054514086490834816933675066285207085044
76168704764247062925198421823405671193175977385071213843566161200541291487091099968133185503456755250273948056094553333242616500497427369923689595571203234581644450618398094463681201084189262133146656721599470819817686659148832682318546016554172883453416704493091663748465689767634231201898326438391034187584136241967457994649202221979834593056563692756849359777671093103041411307312539564248638501455500757943604266544947470225968985102663374383018153260704636104120350698291007740247523365758424349259806781961067661254989366947457932038348011891804623993440204860547400539729198870648908353273846254259781523770165393409066396161418136993626227242206373381984306775264803874177190613456070869512882942134188943261411559837419843096506180799248248599557473975865979178350016251247911768205661124568789795467228944116120724622182150361118719603867594046340815340520931954899452801363923920455820705023281591771107908638599432662526833708351622186279069635134610001892728789722396733421122!
 4885525379496233480501745645714169688636010053871749288214974692896253474032490659110794774699550166290271429846508839179574390119154423166333872790505489315733714008430333877117939845502881051522538785585885276786724654682252601394142126380025151105253620202850883368116711791314535182745826907936214338287363671478550254061831507426381713513107673935765006518722579662135584845251998140046504966442936944626432535342270481087358438651531657478369349438175618439389101920993392079359173023513361343336174093788943324363676621020575206404986003394762611773065979007173384350861190466728309191914054876182490354096036111717587384282953107129788741300678157290071872028525347373683052683882088519006528889920671141417561482180485903016126993630220042457303654506308344452127181404811064626550218334918087281343170005938945464777807178007554115944795663687523130280968563849766467416423979403809780240068223930439751487761855101468074924443130493684240279796638069701072185944469466756952631!
 5883828526261340027805651395416472679784720187392873431743195634271468
61286870318680268051307783311333649705142434586194339937603831348919536165221985717340060262681642333152627532561526998660446742821000163078713356756417605706103653972440343499640755239144597000424882780700901824785204769730606818272868950111230402025965464639168826534406245138943800868582630992637073830478363038980860109948994125751256140153446384423708749095624413019599875638910465209667545877660086590395215269307249475934637655249995739813687046823835782221350227515627717439223995541345490143078065888871451328133707614850257685232363829331474280596688096462099842247620743942690027942917237589747893279856242472965908532159472053323694904340279662663074027313164322304712428965781608109046022568044881972470679934948937439150755051735578827367466301133651280628067638738944351073404778542844945810324021530268892670928927343216222886653080791725525366482531922248604671904011881497966918972383904899214499063783422472582974487571387163937660383531958221258389950053175670095529364!
 8507888404290003623246079851080944704118776696569852700224236542148408230742496591289909650888536308725432732151415989181628756781130705162568510558151267135934483217802678350896047258005426171033289518836389103244737167483205917873365096282974559694346240925565281665664281336902593075874044002346731373767779248672610262584036880816938609418304354216051232899431137753391065117317425791903877442755577466603040662009904063042605149202987043184601327389509099815270306433694469041004457120223545117101132875640395937024233171029839349008207273903649597967324607011744165743432549961178069176467596474687979151557278151624730605833452636485128981677846980881899113210039395551118696836023267657819460839277758877356094075598291775428086114543301395004552465512429100491137288596606867189535571189037333006490897568335165004948243750201336851572849963696746425914953603739411549609823443143510932022180970935978032954975959889508110435013606216420030405425352518200915587623321754421758808!
 5941929940166160003634391015340094039861381614185296591895827468622176
00400754022405234914487411541445060350425636232969603659720823649255942147652077137457479512200232533075772735440666725460638556600200246857044600372754039232960874325328139244892759626369997460819803076121586944368125434647600582345170986588687578964346022705480070837900413305141721926594157615687911501913402974858505171486081731560973989818711788963997543859385148127122856592027869352860760961001450046862821433081002880034237990803160388504060829762941823082783808603522724981023677059060464634773095240249025118717986424339190253045895732039085850787195225501777037652162664218528198174050734002666372515280934052081167101126969867793722598569334951943269320125902423076518277713527188447253277802055114483586444782301154711844183522932511493257269886174912260328402072777884330020182435128895262643485040180117669218940030138462303925595731289815372438169530773158947855646025489012335984452603058421107836641770498438042272775618146361497082205297894046841964210519595297634427944!
 9380087623752745873654043686032392568120396815397806203184411751734063549646449468864312900565992397103980260552719134441217649315767012502328215868291339917094347218601990614994727041937223244811365777364784334202259996962798552988234835813451982181425675924349886313315764355498522016187470094484862457290141545591894888707730437495867207924838385743401098250062896166079971094418369987478443956767929238886241602443690271546527600224939349036905471674482965770830739242100152832723379609356923990338824465601298007919176430314202194237399396437444250881398720311047330446839944062988196979371975773532541936499970332980309505730194490517681341165244535932990515291198614709570353745265578742451856888960135130446546702707588099460903301835695366013279171879444954101560343692286480222247044767586960903220968422563613405634836829717434394913450350154562712113070691281968263867332213184044441497703738450944461754830545368993606820580388987724741195238929242163746784562498542798503144!
 9329953315855430027667154026296265166958091460788101747143069917441998
658
47329040165535665857626308050241495588477533489852364672238934163656532479436451005902522586321364641258499846796161843552340352324721110521226636091573602713021329448208976614103780709193655802622181784957122075851190422878000874592867736276332300969043780313708952520766671757271829986143936555118371669223725419466798082166668111039566043933750372807554514848068166043674678943264045371156658637505315120812713275492053068222000525692985014308858791838338588827226166775683455460042038732166503756308540835999973834420318792535151098838338539003290965874054873988529729683799722936601292312307160205509733930936050345903955144350530779986167924716144327074762450851301978973869927099332578952464554750676366826464527152552254333880535483627391626239252966766458754894673447577273356013838273729005393896656592230598571048482774398049720583821115538200989209661369468931771991114747170373374826981059627061291313996060882187721485255788982496057151197409955071399286692015456583834310142!
 6030808586884932719229841589509264357183140924710470518451287586998841092873590287431203934376279851641103244122629263110011096914955445030945335769214098033156765480642125772776756252536621018085063681829579287160839823402147203536259820636455200852312805800326716866834481511046373704849973483990721027211903580088432422211643344450800225977952817971722699732374386451794698445764806394894918334385251804287869326327529024478904759379404285984527499222779721000238911215489383823913828729899317311947617390611504478279287691102376475502522571732194818147370630130884178898195981629995410833902444106927067375959569971195359309384961102865740765063676944908930185586498703728972723433457224927891532609223247702287726296424917698080302782362172393798854005036257155488753610089011456864982824376781505124828205504920676147252714652189663004968857959976775225939740603051102898580396262188197128217051926322308951746815864772494006634762523998541731960261610369241957159776019716949023993!
 2872743974658804365659364968801685286397751552247599976494185950268040
50064096984351130737971104411979180057464654930780215212529810087314060469473565906468924181483912636000073624710556481982589380887457645362774299376813587654191797357229612700089296847136964936836789635251823038913103992633758596525796164964499089095524355086589025530278599077553259012730600235531124137228833954640486577783316157682986151786509241374742372088701308805439522592788530239430921659564909840770609594261296282479677881113353326295287479754098788355667879004291954515767441486784044823639223350956600727547939140169710723185824412798923388200237794063975753657251625013351636726443591597747506119257130162300909373451004745276180163807096773700943768059667142294135896008247553832459748039320607960449050176920705851236726198458956830937968062543402509574621659518879755057796549195504949286712332513375567387160573563800289429902488512188012405686792361892475560482487495532826387314646416420598853851477433433172591297317119740004264987222438106142110327499241363713375474!
 3240629667251815657913864370256202430396479048900504429852624465756623621882085409494236850573272737762283655293864213194617852606260499906254796884745853044130593739472779307753507819355762734410692155894072757362859694496638890921585132706101710614979762053857085281209575276329498576677719475935215242167687786817343705567423740243650963517997153302057143111464013586402829024515173261076716920225250063376243107416178747624311018029013318097223112382400446652702557913433386482338478240836415091426303214665547366175962561696659433120665985127670461450435565056763231927238034514025354212809618536406586065956865009005429840500460935485306206267704765845643230355579621397040128414507155132958915455166928658278389403391529922388233290253888572605849243307420504807749658189661060918105854541979324802037965568280399926145969205463805877136490314877440480911274281654824191745721110244974231615616924754790847307516632660981952379567646387678825343150882208179566747714706801635105964!
 7568318898324971204609208556997133757414465046934783022432710038421476
87932214248571356564628340103242412826327654208160894480701691549541907889908583899738707067015416665338419583507169714519341920374457438205104077772973273608393241637456285892241337653863674955049543056637708434508365177004646646381532867444822629049601846860503688344077608448239700256776213235721377269139239309592523794220566769837043926078903482673734754528332857659917761012569555350192620551799398021571031241431145302306985898701030358942128852315150644414206528495349362202442156032850944544546287414074018450857333734350776305942612250192525532512991863421476582140383079795273873761052730263924182242641542150906460098831844152564307260014686146011619491302403669382475017141894225920208067077454915759538454237813886087021786642478602868245538257060700785282733222651056334456649087436158229522645069096083169561726052652534915020704138021903400570178831183123741998178687238825101059747512023490654168401573350143178373352481938619828717997108611704819560792586428195619770249!
 6700421100095380047388039200472454678730906292796860054268202283888668402908313352076886505277918656290128921312403151147840465000757126177971158769600362591788995845532035287764184783978631665070737509669088361316739147668310680483001761136059412558390261849754766696217285340358592190345237671511643133726006710559414359332135805934319651546323178338090818578233195716802322563645435465739653891585126961726835665295452993366536165073980298734018388646124416365174666669893892482737826454263142720386501175530970761558733454310267608916815162421264870580775063592788200735717780569088816079843345659706100924240360984178262541720215278830719157976674288514505877381337614484000839126439568917135693227613352816047973256116480024364781339419493919981444634503389773048307901722189787611415267584913782767136404814522241700976380245927541667269859014203411158804515183793647076944899216519582332638281683336325513023426351694440084457734264891932074127715509564322610386891038570095852192!
 1628484184898827326865547042366752750752984312290873054198395044089420
21416678082196809827976707749289849712423880933541449510829425629732782669230041011618064786854216339301274558922324247867491607615769541168830213454217159658460908480197196494872285422924913322695771899106521926823520973428529362798860921167917076294858474961499783598343087200700477102185689744126172310910355862262499468390249780248231061077389080430317290598477045224303210033049575696595575909808971877355132748296339886457187784691064035564489612527351448682310530027781884310676814363488368688151979359194805864518378586597310271207805878176828347642204580417485465272557925932127542209355067091521746074186345010479544484728043228759042785327989258645322429852338633257207854943441007130491816007509571981783809560002874758275571459591214237982410344201199042980008348466798477917366763391675598123307360449981783300027146207947153962607424019051778269682879307334273726355455968205132147577968851655215785638215061003757442106878698175908797231054718785979450934163531730971342755!
 7368480465493684608589327951938780548353518384579551278889710753852648125918197952271446731488978306681441294809043876475417203288367931539487319278428206140837821111238551859257372026423446466169852063384534060085526687169998825468531836845011643354224246766319745613460084963085605745373590303320585846047421171983158007289300135611575620717423148933047964474680649638129316429235235811390296699494680014506883857295049880031742947556236767437649942436129590188781636342231949340725849731738971847387427493550985064726969684412652067805021942042876107362888938588503873245685564388165788462809886618203203578230333800993059130072333413234509602597374605200435709986002981455095784628320015135735925460273515967564416365301122647127864032448240077379969176466506023873396656356793403983565680722196540488511932248820542798091297110077004500227754612066171669155913980976565982271696317371323802330818946438128134866452495995445735996027340374953198103413735458599614954983609176126285395!
 3078738457075946329303714882251930381717511543835002670899582654526381
103
72525488774392601354060252214549198169957987371645351325509905208796779944078225308077581699560271112775854486844027605293945142888002909538028485411012261577841491581407749998414962922401988913083178596669153882290099469474502478449025713673569726397928304032860634546819859014808677414089210890401057657503110419221614941874314587847613671477391830535314383226695453832992239404561336060178214118865092922079294966409121600359051153880564921627054464191236518908206532775891997389222939012002682322223697736723300393821723674653052650743914068309474732126032088400989901480267801994826858553514806570539140057693454713673203875772451306975960605679539003726584611384511323064583372505805316793447259943055217500853177863633981947217743849839416646214485505188770661689027887474197775072785946167848196488792383924297012302195264384876917116929419136764539897530221318944274689864451195233611358086995256573849951322723448589323113867978311951784387713506482307870482998034471550701418820!
 5310414266822948160081609502468235978893323946769501559475750223592602042472263849410031136704409745365861030801205930892752761072852639425752928436218637764253542781899306480066569636727516169718199072260193757116892594797447612487628882179865013674750750063832347988396497740048841235756668657161421583110847360913934500027320051307981281570222561690655268330308366563814134700708194221664848221041593434919082040564085952240388003780734926165030023171799931482592911800377474465950156593998138623869286906265238206123362367459640720983507701108299079028069034109175096357314561823190444770495486618716069228030350137359522412331696418348799080748080408689982217275513161958780967752165398983096203489409368385653942119612308102110347105174241643465517192077927713852950602675186424396926553672334478410068145595114903678283881757053538003894600276907056312702323014141306631680174679733509725414626095995788159410727806596654228530160830980948279808777995415133063418519778723030126639!
 2253999559413949621100419546078252067442508032881805033938921875652444
51699554137647784167163730755847972338659392635224018226080316927670846826907128840619197491176562869996908497073082337564779768748466753052691929850792803668182143767960730508738080830144642975982541700786439730496108341861969661959632201840359163563411843581859820514136319153091251744066240493909245135885190762706889366270990559464689376680069204682836304625016402102743791785448024851286182161251211457000357346740692536790368909502592398915481716225418252452080600390600406155405892907732068730958006174997192036471209788419244666709204449749874824088659052669358894877525751640135436742379201453072202353576834544681206865951393272635592769965995737774411037909107156835865846562208586210713954935453912256732806295275190075494090489639438880642545570726221159363124394916459725649101842575408220047228888466345128030448319017840074011676477395615436471395235581999769359010841775219733620308326257616596841193661458533114207532119529276697170420670518598424997628346041231639081227!
 9089005602391472762547230446561373891934829119845493060944629450961591153675525286261059127121220414468417749781863050111297400394111935081890835733329055114407430444467585330390819867745858706466753105873320444866438195473708480984019014571108015111144466295074606523305173459452577257589307863700719576792849542202391372656825993183849635737174554050387357805408322354286682509834074246191721241065928405281116620092328296030172136384928510477358529839208709892631698435885742206374457995610541443705248822335802675674609925440227768400935931817775078576733453207311853083797369573820246047450096045240556006415683554046864181064155915986925744890303471460863686842071415295195399688863994416298501262198265478995063129214796056471849993133924449529728833783355225306656081139111557599979071382892418373574090519324118083275321057583443407862876642948811335953007811514259578279640928378127631674688525323298028567924732045320938542101580714740180947946116048627767867343775751143759233!
 3049254994572062768423364394693270173361084440187565356931607880312701
56774329211095460374669864630589643299619579908391638851073583655397358685803947562940402286352096347217039450470385257108531336244754542001052596712178357874633359416592323562570393312801881979934876980850885387379015678885924959933804104507095668197806890979130475312701446911990817138057938235367271579787439956478915490640769381923678366723218190582136399034973143981196742174048660691965065868831513483401876813467904264395573859006548375807152818128951074144096045017043965485359053827804348135830772445160037860973737431472179402649530772942955247321642858586419313390462255573142876790225334478786885637977093220704754382447137072108172807262161922034516766385698542146002937106613178446743494946034274590970779402571198873753139912381326000956320636823628583078987415322744621275917935463121492158563100688909580778060593728283740660451733814756940668968790744643728903240457174689316227991526076700874957946365529810800605632053593234614913221150818691711550065566655477454978755!
 9290607422761924901312867775801342108401628830872921226157765095221015080446637440329782265047958483949290880913783491105270189158666597815395224336302038194307797221007492952919014175775251699297714793500137189964488911520647362966761218218393084899260246004189915466997385219675672930964342169889806341929533111660152026890675526392510810172592947411597057246702083623791445765730763105504694796613415062949874761664184570782385557437047474057201870953392723123250003365765441821501626602351718472672153312107509640158510189813774914265452998666920870889036949102304930463034175089835146799025697287651150445102675835608349627733345414395387961968611228627183777026264999954378975661863845224244739492492150548510122167075552405102103873300284593613184584427867338231426176973563642708421202831884367381928347131950871731221910120316721141109395899922884674801741656760993787819687707634475970187870115363507042680620343222196248189679109056279926872063157344359507897852923069671951104!
 3330556678384953840961252779583891054879684848620867971749300845214435
94253462001124108426656675868978082776276840134698294192958020330574004749139789710591226422104073255789131404774670952163373109546710714788243474697322536208971843414016895152093293728957961799009745313228076318182899433189695689530472370399538905839657483550150819470100336494607541568093909482754499811810031151431124371620602850821167716052901503038399817787498619635004890805220896906827949155038157223974665114420407121328005606536244601968573857325813809450794347406603605435911681038547455413901005210856826964174364592697573011123142761569164064382930414419125809700150147626045084302994739777044340602558483155183709862104371824449093244999094123969680727355749909747543929025579847970934821903280850591023318505659588569341036975217879661677104230494235235108630072812871321479327804020664614262300785614084032598348925571208511898538223851362097287919518774650641861010501100015239214019881155010333190671539149661273638135349062018988011860626488814169435292751302012074448506!
 9394971565696370052810443645796540085580441624842571854483720866433386657525228581094828921725783915819147691364603268447620225583378843070662682013656256706042916609673993739633372559817540236901883535300799015939672492877457231001781338885062942677684523610642620854720708060536737626847668768462104365662552545771558209684895512560427094838699004537060236388671367910424911491996301475646726002794069393629208526804159391655694283101370172150024613412555388032120174802466199405716025981142053849733099095858647713112190057785168213546567692543695868395539592269791198151056786242787386355969635159652578010088777516139485947653028933659176240229706578369853607110049534756757228407933874696396982052754885413863809128046556795786738024779624558074935723887491817201030089198899323795339275624929514306391754175652362056553753374784035475143499180169624212773057517531727140899284179971054379976646930483998576569703889161802688948286649839647382240305236838578791765498736162847160152!
 2751105553564227093034129063412140503747065387611044057631277677687955
828
39693606879749299247305575701450712864877603721671366639964795168121815089563593221450808534862645244138042319376365335527483533321558341288886647780139622494602435843022305917574155275447784716651515806015968314346993860224116703396103314344414215237812127052900415296832835814274572054807634173997685403211427870270994658214566961420493586005178320307495998499945367759639015443329837295987702158798404530424172368853956543113249128001668861432133590181459881534511564969308722687998154401637903625847449402767622314058383024632327835558970491228763755160993522863875948264709234548966040439552829693496327329619453926341254044358306491272796994144257715378660212159628384800807764860068442119512842811118606563381627587966850467909393030243819414713450444610996238141708045889385979634382447612009431475013914511029035345846423398665337750340328875117844562170190700826875371234894254845267952905967289911416216871720725278954130366253131216168718400290849140108824741929033100395853328!
 0903056898161959584146403500881838354477661617640834335657628291603652785505334292017344423999912982156065639233096831232606113498474590475348175724793522899893500943495075396373482891154711017298440790711638488229884179218542831749857560164435622264612259464028308647766387359459884245047099086787716750091393003821175198111842564994499619250193938047253373994593337731252524630640434299251006362772644042522129335363983888712558650282148393519537829121923251329550479427077479817573069098139817583642674915675638034024163503008997458846644559510526377303887533487344021772585481657032600335620490417735579097347598439475995845429765463674121075351507013851212617101709438816386818003253445607801138931545723258763168759141418393365682229624660091462055145978337911564647926663543627823302548582197820709974731091603511064700974874000731522287664739629127786218446835550020204307191420072846279018318639787025702772268782391036972445486411058889166911105922029444932943627035413309880526!
 8800879346170956304846028827660119070894073002820066435986694309912883
86695237929866628178898427269704888604473767609420261537717791790967751278719747104408091559906791907723417208080859904286004545456751422771384737823411005311824430632388715284408626875660506972347847736219620237658441103372159043811894698293130692861159856453139893139948999833404400924228379125175552174621891287605139468988472677187466504785270664362574831916908491537125880541454036326747869539649103724005746130220293199503101987750602880237975002552157499644642453349885915909369543958084528045004936639830563782254105626241683217301132374663650818321551390498019391996251482034852336035202979892243773111150091658570103260035364444751774246989158935734705658751497625632680396958169694903975994610639763432305422721308762466857346704606223493784199198380130993928023652274191986054264249711792282050370537587427136667271485530946080779629080935838546546834984036355521684570343035006341023502853487766353047125068844087232667590565579334784591133212607890192869809935963677578312895!
 7269704288379935513039269512405891998449060463192776299056460394768756527761889878075082021154853642537919707547290711263442813605992811917357099215255551980276056037180905189020718577350555232713913962501594272539302371864450176617835950053674245283533462966004008468072728533180835272486343316020649687387392161609559277707472091863836191285755719394844572279339098413065940599965126384799973332898272447135236300117319458797298546955749664148606783193641212157264534076580706689602531854014782487479728063120191667380722377639208723247542101321740219317052468831195661303656707030521912378617793925690762722384770505239270622228374942381430610344037798238210887741439631390151070820312754566079546433713534599280628719694697255592487623405608599760254233805356029198699095607613736827707044286670464122474056996749209859838361282936506774498024522167809570099379281101073932308678935464775565148775074794665008756926950491325561264280600598839499515516257640827798160572755744396120181!
 4749780045132178212978637437510997476733763131344406693221698979064814
15224596057960363749293853905804580982603556819528939522166957415642204303664372299146967604386441942130136759001693242269349130492467027077824818455231134611034534892733150600012302853833423036382471550255513687456321669366560444146424555698182319274119450827968870469417670296601950745024985165298061868054638134752514384332789919960927108581220089357662225697993598699221499254647176821012765199595978247005014221747545861942960392394590928828418146877484191361418987382812648355343241016964934655262953455634617083351095016806940228675056776344571474132177751673062077821877064922444475208280009834255704577849191916884176771786886303321268954919764573940753700988371400487025429260329638779287543770695604373399901002948526381500326289972855113010369858193267448850522284219180545540822774752760746538989050643747981698347177749076103760062828906194576396781299288020027596729449861547706520473219541890296708583780605695026885991520228616831779318138111337008466482823164294019403501!
 6674892993924087057564794251319995861278330973526538433593841675247530968424697781918624343771115599252828273132951369787821407425451631268645232757808217439154214688943590977318156580220579640441942122537014799189278853790337774328734095511741378352019197915279650013938688485569374748216129271672957278563847386324693858405292467490402241343895188323801079314601834291621633196573700159794273900450006384165131451765590859700264700322130221985224974139157795298792909634972898511760181137446922094253103131383449613559931817883544164714503878554716659769824672479744031166060619891225041569090447646624571283638206166742756470277596897462784181051476701358042590385753062036572937840164916694827135928569273543067691788670004922027323162640407025502795620934962162273386194868110608449358956017870858831338441728876389093153740724000728025325627642840264865650196869797443042592258495804741792279253400552524744950234083926561723909309423006093663032348020210867886808965918168479273683!
 3014327146956844570493654212738523641976274894176037602975201615359389
44876220235739135468342725946282950905765143194209595516072612741353598331918412357841964213428872566873897084383114104658560037688220324630865651541079929646904657770652379505345960246149402061560544843064378729945258226263609197006342345695812108101880429485136828673985213253451985198680652792016175389656184118252242529689346349832387862657383224882146718221239216145216332527567001704289399052465482587785124125185612578868945553166549754643047535031903559023214381285817927533984012460823890717054605835960586771990218346528305718682775107625066537094529888302119627302931858892708475701485689985296650573384710386205996389432094133595779644769922141537865511246485379439254073621927524684823828499731257186457655515086958241513497981570174378273366379934306509060649809298386303335394250218225663812732097435466224458876434994073553886358770672063368111132294229836540526882156127024596288572354826421831454614331912545833118125597914736484012914686221986737581897719518823278520809!
 3327828052850343881380195284554650513932469026911560267684358544393507628566726126650839453589830932080370010789324365829155080132238129887146480913564402924712524410024525254450802324615782206358687167110556932854380162468346196749237552277513105100126776057643879915719948597065176021389146406317350223384643458394835435027981902728797303202850846884019875949870378146179668646287546670399896304248334225490492446701329392472583236231531199712398944621765884271933825466621610382140069902302774264438571417574587943978979594815804972905977772621874827919154213901567104042498796038383987308071550425303932011381726233669143418847662675503258634492672941635544061641605812600689785048902465409536738448508044199481231522643777835892801077052872357981319176422544079026297752232994316244056822824048979585862042095903016753077009841255041439517370577205755550817551260179018120073513341772372476220812000860440795123951426598964340376424506082959966615608890385710684640291412717376571513!
 4887944642689107694108953101190999299956309309050352227772332629147014
017
86445146353118738378495543882500856927308783947452874920176886447311783104110199160063149881892999061015277816870842162138183955707918405119806759776959987531377577268878910886459165446898313347423547929805191092151468307163238553510387271875446767082952974905345953765259319251659451479336850638167973478663688327078954395966772983270966800627905395999829457773168238326073880180654102514617216288678835870661909367729796642225593369082458671032121453015761406563848832046204655115731003310627177636632725355105114011372947974242341799659537348942142140023658440811338831976175255058900924545313775605884224762865238760627246990302126704707809451241471629495570270401899866663201798423005507008440753327962569991771876542652570331254951397086494471914527294488305094601841529556251474040952579800990146338379776902129394085310248856156735060633863492368448950752823340100752025828306207113719059426781552141092186057054209610307132937255536822579473558746256777651645331092982287602837922!
 5930251318516581337706052092108657561743012334289084699223497351511631421745254267139789248050025172232090821245741107761163535916860465237641185208310455600513909589498730970708723111425470231216733203810854809201787391487934488837268545689214877830390016547741762281260580728355415331369007931396300063769702007625350507261233441510111428070936819402236989991308247424654012701940113222999932048332874671355383494579635836899288623290439722584493817107725905803949716259506636916042428812825483869715966530554742543545597343320165017471694261408641380380466595322388060995968930493981398914417781080440177680412631187307038032840781365152378659505510087403583849737817232100166230527219947879907436057423140992833458661530302659108802848943882627192860592688546252611811506554314391860473863832014952014199240165101739767409226043254842945659258581776899771652026749864198907493364258824303008229914088423037033492000321094764235749370825153883596128554028571511999684121309513297601060!
 6223844678533043036052833245947715175211091321846929689013599203990675
17466637717540893162635269159223166758528381513309573351829442340194857599928875715896113735250073352994468645177277810729355506620011166278640684583474212201535461842745627781395631003503800901852220399726275905468272699143753600658655126345316534223994033256987619903270018293229045380216469805315530988295337618967309534457130377128599254581802272613746556905822595786920989804611674009391732335754451424181559427904164840501217527511162224841376487939528948768911062083467875763236881995065081723493681850049201395396931150450840631833169795650011516330083782711074977286046415193311497771862005817211835717658891646355701844887330656741216711045991852850612219680110732254829518774076669979602303847200725332760059467869526790514319525735477141111573062837948717238799010110737197033795111387902442285766119513470938240551686729869870945885528098965550905005839479776816362135995896454669367741167952365593301962543171459828163763773483041585352887106282009286734513178670579055862422!
 8776977038033586718966440076045210507780109026374014363278004628628932431216984895696926812699655700961162978104880833322640115844498657886919891551164987759500820116547107949547616272535974431406989501434791552148701805244068880531824450548615105575082458334830601530515271410340134615871762049327376822811793638223772636769508996060057645760743490838086724953303401193647364221640318773501742628383091816033713053081947005481456663342292943943791296136117974299795978982220183820433937515139008187956757808498819671169957798148004686111102029985597696284193886876123274515246277330804465733695463654938404008197776097066391323765425391868682035668542766193268439028859199678814724835023195058877475641591064189912406912530941631256195410954353088146423434083316097049504493098116735398312937355393411873200886708671067629280266231313666098383643075615682433710032476128660874213918935675213059506263362049826465500820665018774633318404810965372693993549925084609322236389181879005872492!
 3861078321577979026003556222664391725444460628932945945429583100156730
05507543724742621184651637120770245996827747589021270774608232810877746564376220508922117628625949233373223067991761502464359913563816206074085843974251331593898633831027241143850753208053897338011591250879562340729139453038627070681780146819477240289396172216441758486302045164887958376109298506760537167764010412278781795500182331972605746176118837794684547320398918381170197786622080801810164834714314032925450314249522008211143307446640136242253192598750915751217391324329653494012095392865347084631588215049551680144287064948483156384372726304816947957920355668445778638297228895353441185206100695450417704454744925970866988636099344700619938864727344992791272223165852836232925364825934210735524995285484423127322046747107806424366995842385286374322732442018283439734000322418590192380305900587222928961055149938830614135006493691047390212915439774945360510806487208013119049022311070723077062428339195289372209114877839087904495963152229896827082205304896560163959455860755352222215!
 9573834959609286492041366112049876816520941632691258940484528222903607027727550910423476071510260847037204995330735661652016080315883563879622431208900709419217345047787877409407146870679225942590522751818094928229533182148904042084393337728589025366508426327725814394860195937648754924471152085966166588308595533616071705852042479775057905952120494899134627373339351797353749095540180502086242529471556100879915414706965354572999224070932580384255389746776351480895187698836463589425494284220731203645100502716078039833613170002276335732205805047209990128777689353375985741664585200763921687804857367539294950338409822939797065831425555392829591922969806877722796639729390777908217851732476108735564189670849418232302926913249449134037576977880000852120689948851950118704243081970477677656477051666007382064988485717104832272345711925918065271167048969229098580751536275170955052842903922436500482488074481318574364656698445218053666467548379873567916422013296190351708641479733715775410!
 6151617424044495799580315561115791030873134720990353018949994658219299
21964771056882282986141014201946390542328584438171240836332265624325123838594776356730120676441085014753981446342859310494968693638264004641625964695149031961110485447759191706584392706760240031145212717647083332009417568873875947770632409980920684630534774332419452200217630004662282023808277804197794933893918898522440855068666909872615099934327559421951361489460327548540028247463818557430386722484814571204128940220014152688477096246122211499922887643919191089940007645004267363603359564464427081897852741770774513395840957604462114327655989257121246407049760606889475217788884675365773130888483170413084708302811779259466701208771841286594199018778750963200281102375514363561230486554615329882829990461745177485814776012313343417313877109055770936706573655020317579004306722930314450241991977428096762212425199286327402583704007529728174354804106393450637326750684346881838874833235411216634188042412330340349096757794165377908412586879828861032352788573321553381519883058804585315346!
 9043130898096369406641813704154859314966671159813089944082545715355230065250822849617287239674650825190045324558235748687720066747949712163602820852354302783865361171124532148648794241321331700852315433727746076806637669961889512288049108911176595515736498473886069524716684752375144641521336548924672761225853936148416514385818691738416754348278131766314291169378556461817166096634029127205365302544476383065335504511464152247086512121312900999001968151695921524303910229496964390635521990651394321630365345397471515735014459156097003147953738250722286432679118022285454450510066868382649729074813258480871020887495051426964293739258136771841690654521561087615737802053527958004468491361369174682537172803536784350361890124577775833864677004871875515418115037141294549114272696877208861952903110006521480604793894304261211250474636222567539347681922221920063516876682582150682798801607357061108055578616867049474864042027000614400977944187614785497645823956249805444955125709106402708323!
 9081446009251177787652063803937135711764476329221621412656483739471074
513
22905073720554233262086352301211192300993282164753643692379063250335682531355433034789629153304492311538091995755532944987052801903351167407527636655981472206121804385730030729787921735685000125623318067425988724010996896981385239730619195592833694861190323949253594415836595816138391218541195151992655070437222451106336712668962567275866773882387907913364509386511722013962859447865442962183266784517002027818841924009364903662723574437287448563310872878958458482352508201562742207923922033920450828194622615291844607061975822852133877969632367864013313041099556453747740645777576849035137916732532182650044015006462416364046311782779660535756676037161374420266916172189142991639230484973825428942219985454786894825670545771208306069664015175470113984382899319336352288857298115482869135960324285116362192220766798190063884048427152608659071553704971859335226057118104150457934735396327639988723256063689608410315441364214878261192854183849957430442768683851459149189187424006619028314479!
 8592264459633479953102863027801831150089300076576280887077688855667113610618616899624996387993702911361950062155095910026639429805842317789649650662756529783441514973388255236336446520362201321628032135004936195975070269172783237013837157643230288810132963328739382457387462450968950822383308441761924084760510272468601914474303915108037774819238710529112795905517498822939075512744080364169328292125537800884919287028546754254666973573970536536245400722239895620130676048113391563497277605671449640906404511480948248685117962164044280689719576297535622361816888500272856943365288001318441212141123898385195278511948146790166528406883821869586830661295903977459905614870361228980984113820061585914247128622986004171890645301008203279408858038576089051226987600864246064826948504861862965172218487518355652881466312752376870674667526917244167297354569567331667718492843943138599577385048506109731380578292094499444632394306068759581190038602619049210983987196993364746331140662945111471520!
 5569480402798735824309185973826397713404114160166237752693577223614775
63479055527521664824146099814862813287663118752410741743298743627538504577774254205757662739315698404385677291438378359018235173687708804803437428632366590745228853952283577868134721953766050084686198962633005033093604099782229148151475257718379528138489156804919218123836041227135829611649724710802612545920595248651142278339115649754666274486718521875618162947119647138066877715360854178694183861466074853653955258090169662377800006558368188471976982444587322984453088699029933788779526571972808991597939419343675227186634378290793682444032062463960186699049723190315024362504081305535338306531610923789527333914369792593690728697404262340424758703379170022149258343524101571864539834784545175892241236136735291362601712155441084930332164423007596971105885469586957117263203798513719294014487119501537158791633212538307938969441274689227398610118372085142869319715028646909873284817207387381520159116379451230101019666620364454129562919035548105191253438713160015241247855045224548041708!
 5800974416436084037596380188386074895352662695035328164809681679448801761593992935630643145711148351667475654627759421672537822961337952004829042288165999567050760734870429085908499684909529491046326851763652246317013487998937688779842092948512962785230159883015336126834299177661463925494770519302050031055605493677633916328395389557886997769714313544610132496189019170570120182066702116577665414605136853434511733028437410975267518355759247185151889091689894865760416453321241702808114846759077301327254794609415509728678967187961801220443350296879621964404832788637996040983882536293823039583969837394961017123582184217743974270364691125810751594526635546467514367886879782290229559947715764306712652597185561511035747661042096417841247683015840339793601121187811200823174503714075700409271083743540108919934594983756706127409717699213954110952101250839813654956204515024366843113398973858736113065124745242321542571509170983114140086026489053937071277441244066907683167085424057300361!
 1786905243232054426823568650032703030650150774804738700240267292414480
02051530677327019111454898739634929248920628971290478304492685380028314875358105997056148380692737300968661098886378902955732473773218392968237265964099999476679557605307182161869394599277816445253696965812245009356458994432191727916867639855789253996966098824872270586902492001784902712148635395532805946828846993357856689685299143803410528336938389808106541631250749494609447408886469083652165710685290293790114001017104187582043926198243372615611135685841730762865206310031274971446997819103881992609016646179754069102972565847469045071925244946583352764174639951788616905673265931633412458545178258082449007188501785142887176672083115995559292672621178256119044595069348961757228325071147520441276776575050868936709803366686786798668095854516356450456700098282130467124423758025533584949678345502763107561618567611024200622908622178680112434591564775661362731079617325234681409070011050097945863457244190266200577367179046123274420853797609726268687700946422725868500716364595723606381!
 6338474943499752065431904882687582535051569107427134586841794569558271770980275281686202031319544359749164686549228763080466621431318534173986503522645190258054517242379319713354798944313018430240118980856828428763561151135925450517590066090293175341972370373166267631045526770572841082661953953967680235004676392322381988953904099269167859156689219764620537138695769799990888413176891511374346270237557613560235953212929513393306880410662258095597530152275907114307261209980406112049595447025290224582981032604603666107907846145624771807212209453782243796089208478369881533998578438358476233111145529449931635895654517074349410086456375682365245225528902797171999867299638162137834713253882980766128714625534783529714630139379788432298529584543951967680386477081199962158170809443989580382507071135827079833478098566103008092483633401066437851717050086728560572566582490063038166592502760359401420724325335032907153406437209910495544172192961728518931878766754091358771099753068394228329!
 6170848065834349711181400922782530261593481394755173603558408942664474
93309584619986206812924842999006904953095601991673592700342277058077772579429891924835075000262535753826874832363422767248087114413930325764451626363014157737299135855264761831061547505505435003978879153453277021596044566357030677066100192017932140171479697167384697333397070560585989228309253129526494279536183676079287994017708601760847530393479112478861239694532982336275032741764624321782050586312100328081025353090522811213357690673482789377192908366864035028279947062486247688670440208595385347241370469282593722752895964155974991677578726870096143793390912193869911363019731897109456037301611109766624424400181780650555724623398592568655386116826127043340700951800886897139894921319480765456160954465122643149669349697436169839616874112409269250879164951012251867524836356160571234863846892796456667649848464767165046561266990865485403705281050282325415823196482458286149790041803457596958657165789359912026924047544686256265670714416277114320705726232045705864254864853864287183259!
 2358827210050178192591032186210252542906106419649321973848229246721450880276773631002510614658987528184567259205007900609926331793502930263391497547899805591598387407228201211160318474460731309264223605720140683187407414368473566930281385968449636781635546690457525318548265991161791886475069922132683880788802178150798752627095916528280767673143687407626055402771583328466679056225244150316045686489418112599997950353070728399541880040621837690405286046378220683553744365548569477836150626359899363478702790903099746277218424110017648215901270567118208766878227576467699428541130542428469796771293655637190811243475249918894104423899887655814909816313382834439867883056142206994865643705634568169510209714342381265370529023114891741626975984689067549381513688231255317855349374611505045803566781944318476851348291726795304651549598075641168998237936862654522544768231938216555988168975654498984722336080402362152126378985700273204797098350733847558808852656004601113636641069535797344908!
 6862143285777692977138838668754917368355359148530578245719109983029831
395
13757052525620958095401789769541394615172026176496607952106330548645811890332327753556080420928807954813104430831425411756469379644937008805178843906465059869952993456228849781367900568424690668982348037672283914141463938344197050525552745661524307031168939958640952184680068901136191300908934268278288375705639519533012518018235004929310697272580570319664319775643414186491957095194411520225796015794217433299871249539848164321588401682318015676822058890334434057690623837262060541947083026988680883194001517792506775717517459372238471772205082093070415931173622020003881306078884009111773966418883673332044652964644593441976859642812624451256257788632315383190956542867923083451240276168883596525102882925470174588508778546743233541314358139890052342270388006077143178342526680299665251595805267396825662975785411273245999963482719371057021772767908830058490736336401316479936837878094275476160827790635398026354770894899217773445189729100846164905691264458400492070830852606455660554188!
 7941017689160277283372571529263391248090560002823379201775264068935118044977919973237802038054845153464214411215740926117175317752534252312656527895654799495249996613418668561137172657535761612467563936363465852902198835935831392192491393418642454135934428166038405794303405858305951612584120866417970404500557090151031427979014579958567197456136453537244757325971762416221665609815477651079243328459730350221418019104377848724061746812837199614628391664253480309667240241178483790511869883383917902679307649564913279665781977169564574759333133134262607748971367197005879051641105756086803903926865826348706345405515763139861676381077414451225941285507544942159529485739898630568471553514877119332279431038600662876069707269223883921101042205418231418783870028474888838905667506331222092051480787061361084283744060089044614667973715826272029111684229324748247891789685877780597760941818644316340028850264536445513550671213401188690785557499410205012020584369359438338431421187984966957966!
 7123182969419117181580494352579524060183758509979343711308802640215428
81644344306720286303061244985371567180909678367412752020111345413499839171117253538517021424306732100031441372887105544078958247023764904752320309705960620761202742331730176569032003677492694227330322757762751700794150691302352338229522938042374299195531100137570087357404896049301491001310514828563869984292941736475578552941533379493920244023171942716029023127159436936461304778015704697510260615433560235322727132552378164940552536518894649839034517885744396354358013434976027147384385511984781089286682294577257535978429545434990952690776186980501260973242575667396516641860943350384149618387370350938070380101695366304616092407294362211337355372256317992452086818271670641961004506900017835172681539217865847481240698829943944692847539212047696704008917516980044735013401137800552105630498825434932067996417341838113208226066190871983360217148256562393710727708004426030257864375469141406467379988133306274980434048844433937285851420929071406931327851505346968127345232046363566630091!
 7026335976323886142443801882404910085101582522932565567279300996617151675711037022790900577243226451934853958153367620180430790663469385952282763485280737392669541534068128659434699569118047243766089383156219243865641031313405891150807219328673916883238149447760719920810354753884234538967326548496844080635106715752371203075032887685369166123886017735354040091088039589275121002549716693707978718664292201401455882456234241446703132303501281032442016321630576537713870990527259684940878298118615258884925272186032895221824026282983232700817634556129971457746583785472429674618246643849029786530077631593791964425478394882826806550176331623401014632709472597201882333538813353025456539046348310517300849704261537367640620330137906478738737121464525553365835582825312986908539600263668907255056827141000417352289848217175999402680746491418887030638147115329646789559318086512230266369972047113174786349052776694142734227232795808700025982805258013785387832003118087215098462322707431627761!
 5294128040427317387669976955481915380842773570932813737605617669370728
80612119558068900815993982648764512003321785648698432090637602562999928889730761247741228383269616110751648915228250644546268306417227180338343173765819712463951447878320009351333318655222338955660251647081019002244674779398750108774616269889409502813107485697512863709006577191414377029675485623143832515950385251731366442655028598105764183707048240607320787117705529545309698183519729294115418251958353083363474955997898763199425104174380877385642307717332540519763611239063521989491743905255002477559239394461077761413186765509240689222302864431715623756205532535947588834188411031832605661608570780124121329727491660000489927474140215834370124815741912988770947116933111041130464645731987871069570113548766016847239555580887290897174691220369251189724680591711257457394391145651806106080563786530895784773539118878095224396978001845823644395448244656556278922902372298460832554705494068221878803473178991834160540268599674872180081320778855338243052788952528970977080260850788175268441!
 9747475030089442427002773032472938196957991276667626902535976229524623326878831389484003936817044687218510139571324767540822323043782281750498121221849238110607200441017372402920022571947628031499451547833447030334645316373131527491626927728719658075797656249029624121342739474949499605804582887192221824373601628086164468294217844866433081941654909805035061939353734418444988481855950496502632226450862252087098394179516137292615631666411637908625996619584832695382064061026825170404948988385791924216865098291704758395293260119443105729997009488200064628250641429808857846119843850931743499331587540568461844308724816903828496944549149121128389917442698035544256672059237594015085287584120562381867054311890166818097178919022122935188742790921955155180888689031344770845777714549283578452961724874657333204316660641302224078094099240861486196616461791573178124113520858151699182455410544125676216433441070173512032368369224702394752231986468094665767008441477627112781820370673947730272!
 5271299203114384513520199463470898105814668173287078775610244204807475
30842041044301634872633267883450445024484231091775516736707605284105175214522934932480284264838848469002099445286264641842034722165709568643477981110366220426052840320341215341862403961367926539763057239176780823941973879373969931185790454468787315002799164768258851740784400056127034280313124159400625600806031689679607752678055851584447737573204098686615089568326179598719347191082425622188268900233410539718917603630564713421885935991661004043119568998668547095296307607868634751808876682139900467692737094847486632625785263229965264902904755726556426281710673612277932681885116213824241463851419800618482560202162079647746012249996696722868524506028513800617648263418596708376361601771787875847872113524257127483452764923176264625743670922662113077335552056833860543070541587402449290035756111655557169985793131000681933285380018287774723250914115819850576954509512870720057652266342717714995753519942375852010832755725591013419830661178092084032701596302419735914966068109019295387886!
 4962912091547913184092762346231311444102527801585364435130263119592438461455078334368713210905114872712309587577971222071836071360236141627933630276200661513014317558424364472527128448286083347674941120679990018473193190469613014178604322552671008309502966151612339140072324812740694337484813194585701844194851954609071396254069592655653623192382949857221286126450946391949541107269221906175681772129328239509816329423697312472408434620676415165837242952236930174326841387410209413223159043112309008559178089809863981147242343125977273072587496545079884608503649403556360642136024636725029758258821423970906963894751585219601005670875761743422200688184018678289640797134211987989424200542623226391091608083282217206238321815660095637661311507035253943137043847640671257073659863704705747299557705633292492870667671578426397484164818987464420627326291809186345695140821112621118307784231880550483902301823855961986897258663753836854851880890027567239148796757475871447704496390596664763884!
 0555139832085110518086946733442146964388936519874292945007963579336776
306
58354791344094374984874917811052595293494608869603961792375636352705682866323356938754782849604914955943558112337629627949110896272845630669590312923738949873906464548234526530112459709369166368198429401975703961105018093963707677695746134167365949186840715979940977492129514475364355705104049071822680477534689219219223966559889264013833854256494287750824045655818033979875280750093213251659556264896843264720950845726942676196203246524253611380812855410809861388993231752761000593682748189193057268792705270668165094738441124135225224621640589669773776626694722306047925937658904054510890872719669296026156460569223470830776597249422251734490049588103258711734985129334074828896282286845140658705958220885463566222379692684577270800624286247083910001271322746693291077595784116055523253942755096006076083705334480806961357479866100345694290504874288654158520571824749343029266450201290152285085761374552109727391108825404901954679022537325594370109330222334353367924791554865089056103150!
 9201053297700331149099331914415825403937671038561512589708413151515283217981162509440783844635992698248514779982623836715422818506966671626620176160970567094861125093594209257672502737040835833893160975056783035442840000397002028642333353238003083672757694716706320727156328814513540266545280537056163375657565561560456839735821127233493026657137376157808881484169546069518924508977614582773056447115603672340137375123911334222135099520103561776430770908044730482689991779764687600344803644414864134634689995078455510203029888633384832818107269920008898285719368413891539811167635237013599604776794327352194624941833983034177275287197321653523974783666159883000187013548007254996779481564122250731982077737494936934051592615121472524091331243285352266095099178862420621470761814443651682059066937026972848443035060252191404977551261450446572569712315957976429582179683132072049766762865704713117146597168994141419415585527921329165534108035864539423604397634616953352898463390144370977103!
 1718852633529786009866930866984352639341843697031885743906286547106851
90800238247922659706695796912922827797760081119896191705187657704715480407623420146901474701230072367200637479414652488488002186972544546370568600472326742201969808221422778472139305509963930666588351205734209536232706833519053743235096424169280243492463752913196824007038389209946820797082050855302650608417290646789432924890422666237149391487185204533360509281927220026678354509006721929344835718740048645258436195009455202553385301501936082754550814836776294317346668701839896632736870667173889783817058514355616626575305893492837995688371566190511746934019853587525067274615771754279297665411243066168857921466304826537623629178636344787320604811685644513319633775974521089142064262107733716871629057910904737837639993403176101329586566017868615084132025994391846880266009194120701567367052752104460254246476622255379685622112998222213661949692780512346135893880093787006445888955300930967808022056712229117324496219466633608501509594916809119443188318875572728807260492048422572695023!
 4777273625668174264307924072732430554923883140548639459295216734612059347331081226707443585443063905135486124584692352772955595950816339124034488084615574831651102805659691260473822009624298786189595228730193832928596279934984472850958341618215438661086913654406425908911589698129897442714708606373440889508112079256324343912160486709803726929822324855824995708943110863765484037375213836977540372535093086840240831865921894754342546568199331920286973641687638078055942726490940543186086883587062399303809324893776063958808816927882172328401008007787446855284930095356168133698782188131987960915707800606587512041368105515013899140721605454073209842445711240786902752955637176499692273209734533903274938422469717756042912196379400439291393993696383431238105727123160165462381860803416937792323608064841668516700884580070799053990191389869288678868501254679168252957297950907781400775837291959525923077898529009537496931446488560420183072483668164534888900616418487213140176197920673842538!
 8528296023984285540130893392381411757012080830155418887191011712203543
96041258813688804892939409662947667940562265648193922536371686301060079822869890537184707195524863614424529839860549722667381399271232326979135267819475081542475158259570718215174779333083805385422525935868790011201769715069484687232397756960219053027729134417989533284571722569595139398450080818550502846173120934633238976743966867841162982536644122223505420632363899786130116046064276425247211995387977652547098991387573337095875444606881810333079159233516940026805099690092016813695028758939377149493311215724159021236225154972698785804236244127487899865593145938269756931430554981795065314418668327328819513027519956721753823705715225229178899738983906301739917299478596473288245148057315766239727468127206928354685997204915820065493214263737853653777657763105425649156377280018981099444126794727692115095607280236282848806019820301770557360355034313476907412760284240702785624501867604936809217966663050628579192569032160921550382981573843650495683338819914203756320762894376846024766!
 1039435202294481010140411684096352222244652669840429640253001700640703723317193522076178313500357425684523102015448618474112946240496328898364055154538023000657624314766841533398052677981987237595528463455943508759753081225407831152856459138266985406198907598592026853727923008414753034616218457484881555487518028075008701148602056630051107952626218165099970462460938200305624610355311040342287433668786969896589571460526360133947402955027742886004823589976160326074985704712218455866713227141006978846958171262714993858982858592146253686919607865356133568450075766467433310863247115800710250863570422004275510279692222982886795051603903278422738873811183032977329682416042683236925334343948056151302774756556422435386312834139392655972966202638496945337587293946902596287388740148807094633806597996983165111929088025119256028581730499108412164179968432523640204120266603390613564414013138932212028730629445326131983133356541252058211952929321494053648823003371378130699337526267525734272!
 0547182598519343971228475497423228254040766261730855917977487126298870
02266741047470611468698028702735148198879330690780405185216982872231913175583775553832930641934332767058711857276687145649647500467923706677199070691387000871163039442974822989518150941074191583828498300089051563374997092344581268411890557203901380937449267263259914733455221666514058384741593179377470138831092920729725748072689274863625450102261803654579949694183630518520334858306138860891537475768145068904830504743231041756725444567867754056535324624426384501125401588113376287922791445769993245490207100571938902433231581806774444726672317664560768234838627921390923872430415110888337404826020756447675776852313457857843464984582933624074648014159794645214350928554441465662367260070571074429471480899305462524615053954667294574547752230988593834922732118140121819937289727478363913024222954228322658127299397886975817429336440054623339798479236619185224022625456201012629622742562381753005177632863755395427686041957675848786829356580164847516468108506725307386935018654431860678211!
 7480706710238606132897325712447823979443239268514685587071759326786933587685471603448961677611716341299667336450589792110754601830123633360691144964188387934121842194935378749966523797515391763059159646103471521214656427472391853965021316325911230816528350294868195657135887476772396290191693199167768645873058755288747597090159188858413402314944535163715820461193929538650063090196878114872520024632500585955097326566975940880924885276626744424667263984945494096333588544944385507082778660432637669558899094233921334532437458692369553584084415785410486788230887659149925858776134937893933817239566126732645860588609983313023881770669293348340480489448144118284346563752808166560294729887698489519112897279950597630327730517769376782997599259573447528148628394441893629920990024135806002423326855203253436464935897752706903435988090388776483528114172898522061576657718974599693126904994274595857748900715017710280050510218508746333748028182672386637611059367212151178910066446038280924572!
 4443141738580831441736587686372497575017241805055648156458882694424136
256
97379292255945902050613210392317227946862868956199674192340073901316879381804182128317285099359198047059989085315255060611129029607455276541605554323462610167088128515203185163523305468450163097876868862516095539218201938430432208578808474078482365115168524579205376362858300472488949906232202771501038935424792067272180390323180854549352300215703224048303575168346141950451837704613129450220640492325433720823309566895789820800186133500506875378551738982296086457926134601229336427894129347237377241183471056719947498813255663024174855112544613530731382508017759590020575525688293535410332940582476334595489119148002630594112285629020991982970892267520245118222001125571579240733650574612758838238123948024110404490718897939017921349177985750287517112124497071036628890526745050625093926019965399546707668561456593004672173104967569904556248663389377247350889687245530867838193979741498390808700712484440614848824896131026973307385912498790374187062600105142158390408876123703653713520292!
 9487876505488851828534282484100383985536623133764576709237044770544344802824908862322096586644985919433631192058316205453101445784822337399509556817273414508503565028059306482927185297472128532388175324000776256548899011148468346232180460707175823781636211573793933365635143612655788243001838705978682745348622410331270982486944422546320518242977330631937828805247362772790102365751583877704457363802324310105913302522397460325442284253047639249936874122594125253442745719143579042619855980323554107555171796022257310079403792963224177855361778050880494963158738321286755542970688659515555216828508491818467151197608790723569786036462041091972064930041231501888377704583113976291870092380526818209787516650895211993782704945513992044479894337884842312224876272598929978954825746643485755792646037586224230854016062202312395837939679061860820207384862333850063860371679539464128279817191131196147821670008308089507854458132669548181663862569509252316482191782213462414175913354379790283414!
 2377835388892059566846197981052319282576652938328809119668761048185889
64544244022054274896911206933353455235173072013952795452161236905634557270256085826606485383918088179160707606613864195339075346310423163143461455149546839215254571765230176279071346702989641193481046862487310912905882869305615485501098657169943179483204002046150289224283253987204035091938364542056806579819349237779739923616433923284412229124161310236812384123094008595559439212389026101480024118436732572185669286852117117438957735567136944036553418826630321967371220477846139672424239343820655757101465210839041105802549905743092709365971812132537294532761292557160338115993272951200795600781120533146361127222089311501471925179535242820970463835362813237330503957992142571430996020339068800578351873981889314118130306073718915536987311697604985511407637751095130499113983932418267750678612930933434194460047109297871418984838011031102741884378329204828390622011459245419765221268914531787212145133126779878455604456159595249754529857535222154681714898414511138425081410550130854896234!
 2436284979104194400095354198478294098804365041833757195053081693362546548668506765948602108440320888369791785745623588814599483392712832581756647814893076301831884503175187702543381512172174738086474183691780511854271392830592551520369615442655792743340951740879029284689484767512818289936936963800520966258096309522447841141623347063886751542015041317535385000813287716280810470018834689655555443257656803765673502026726529968266884467810665749563509998596178894324430751583105497717634532380639058204773181162089074001240149200801923869544920213679302425802464651769831056714850197856958739975556787502966173286707949082756613216383025793652727117235764937197729881838765016004696019807626071729733871958649870990996872471749476111410147825901880118245361021522042204981976181635300339885999787260560375797598680307331475224756400757151879220164485890554090220069215710067763592498572399552763201444121684915435778005526595484999851247978090199909088142554531420111741169391548331482057!
 3828041454362718046468662629137358234966482875220896995836290036596212
94068548508879007970609715361504930307097144793566401490311205530808240950244384198758241647086058648990739406875441311017445035194648723317674626024900661157888610971626885032390425642166579301971423307771445355387862843251433602125018990945261445400526852137717787667494322391925935590651440122799532365738785963366718867982100511224848175402924750136695005047596708441801263734588010662253040018506698181097190490881302291872876366011259816340730258132566262078794293937730883405816982294048034393246806755200085304321405383703681196744973642664329903378153525502252468254277644827260490649082697721388698375592442072377285780670194840754825024590313667177787679458280971200747091410334539792304070212470478959724163063167939042624636533153824680278462999849295582970677703673617809127448651096131947837554214734726097785221422069774417333930237588915451744621841465888174063321925106639986263693688001561290539774891786922752271866000006486886069438433416956897619104793155040737906994!
 8054142393140342772120564176101918465198316227552484709378875008888303178635730728291876730356327135387492718627847836880270457848570870734728184365507652351170625675594045614751081746288865138894890196169187358664401789113965033124828628212773234149566257038143667039496496422017426965254125031386671549257792425824718393040622119315529395247295659610883491077311846506610853782237227650723300729864336816764066348271265966113355194054621502427959882603393437778513689665892077747703809123061987976754485388849348861517902298951335515131781694479389844805510160447538729346020810564239999565313294381811817949168206643422986141748888624688910910401578383578904647033850624225450915261785817209601549590419019808172498633323653239962035299833581288184440031231668441282092157103650031779327671655485926788764291194438852182338965094495108299292607756543518139988333500316594418749015738251515349117302529210911907594922425748307159707103394639477290177111179548387532454308219195710971163!
 1365585111336167799267450022545674617270261926582280969301676526353679
78562181504406855242502063277431207892459280730831609544932281990578760422714125469899220372255809419313290739795298469074966884973028286127683424450940254197334278386371332162982718868028770488590398165426651312217466506883903438805406628761324151473649801132256835245396445917788087746545702095388905755986962043372578858288766430401486028813478566777522316770085281567031351708699368722839597977614270430443387536740461034096265981400795953733803766082066807101929880983464611253521726264746148090624508435609183266233286147657178873670704326449642375583111810861353206304527313550133893258469803965075894599527870986867736616656527294096627095361899238083435232506453540653636670081238084314212916084893926064757504243607733700769780104862268669732720613130877124288380795136823259604935462698754785069760870906213944467098705043539971706828557773245561833859672584152958438809541003637976907483263922322696763108630399810679689234160825946605411965782508337910051764307196006691422677!
 8080310863589495491266601968216898487279809973651882678777310532850591912303608390383406391113657529384738732739647586951190390961292144657800965627823085485257649831923721384198581880491491408122029836664762563895359153095424421023811400942201054358733602176560751537841989836183058408095095792328872313144825688115900293087041948841952225155771425360196960007116347447439350056845634437690033574176028255491088852153239250608784485978816727896690263172001067206472074045942489005080762823397203513834604101168558951501894545922832586999099358318483888333349590571254321971399928556698368262705426927598788149893889555327752195716198846758409266923712272429452524398252383641763866889502393648767029318151507672585976784849233745844943089231935310651250470844594598229323390449455206919519475305035974627883356984613202221299389749069342840233552962635602769933229272508943020206397278510558905844300789720504880441292348947467288678389150262288852912874295275043556502096294224736793464!
 0352551269544793314931432012374843865246657866338104602907702516740675
225
47035447178168614852922458798618961723244658952819715140614101219273275694847104783728576946092451816916879953558040498412411049197574392925110095931428097659219158870146386551402977596012953584700768611682922644374888309035896186112660684982818072956009457321865073950634395701253548259150353689577146691650957644504336265125119916820408853488218399214903746883206389219583967718072126073278856195131355765752434134536657084865934159844354645376945359090314079655081066049468224721451838346650131789067411039280361890014419260045177269902946519122625302754503806032488518836047936463224990548258049577601974085448238309028870415973120470316393483654892654723025152908040772707730361851825196120166242493551339087586691042329502521962227426242566715929828930404311900679570412010084094782659788365032760310302848431325642110534772075835031460386175329382737617103295213812756699397374441853371632506355839050047644050431846555050730408990389269936288620469402695844315063108897864338252987!
 9170065955281987833755417779176288761977750252490672963806218479450140143711027157594365404088338258179644194308333085998477598891768522529027457842168969003684371389240369032563217458039652881882758186777509035040778567728215280374417828553924639303017935575994696195281418099816035856227245541275974536963753619557098053523451326657464468262355483975934275684583454305809159838250894738928769210297688742998711895415173204358065191585613271735168111490983541922118283470365728867448815599802621633472873434300014617603878659001368802558127766026346001449208170959073372666103607362423085988438525246934735966099379697569178349256036933896156460246531209080086702727847741561036000878975336766394492456229509234066383358361325146393239122021141047583736381538827391201590659474884818049489836365636223485421468944007752508002307778637642480862819102818203471183174373034933442617797543695377194812821564298546505610964355938031147766430355133888829485169813786387513074991074046317672875!
 9532365533291265947640487356284411750797139047400551332393896195551285
69785980204776976005252060680548352054715812429473628012190883115120816936817092279617805040894557835991309347632280801514996988913569688136111051402341987841705950776564048246311888590148083377611155237681938306357143194096425742267143549818473954077948135087788954885441300133174612510004307332540107531424253624326777980106057834007304622567359488688561912669235601232984355772650000647431975147022267052828038895005700215205390805702685168817909665359775812636888591476941979748297001132585765878572669679968003208967718995220502920349071802140169102005628654772960086926380272911146940147119550677284396877248732715812748042859781030245051328997441075754153570752061036910290943137069230002758489532125119784688464230106804490373289192260583773886130912107117705877528703187465304552555815403887856524173249573697748876076701195049289418324591821807077006224950287899840599660972843531403320074981937074803208342455636186316599741500158189254372358414756584357119349433485975635464919!
 1752511745608308191804386335764683071924141075004094886850106059961850142045861653689695511475873960660607619517162625250236781435059299927432365421787159533803175923627889878294913269018960179615887369958353631530305030483258619209352221459420820741303977987383790906406212477970343951141630488008217868194136392839249637892044245671039999528975670486179028806273423845473978447281935512811607338126327917421992832097218939696111281497697228426437027540750347640790134533313313245649630288115713553811281549952388263090680098257040325222482141895457311947105049339274555935132042065621536892949366468640905631095853659861276550296528504908502547745982156692951273711332174559075315718029099432588340538699481640996723253122460832108993175248992344381194820664316769432057280142533520526218782872148908350656108741927216443745740883270167599430945650145995388325564824040661128333322934694473822981475820213179753550555457762429632551222563613964468549978940344397493681610165919412356501!
 7327701212257496652664631173071157348366699751314182591158461432810857
87581342173761329838207675195559755419571723966422267645474652002119862782287820240364525990263546177059646470411832300096579549024871371179156318995621081675428352688809117989183270015100894309335022655098804172681489088122912870829521097664154447618330981136912789774771229802021332127465898526346719266245553883192771449991408341010595248725690306547673218555781410028384420588904146821096690543375552065329134232041114944410077245985564152890121622584263525511470785955532136098809328950696448376187763252594271087013146790767502763259873257667911904342826270514752453649423116904215703592269758532102311719445897478681723215611444092844987448122559723161679444150344586844820617812142689172348256874778766278361683677432494087732449489886910631126003804788658181342462107208455447364215184728768745937138298428035092082752117689938459491096246243754536774918274654184673474592704974484254733962575419899408081139888096178870114520143244990958695292621402193397300316065173591893933235!
 8754137954654082138809127473065435451735664490932758490061726388976458421845913459045197700840345225999096188791933984028895432356279060824936894154632361167752940382683462355519428633099565126369680011564888048929462661936465231843409883458602730585413338744627054535383502039757154252212852521282183013029933266179041222692387061468284264574806844585557582486688721350254173093712604179691242764813199746114026534138005020247181395569397702665136484009479262014589759138181669048177231659380550527069076839774618455309912602312300839997984107604782938514159887872479842239091437645430731876545189095326502310947742636863639679565102799543304550196299510289841429099115580018885576177703373467445467848761475525096699445065903373930150031316083832059972984457035801649539935756873406560221992121815670455920865803054460810365368880519721305776033697791282130976053685806300795151760564762996410624739834969589994916851870974989444093459835935232634681288025988542531965131635958944314542!
 0068157243560539801859680943714942865566944149003491115569797346153042
36866068945047000453891921643594562912220420454155483397818361155128983312621025076967436929855168320378541867742237633716951455530847260914293919256400680948773987875363904313284521095778702457216803676542536975566933769168937215968264275753744949741800541699442708567746862794334574127819345975089292370144992534455143533966206168461628694631883411638168732635660966844266181685087835830220172682727951594919629889465471415030066994178790856944502732408037778427150341385373556050507742961538376582005594222095940727751019318804644245589129485936453837844050159592091691809920932208512267292474920514401517221610979212210269157230236569349855124309230660305936577985029687173529133449972416296473482567376407878330294277507365219596517539511732842538480999346666970118541311640518949526554950081439314826648814446464020940783235393423612349538986248150164626287251406844154032324103038129212028434275834077158714583810420168862545619529592250289375037943829260402097400297659130668606595!
 2755327510698794454143399655516194986920940659152382011727678666162834438312481666252038836576254126699845464566305626956300524145350816449079591479909647782002448130287670724944687100703971599113759347014971086244076651521471989330630186021305048086070345183800627956418712285362423280665412324259297091097700292972121994744426228543308684127337911626984752085482300415690572101220265546980356715481577352519046914043093788933407978357663892407945831053809339861714613321315002679579725818962290576615119916240999193263215059982468159612035086196162185140955383507737097381655129651352026318952939243562395145390317544223633130657390191841231458942990560684292537598977918245736986947330423936923373521115413358476203818142692458622068160517057737223332996119298888705213003969668000446336718096923708853050360875843204027557567729670050070934456292198755900985174161171010498958797084469521957848116947199891507108449626352546703160579177421169382207722093235260057182342362393439411167!
 9245840915260616864130025591430568111117797082777361518323078893856675
090
92809708369331327427004104019029461443725910813483549170741047323029756221693280169277049193289319141114908869724389042049221875825979970675643926559694021381142671289816729574280407646858336987035423399064120619089258734901166405703082400764912261285010187293510024604618222568315323826198069982118384010719482289989607372010907570340147326678500305625838998049807198497734231901917472465983722720742108557695432505903407033405048224226143087628088834201672994184495616288695892134723418576797210819805461815839733317831479781392885064825825088189657616971791871415017060915450039966398970448413092125469123200475844245375100418446477104934773844112579849619665499434168902643712951268056230282085270878043999881177877526438418231405761652466193118860690405132423239531733139514493709568694609307469314164276161660931859705889566352596023775307483043131652545728120657912367284982185753474555387547682602700226624748154671053178253911427371720745827165096276400991584750433634318265463544!
 0264040597328437116507225403265136655394981890509934793798198580697821865502181327039315360049815369763298650553658774363415217958775612451858034830994833708860254890915258282377983668348739557098706627632980572519218791453602855717737671378299615779605186852177462472797744589456125497437428319048153508095360334517620186222460126046248802268144890302086995405340681415438518493965990384591117458690409573581466833603032345644628063430524441222099497111347024145602396931181520775528928748789363961892837294870079331117133257969760228398317745577545861299311051810723969487657942820375588446207770717323413389041519555404647557632702765338010792659045019913999111486319557132221245993272985911849735013224173775276724983321615737118005690929970080181244718689665787726800545551153681979719882684807894522754243348703672318842103520350485308724115445938475496586200922220756979932033803693719701186206867854194952555633246609115865504217061767650666487720230673352128712295728646285932926!
 8677061307692555141372493400192765224853943270059561964109070391620844
03283279898661939875924646768939114950318280834793998604665837250695021325692175649023887656152401852170122116212746858948178985028647447787288052235235682285203593722441279936637967428244839643780680849492301720946887777425186607959324537172908026139941096976765466340943127143436880658920699238896633992377814747893502809437366027590036462416130091873498595963428047847369567350496512427843588542222945033800113262003971584611455196041542091202354470533820147803874100072252486231838881937801921658210374416709758573537411340839395522857874706821842943745044891824751438878123345558634507762627021771657630862420917470500401708664012755923070392599025709615495474257433275765180189688338285495571322884859164029072281974743908432916254992336031309377259116244716487414226815761994432461605729560600777557271214775550282195708859876103086165269974345677368493453307531078550952036834215382026867636799048087551299768255483326900052195031300284825693688810115009007083340100905416054397050!
 1044880124123142517279266978094246624616089531136154168053097688007906225531274958649556987999188853625530061132458335482857506369488225573730403719252797800932401965754539426019497499777946963916736741873698798782505943711750613684512558358007146559799183227867154283537193419549062224893595622487235001596551595820360278287417452051357454840974327538257555219568073477789127242952528547537741631054371227392203054066316539460792954280119497228598688626209597057713657674576946422985856740408549931614689233548567863314418192212213688629970654031711152797921389343628299637884132778293950989205495568478674730118373845505613147815705416301181460518125831815266099326685656447494864272361110063990201531934128825983210736949495291608627029779390422363625159140824703432470368192463982751895269102279503149337308998377992792454394116047159119733154123209971781337228886015363032800532128349392282194279859554554166792585108532064032098488506278156616214881284667672704162016898436880694859!
 9100745257530198237645384205604722679798456326015055493416189255332635
66771752943034111901878705682235547120159829502893609563368361185608376927023150693340265942304195620459672440770113647316949691061304972832176408469533539206481500583501825585103085490348803833748183194421881309584774220376952264714441724599395934119070544163630797214176855938286411209471656201941013076569395469755996400829760053541886617882311102017271557302255059529033501374025869285427719746698446360302981411834518321932934662119104972061197368362956703341942779167623834154639216655897206710021103908596866839052817371965278139213450154756878629131833284334547580722012475467487682898189234688032497121578622185846523818179160338762205445026105352773016917736647808824173908844525891385240418917053930136056205025322890909131465997522304654649626487270505042798563552499956894354846562905335283890524074768282346944251242205243214604969115159950274511921156829136198777574429975081994571497877404754366466712183671863998593864775848049737957431031355610692264889332379418862103430!
 3009967129575625060330359032217667494155356337239116889032366927392379605559478222318350257576956904849957835534199270800453710290967308048719319218734905095783279092933409790112305095355177878797425730259126615147330971950212836644394579639594272143484791826563859652532019504389724159269468392524242186038072871266166423738352176839344656894225000557581315184030850597256194696235696507258485093481378292837221706822897942641654257844542009284748645428513828372778381335135819408279535792283988973991137735931487315643412685577389382827974403739403858089054758537646920265681816610003762245923078253690283197605974266134558262895200074717519866139348452285860670989229139860073767216427450218418990687512821051640714206606389587802832431977581088443726138355462961246061281033813110128147483064925001565512390649263760563155724150594446447578971934930991026680957081484238104884185792550051367684291351141125175793902226258740088453641633871277575302581962372271590742555475734011936308!
 3529254662769457148113386654846390212303691690580495406784173105594659
18598303503065831399068316976483876101199519366253613888976226616508466733759478466304203938446589038464883472822845237953170699411613641081944696996724440746928392364130567933923015291910836075357808954407226578423150840588341954782356879973662184218680496876430753139516367036626375443913518542939738639303504732241669528654384395492271047001209217380103835760953115694497464875956857723939594612549508301794218645124976069095855328481413039828332195744156994123083932663795175897709125491779731184593992615345221399614109834910618405773674148244441335724652915031005080446257502537452754598551539294860423302145828071311737531913940893517121551804301704622055447973766966747893173096271481780432052415373985016954090511688306812531486809043952323243760231622525043883668986857066165306618190456852747466558716177265851650734155065945175613667842590715951852649232661198941992769783302883777941111750144741042290808902366083391940652111393237267613597885389234282889008977305473363126803!
 3251710912983926148497000542686160299429609638488644406004910294550396652917023423634660650422229602109878588006944215698577053669844841086867310506963029609061934231606638748990018828949512561559110240446282053159377096842656480346033781731481405384504499075920355090644590990909144525972567149530282726452152739661221826041346147501028649224457265765754529032405471437060123443121775206577764552719001153953342505418075391219150598379852615733705162295441197030788874317399891457948253499871589694378773437376751615663954647624352081865315975103666897077758328386505752358050171402323620418208538777467983029508442338331103745806536419079447497062847706547679482962188669259068217600673139160665816078583284251386246833062603366795467912492230323889295687728947612151536396030940627653119766901091138048740549377875158608275732363545668580674906271659721599029921867086138968951373706831731568009195548277920465055777750668885211866929765211039077863184433695906723520283999964323963876!
 8673203613791646686795031121791267912049422686319695226494152603183846
016
53704509259257880042440594434946762285550854525566020694226877321894633390276715358202225470331223479856682702825245988012346839537763551746891225367881238189199546378441270332418737376332561304223327118444507497424223782661970461040111226532758895572384985057636480494092480401111627708715552798840790361257278835912414460810333685676978349582569733383995616923989000850293535342999657406963779502140851903006449547774735484116840551028776110864198567266226787228785939335839702878835954512635880762654146340514808297800269911581141860547629512881994308386653204842674055555102533227461342219931036194777204952433882117850322504622922142456955550033137758428571026505201688448712793185637412607277411417869893971542267276322865848616967758187395294670929434525373350650056960134607318025776790991551345034841583984675265057374239747147481254009357819535459734584707650074470973254939310359524408780242766698463084264446386736380162865119392598513341956303926559571167112304497992321173606!
 8489759175582631622390226224898462286579357279624910376403823104080481974942859270246321273900690507498877317321885468936424389420964928566442461752642327072727933081557155886648416319531614117369090813201902738952842515499672243034890237632805437291613982272529908369088924973885229959237754501267808873261195461636209004901045657272381218607340291854477995352899592119455188052138295626177408041273303794209036780753112567600804260495074061905648780805023437355891615538992746563307620080099691290761006320537323126937279620073905433437462210258995721397889190970317550197355937869240463611160272063383384090322398941891672249406584603868835991272521420089279274309866163507957283790514385513872952711298366789616191813948640736857942261667117859905140382347291400900979224913024997870400380541456406429066379039225230449217160958905202817816159901170435828913409135889439304950965996051133242944825098365107498514890151282305847215258025185011999672909230195341591046634975148097657585!
 4195444193866030102393289408190947927848078304524045296572175086034722
58594175772471071244270779869072099558068222519789986479329847328307793432374088524818024125993607628074995522310463219910682998081182041577020240378672352363041586909642813303646625339494940242686862576591833522241354102004887850569974716852406728657519434257062573473667547365031255720837472170777317324261128030775906546923950229067582820612767349847106351976446644271672093846156072556820379137520949039538816862720308421927493301196890650218554242991742579222620450885193664289287722877551300947736463000642410992990004593246677353137444054866848758777157886475428825132571024995835523050990406816463413145731448493938698331347774273521501166697679503234920870266706333426771215264880879536592993735189924206722511948073132659233435772079645297777548674384247689261606817339169281246359135494609645011156588572925382446911719755728510786552984542787165830234121111553000746635255504824523454104857318779100347623305884072578334984425498805845876271348453269204022568383164232223709764!
 5471405091236413440636195922050000387149001957833598078100859888605597284847911653207087459343563080218716211148958962680089733082142060670637691930990581223716105016338135993918359318713030449261801897108928204261003161499659858596679590094337472123334438951788213921316896137345600884721183405537041739088655022155389774248059789541723435365861490158428369474900604308895256061113875543858496272691509108623975548059013623804035826260053073574512487107741426347751250977397730939072528233632100264802882297270641095201052883807867694620371563957604766114500580804771764272878001313127741324430272340885129896856038315246574743679823704601279075780608924227128322264403079900615323141020797123800533820530512191173870930198385367908173470015597347513283321602546122502724867125834953157390056206935329540235971715394692464427438802759614864941292475277337413495071487803353778663631185623061534867577670632549018682958003825878848517645563087087772192083183889862253677915514040364912819!
 3327234646410410420881109312609839618401855846370235435946724857491530
90804859418312609672994066748441944008425983217548033459861740020043137850828618329975681776571031196315818659950490672379791787367219075156406534377644763062170576698567087492270750280876724620422535389447414241343631101664366396998808785733504534672454066921810426881156695438451339196056976913074521339412192950876911121752555502502270789147173800685423650303237374867787025583890598936305021008716646978571180516617315670294795858844262719841035509462151000546726532666861744293511621047567390241977309661472422087045241117074333885178666262283897595052031288720189523544821739478219424439975899983500607804123879219306567932572487287019768589246523250669611473973008800477104433865437226884395682500885716481309468446127095654313955754758050793514267563138193621702422973187848122776831895740704846233538362165958684330857962853761603136764747847256586609266766292576087452731246222355044158659706369989276817043499411681279792821296922692766507086672448008802330978928203559308288859!
 7853534119785021182140046842505467402549771417333366895230491683144437629773482720505996184279601382438264090054050050543899562203257694031141072966938554123861845341651357163376862041548822631196037539535157965115615791687520081674536224127084386082271549504444160687673507152786736164990684079102050438446012308262194961869244003083142930447840925631186320777512643059419959491771706413089068677746385439177938197576164468111066389323583618409159532116359788090633295173261028171014866694864396113101717553654033227890444701001976312123410764636362458309773268932593277419195714992449855964697617304672915269924740555769815934966307737547040710403479749755177108493121353924293299736757220293459757588025764039177569051215528023145210293130499653339373023200920505409685661504058680341637934252197386129365897185693312537414578482782700860598921654039560817318742975871919106932757121799520873208269818635984600672764338764820681561136791228409737944035561387140597390368679930474236923!
 5031065342146664191636140197023934232575269429902746933964408159301579
18795154429053346261410491553156884501255855500091332206111270101844350069521746173065959864168810938163042497608770615457839544937918719179778214050225790496722122077816023801492381294008546323714040529727769335214212268461859782117443585242059109702894198462468999523242239816555904667713228763619601838487431946537298122963352740628643961041759162471820635419743568571300716754368106285383585873611414883279233104600613445141308647000247195647216798552823676900196362140435649853331976888064888620020461779025580227094968342346108349257247535445213392688736939312898504859588223281475103811888094604514397803692352923365109003413934584678504122917413504943706196058666194826656431821665662964560637334750932895534325174972737913622427082393564558244327306600773155471301780840169319607522344183992270011897688984844635055266072691642378379008047941617684334383228458537684138118251167756383889258394020120613567446919670757527804706934458182769157795686023249588411602895983784051152559!
 7978388184102901478476234508967028966728888964765797782306997988192708835134933044589817086468179711128381820020441974991177215410342051654270270319998466349146952076159865068488522031632873225903815064835501000845177843754507436145059221942402418726282490356341265264311926550304063202575366053150918626942304009333102482986091924700441157769350573870042859048669736423070558612735640205404826776438809032580278850876909948092573290173311716530546783923878398599208449494428235455111107556714179415670619711986419956408981974696503835985600015377631978659426847065320729130183465878244925078198783011235042612991308041293778671171441743649417041309599842774961523852311952163541571620418554261725773289754274896425245583690080520697198978340532795249628326415693415613998572867309874226214028851812860019084603231750133307807483123616417826138051177933714470414812118995919098022374678777281289045303579959340056720430564404493547802696346463971915660009263686421734741176193906414540231!
 7939063173828518903652398629007099830986252248923437122606098581030409
576
38851092438950976336494774858416747664414121044269967768519849816506753795395453287080549905298268091627341027240261084195694627375916305703069360493049551760291677145256732350336713095707817696108902556901313383745115817342608720809197689623761582472327996967626594917696890350001810871147385743498364099092793369454718156290345287008933177864626001848458350275093946565743519796624693962789671332753001033621670580280602032717455317735493275712812897223016943175659529582131377364076503258241209583942276617489875728184847630287518607461981595309145177675376142287815383246915820396855647131870682486414694355434186424089865340226529793504253105307455647445859877651882708589209421996518670330660554024323585305741249889718839646582694981414032729680400985674094472202944414410268192913411094218741513282873310798232925145066107827921012180103111970427769076943035449752830570950893363533333185109690238906980629357163430388150748514989827901710659364412707476112985186817773137047234454!
 0374560028621916791322136578270702407950996791418033482196255862669519743611248846594658272876564498977159444421182349275517498968274483846421554452254335777101571115312646908838680103921379271888579610984245440176035892736009257986197434102460936289896955972601919021738070097558023753808355062111992331474090884681435199033503297762255410262247665024469857171353572652882185686112393022122353021905162773569741286349835408390327735481050807116389655729447668457921741120944840199655614355306898308612084948698645171066737076918157254460466820282052648523358699249990805955192782881458694136822989769294696665752303826034310488580760551170830091971011984925364807283615697678187742215071103739953692766152452449653509100345288959777029742778854153397858810660715689492621308277949265494362107345696787855068738556113335206511000951672238444435331586671798353595357645119668095745274000424340154400490626661379629574706527407578371460940023326556772078370794501025269804793497599536312147!
 2488812065999504473245405295694916113543765127592357126014280388914399
71320628419546819688588417529292266886442621434063384323544903587183699050534709475844958153940545298839146518631815093973623321405450969089453531162350231626454242878880321886191725362579809217969251069766315534866721289025535342766321179954188944080231117124107891063911791380111690841561471043264120324352019466878197773271630704885109519004363450847138672677153789281655621250931993308461735522700918562419626104815284640455268181769832360332944871799050874485624405258466705707820296738438699369354654364564447230044536227375266531452992196223098811764568067671397854379165847320950469443043848837077186501843256927011517134949617369807824269408040645009225068239337956837176121539057082385854829100457156285405230944770923367992115848871886152442294590478039610523547752945184329182177647040126741902556257847710396875503365299622144881793526405867813332621592091349044189412312552153995977952657068257462407649548661139248146700657227719602495734508058408702213078799454350725560360!
 2188951099248370331300766185308525391274076920389698099676917560701484757577914252713802209415938774884940496468312025721533555806488881999490244912487443870269648190456178567151821532142145868896572634255779575626527006292978459645061748964253000210922479818088894625167573273500296771470503279987579899629127928746607578196479484752392035222645594063126283248417539754817457010657092602259317232087409327491400979781869702601437421478631793853130815571167180161841988500770608288114464967535146217195521385239251104198410816414048220442494178279538017357430963694436495063518748203960509107089209844314167840644619109367713615057721430047516429278462760612587932649555864471865902984818220160210049977198361803778211895956516892253934182635010371363211577812146023709366910632191188391695270536319994253584490860239808314298724363262584106915366179150117100345827398845023001900255774774312143342156091021425630047292952168051282215647987913148361230334611027752033829796984764875107530!
 8620962846476786353120230686050987180875128226550528198916999445054582
52874274597063402296033568538869497993828280147109986008705956848412151964733434766337627435135600524136353719011479120299222531533188660251537706833101548890999536990171736942984470666770482793224482341820656742587914678111518974774907255848915546647004332922203989506494527707553293229942626743329882814282556896573326678657561933719593908066429191475031113284467514873963577287934298975641336042658143050921348136798528882925725159524636866705264718983961963598492113415695319863804558148479071780907869529272791840452294301029428367110839506348425063820855586539232765452862272664883418507487413938549307417630279555031029081367706943028970120253177018494182091497923829631656022298361980348204057952319381326654609721358839304485216628721435257511372368450592929824956114742268292183057942653346922593252263720317019199984476757154104896916082005560929388043856153939388610800038893141551425198807281346757093933154300525690378371445159973023442914505699864146759503031812715272789425!
 0238346672633173337455880994354439500367756703109190940716114115405573408848342833535993192144371060068593660264699346572009360316234442638215142442839171596146581317424731705156325348237931474944920069795480164682189884332759152807095398821268398936423181065489044804892768489218547106769788613503335244981138616373957310268025164231339411549810626704975020136128532716794506413100084685100521121363995839031402261910807289909816307020635413111542266607869548717738202141054740140240326319645639300962185517129143265244274594414418275602144551534404540028743249577705844940809840330272581809631796524917350701494846684157254659289949476236370059804890396576313824027694236662622690151478947116904980254949025258782220685372604573303597309077583539317030888708542349531223031802292879599064050177373344213062743143128615220905180899239090902879120512231186846024133278609750024675079171260577404575292564364823259159993166445098901914614802860025482343871969033739870536003763110023850308!
 8551562739426231573907145932473869850297213477822607116809960060440749
90934185340057217199340913082088234123050761235269621245455084222401498616621573160299790401496699491727462378267301789409424959606884377389474315405894732714701696198582509128215714053085784661918613228061036503420039013081403792861284302253788112844894688305371033031235700434623165907687630898083954159168520545880947623711927889907467857536699281423524704411716652528910036053775597355884354254237465176941851447073145254768769289970059546134968039738232936238998019862056505624606681310225203680548324843349695689653100385237546675878567994009464253726661505467570912987623619267008359876267855503028630668799392265099377398846083906682082066230124612997303780115748296449826052470590020138856244146334105814533631328256053205200592926480830313212035078776629584645441891695373424281390351629291422504839036261444255735810748683489251853965653149819630557124199950351323821951186967238151458339349082859755991966972170453430432731619357189676268639789788684438861190418094418582586957!
 9602634563037552477583111543114762035938698507377670742765108248192897681013385969978614342443000676843942075955495740760932501678239929600457403577583331065860411555508146908508483995958616766251290531530322439401172444887403452240718053522187971473853132168896260285312534875858556725137078186863521169633110572031722370604678119508611426666560265806290848488172315565972646242491374667624461437195284569352215618440020898130159548600299025188585073573071529323123181318499178936373414539913411022035565410510107724359860556317482778472401379834746309724538260700785102526381660274367109349768677960974264539232419633798976824844220980191330548596452868142462908735370534116434769696472966752583007869309307984984271168790440833818632677597338032526824224332968073950641806715656027142682112303123429485516536532152694576106468247007076793291110119601654687799208741506218692435255860566081435007054636572825128990898652988276265682300743770361058062226645479965700376271442571577258126!
 8682546629468723995640650972832407761438918770424976762342214513091793
687
74606291685183902468031364398974169613588291859736553890645775130811934551982918149128457651522996407262983389641873938024632247073639276859512913289625226756903128989820889247134957014294468682265559575277458228284299728097773832127325305141699246552250666146559135759865547489426015712380877942847279114372236711153038274775334142424071794886020283405775938586047439950943326511364877543242214726631364859057771943537278581043718337900951798179631135089599605570568421753214407989559231848085248780836755006834594839342478328565635247641894933649224929770885816242315020491398043590449810043149323301059449024747184763989316316844434740475056811723746439216134318381268547094021092795718799369313860000384685143684582116680021828201299917480926398909895665394058295888600282744802699916980106424049242658107592127246906309924560742166116941838972040284553170733152315111420567850949657561203900768315674762721070457356617187840296262487211591769263270635913876784655361999859831823045145!
 5400969742685037750120083213320695886019730512187085418438806108838143347134325666897926277024434199218076863100164857338404082407585399136557908117839085420629330681229472933559716393679462033539152709063720694673423381513834269471410243982243883086676898962441571506447479056693233180852464295629231016005111864095688006805225939654913797813563666278658482540460687315167516856587130530521158705592738375347868908081484472246840335277000011912546712330388861562966960158721813302472824787916219784911643328606722244635288310532085836045805147849852094422354984713141131881735244076916983817007803170683363615105313355153309584662365539260080212583362096679555444629622348692244319084746391935174960159592862044537991279244395476191279923041584432891273052169124081319234088661680918543382424029454461017088275160881042747219249209453946970268602852630794031070690991309220431159645042981910857994426090015245142428334158154882276758200364152510502790358004805342809230236998208941459463!
 3169359389907001555983506446908224449861971704430762869320144595156484
87770125948501151405397979633930100438405319067907436471299584718332138871109099823566722126380548683874189401010754001378810183931591488087478658787950015155396440761625775081863582179310117261440466688848182194560440513792488319715457124384193438967247551444236658936471851822607188363875070459294519811236411780972307434095521941405244642200902221666865483560810185144317155508745203070668135820388435215498794496039494729606547080639824562739470639744064051378929533572858668999008599086906703943434870800817607140504325690320088153694716707609996780837875260810732992479498173332139531838778328235916737012583124289064735474215088782551498414142350130167267508217911100255797251742760073937319214210392603297081076981905898803891618138257991444343221052915690578788474582111038266054989466937643057282009457407529253361163657509360063673498502843887265817107259941078493030813011758648611583290660573274270603069996948240058608640332505107457077136203520688649462344119056316806989240!
 6954125655639819424718889220352243226097231754888531728266773910375723710106739337663808981515842676046852036203672407891490187927355618076617558781815383071457220388177297187593895662961497505678534508134597659282837182367192431400974105437297844510162575439587624579038208902934931501481048364513538889280304386036901642658923162207218966651935591627497955048009255515951904618606791880818722697029796220208880024877871779125810211789425072761319795431096246640197720972322610026863745530018619088598256565626527936608540782281152515511826170482175695615416278513963778247995239435931246975243690592186779426383330733739209231890347396557573966490982052618777270846169558736145592952198126893316443382397314238472615945308852540887188657764022385105108797310172252284529976947617375824995263247141181730160201833111918112228135088569821004818161146167604851873699956114717104896951452849696758125834536129780347732313296535965223906335742142020499047977949714036872153280706435798771212!
 8372358671861232848101428938668857037620723484479675929144219538642201
21082077988765511025031152937169329199651538878042516256025746324085042288449977623894692696315286572937413430169360076035329369706417827787737793065010569739456116219240336676403090783541455138316434889449979237557815875014455206486934713086498330073898088056894346065207348759524887381452856331188696637177260653929012996245121362161821249758551092460860670329278198602652523263228264835722732391838349258202127593894057153041127362818836102715025364815499370099624982612448826291798672824976494874375237721882327023286078786741446467607560018209489067346574075767645525563642243021209167963726132117855243254451672661784549610873790374606632941769264634585023927554463003063866779511564310976617009500805367466292149031922893154613447952205175673050782240665412164309774725130449522884992542381654379640699109303726768644369877159674558387881782369993907291362951135658592126247060512379920709844530680675102192359762580382091795994036229322416000214494830694988847984025711575886642601!
 4882617247760922755278249318006124546804432703694942805199693247405676562139868967945410457780679381898678743896031549308087544850870841396937769738770431774286581696401871131875555139837434149480436738506910996892834084554865883150782980444429217813519681652065459628859248994721733329206073700725483852165986589889077098835465950445851468112519578727298313561434878739357789016506310758644069444839738465088854412407993571718927238760433926754142118240462413909054293870612823904674491829046176385817767365973869331068507357006883922614400496752244109439386794743104730175735221430687079113899275198337431708032830179968893744273125215821356317063512194580243208618521125215636094841086274928276882562501686289940598158930419958816428678871076201109560759741287230522131712605071600536828028137772342999917730050094327364174874089319317228940480334599855226410892982215449118147136348851808329524371156096051075765109787038763128124395958783094617349039834758336946605791545220589591440!
 5691865609642765085245895705877482881204132612392858948735235603381043
14000357289123785627432502504636500743890095572740636949446188365286660543726152454172205829830850965936482841958696169115725932419827358324585383144016706816148734750861264875198978077618791749682700117124818918466138987978076114957261378239841534622457347391337669061778806054634749248021501000162411212171394543562120000272927378809068638911983351608116287091044323730701597837680528428190952153900899546814560480934772723899921077127088311999408311819022041478882923964542865097988111642859821695566288129031070650000932023736562567548443741799311021817623100802014046166684899134498942412244970191755576492854239923972482065041525370392288105886341191972034439414870165759984553384786876567773477091766714680382367313401639828407880205349546832959001441780461553940129223593044699854458941497443909752401223342354965425154758972141848937914350277894140168852816498143955298295540112830729059554776122500088200251227256136937374376926594900873746044344756874791717024790073562716781833!
 7666364901040589004908919037464562017867738315369910284000822875981974853524725020143724210479284879675997055778633111140447469807882752130953990808031170918739221378473632263320076649516350510825897887220534451471505163639234558623587477446622427362128110925795828761191662541536846573185406772626628180746456123652705702613999291616530551980465265030554548499179403755411083989139053949669149956241308657657440203839651663557873061789061420797246175671478853580693617001984457984350911655102002273651984534847982496446187446258304767464826173612333863217678883125049127792009266884842381818548089727394461806922746549046732109474947459117309631426559931051181446498491646573488929909562360569180745378234301662743162359500345076371867998693071862950698331108755676876752095740314348590022881123782362422610194674169308424929581882290971159753012490415058393440528022350651030862184459727403529392769896469538546962372842851718870062273433716976454998828682355302327643503763520442330312!
 1918594735894560426683544961268990924013089983378701351245239487953845
969
03934247060924693398335944514283381668768390601454197079224731086282168592765472336421218078738429972932575872522741969211008889948349564227696402311427539124474432419589510468682513841571172266308178034083469444691605476793293889420433966208647272271340585034694769837848111659256157715352284042764824972916255731478640882004014719734509654777030128475568141016328618137324409859068562663716058890707199676569693695577718697000834782679846572398312806248566411958355946686463368241014706634969054555589265162962210076841661897345442324855875315765411575235082441977440508940990094515586829666106709670902421885672635130220769461647419610124835004883243990996858554186876677309613636285574990531672834279055520874941700667820958305569962494777334336350713831665009160994458603070199120636209472616281628154305055797300197875513378835228335930191701502437749238293956379358962954953801061735070050621153794116136924540177933110673136807906291585771153435290634174027337465251218836939159355!
 2057152548039141014116076073493255128653224200668287083493294702711238230448191080636701705555168166051617085257753897094270729668693022600648965741466207261504708613737237246453254378255759009256753842261930842019301417055445797375197530047041686118589733242245538937939958889725739655857866212042113770585010041536324733806348493087817055660615334112886073767434320714040687517684530102491894478822892467092476454535781147272683411981251579374793859013653631922285377259074594948916500890635310373293460482081275476655448033468975099417337722730080088351386612163960876950803327744632752021123833663890757017365868834071432495737637613189023179572011933183468407571300355600358910191442671794848640975070348915715578801216721948131742438746984840193683550642575388859536354064578459525802634894053684852456612071352028218360912107282448603570984859862149911072056038245919485982982354366474772443187443625938524431934988597695084769983030114427791664023536244069488936433666519120633002!
 2706964314289141781565157624136606794086442773931508764532782000051431
14416938450213602453859527358241280822840514800724995059504215819802203211911703806022726228531527782250798281601848480446388454238187782171045347616593762607297088842176998044060036095071630593792353372760325679084296637714903184469807592422930615928875788093754556644160988810322733243261160955215205586557288084122820000875492308382839802493037018529206223877098770427810125622682864582582074893745065734680589573571270244699330407523545448638482611794977490652298806639691549161945675734171741466566677615589130228517249374989142315440420360083760231932689109975546265851442441306916999881628089074859690483068772415009109248226072211953662783562688880666917145514720406546986724461341839275466663949242227578726053861942662037939092649269513080814316765928250487647210486358393805609309137306920848388137756273064149155109110844125268842822447799765828045167088789610015596232545784169460313922987805452872155596749804085046227082625986099215606656776059196478661965350118610338730120!
 6818626988983175553856349333496203625458890583539704996418141434400220806029988614134685842391393401535642324721425301428591205657638569356277624708771726378207859531814331466842886144057787948439418544145539011896337566375370590242787878298698149149790489982181020529068797424909942843227323929273792293589493756346044711741346181187637755675531713533286944678866336852529977913388840625205355767274522687590942502698802623029029591980071872715439050757092048947427880811216175370570817778606572327394436896759719613240934977338071774850676806611000249709483177585048961316817104715760132811599797966971179648937493658018282931468853266706863564738459193816300614124738538845590045829273118304531949237507394953597139353273415735585162108563929472189809593934148208358495693346918311894798014433218146335283910776628884496086869637826510737550363616449216691808790491033399484824422074745087379193547456961564410207232332009042650394967045947946721723223141046197781792322796891151603338!
 7085969994751284280501000750793666686448833626725037759025211026258813
34848928731366640495934702802062967005570773406220297557733498918427780848503294924150006562102268729921694084302378690711214874594089050476760915559737701406543115136419939101532216931977506053626463245629378601040851025972253251730926509659234796949922483311768116594806088000826189237040594980770400173967458218924295489507168771331001039785153353453147106859570944506053733591953658617196314970060182160151167816445877799372327454843702167196983240352158951685355139247820559128279615349166301514580517888411480971867069842722647325396278568856218601357551480258411912578616981540276091270507419511403965637928982882852274086014503953521126538953883867793995172958629270947841273911524331129259464000726134649249972681810945151440336063005287128811763455747440049685242334339885902991306423665017309231172549322356936462708264736539614701936146564880823663856871274311814628024296708416102187589986096496923503129824468202286241015811833808695873215776018223789618015767799892633527484!
 0895731040846106853771869639844131858461150414828730502311806695986341793389531746981770668663525117787844575853111495225289209150428157492245559138471133042715891355341114234956673240438530735724622868469222840837937344847060291693601399304095065459619003081838025272825630822093726975275298952076633889581100393467050195502721525407078422203158690015995130826384841974877768499169239221965372316654475744076410100996506171262795901780988192588847792708101654593733253528412802007575104825911652513757834010089518476852491018622117355534863696984157401995560286512422361874058340908447687897154212595303559132707207606150897381979948118563835674506257294695134369167891826306650795243115582636437199760377444620187910161354244770062736476565491962676164446807721909229290808662281129598849247811486715342571553676031195245475615652369677038537047688660469802138524803056117638206875750675813641286287801377651406190726700233097845877669182283339165129078707608669375171168917416276908095!
 5175727969805201682102716262136069706041609156178870530540720979768493
02663763896866273605011398898836733591351396031547428897471385416969392931830868002123289632959938127165372211852951450167108432074694204902097667007422827466722215683386341302328609110460240156123049845591409523921046097565436483444615085503749970595533666022134626048399601227327364191069494399224652457000523913622733338328497275573933564959431552309012332305634341523510569628228677882109308461215686611444387076095828406715187534980897143310274396702320728683010530558547406112071090359352224531897377489287212239388744316548020903900810810885266922772461931438252909725863112461577955027598220706166870804876950054241987556204669927466398863934848684014223352872821444039547842289174547658271945439737217167460006085368620665973430515242833272893912510779922817171405917223602073852789264208037379292786435578021158357573583590602073781354710814495049045918321175530154501983683585986992326799363224360435624602028470500658345386692633431478982991467853814916433293733770647285611977!
 7547178021057206562416780620492496050681014505544400083691585386399196405583027286332121027159254780491989067089066871512194349441699015818121629691645296566728882261734646998743806066636501254919352995156342670614836862978791948285828518127841377026940221675580682835676215271251002722532175501175391676185708244100056978635520154571775096098390350012825128730291388517597460971546374785158162912190028421493728409410165155706168620646222073668955493931454351822662501773714797996892061206532527541841391447611392215213461406928641935582165447967025369448854441712394333499860298027098502714181595416780254324505451516922268832227680705841685710882489400810805982436388069304940140036054058825147274558825823285297655543660060976141881745439506835189943064407677097341582749754334607411032688819736325102959868912713918327323940654677652057012685602158373854658756251286737197305200835452057115115637967152422854375612319367176856700900637354250309455101918511962299514032597437920935437!
 4209118431551168349851325491586543819283995573831259453672482506711473
896
29672990878885848882599701074227252504035481804962852257052082363485122693831562806728367147435055983927973260668429507263513827510419746889767672591369017306512365731719532431012869561072580528336315890095826698417353963848720165200490649064035498544923722942741837841103308077738694039345046633322001742224053633940752750598293574910869881854105227312991022233397661253324690730080270049025891197866095461412213341213891962638826661786556146344210813263307717607866380636342431909183254194322747324115237704877561380927960483576499695368748511308807062476127325750376659107831658785768550661988397945830269086027019641122022573660586407392914387722598907407359876447331552706846619167081990942108608514033280601787851430149967994736342366222291820690324453015250155785760152288473671518234944926548288571797699263163527538455765576440677544890668248996613455952180097814220867268863056429154013829653468573489967197242017176041456299913025141444752488487885952192226843723645329643388078!
 8511069933976961277826916254630973235354514622641376521392975068099247765973472612690939787221392807455856470999815894296685155627040336605876230534031098345932290012698322692050220158143430280800022365801546328825529047068250736300630781189568719809407671585126103344019382962718808600861169707239670394318126130974247111717901985743012399075403547165062880512649200956055134533362029263066498091540875817634021299600161949111034937515765588752482721423767972642564269773681988908821722699265553049872479047981000650468434265519305954864635159658341932560199539427254246373171515176352439514038074244238577247656596152456746699316286028264855040685912246340769663976942701366938829185607675820086694383375631459329417145519966697728221814706209062034976317120864660306056756149331091673596869262998033651598521300888024046181683318608779296650027792213476011617481352000602598951502189632641538513117752107146410707257793497182252726790059933701865961579327800661769111831676147157964648!
 7410695224537611456887923115088630362384071769195998900356580754727010
71991664477592277306588961119394275860246657291646477829595177925217284078607443295113156581166361862904473631555156558233734102054109705539810551185877748472553177016945619773274000762746629160155781498938499154800670015880287271396477885553340501525788846719648020524672424493955186437255844099960063063002898185781127353194003444827534004296065595089225351860155422289176429463530972839057155251922006718225204483456957283024858158777835437195126859654267081696079823466167925926073561893989559028954229820069011350119992783370576175407125834805827806812389428561931111141325049331642605280233039814169006798898037376032099516438489058699369606830710123179615266924530464923746322846279908242334798330374034450178644803988127559225902046536608469102137948423688814526296968662135664767020142672532056443503131171444137713514673671697265452265465106144038202743516102254601111621957755376909012981481368832862481603668992773908339405147143384874769201164261948192396449463200446384746884!
 7911151704484391938676530311008242387049815245204055739620581831624869450329535091985805645898908744256831229254345074737341519527423647641802819954873173772129012524214467540429458554024239064717022570044642487593638766367067747962024427680943778548257665128437769009314209866607101870293385933104377328530343716889518480254779912733313963366725069762400444399984287154827354002136228003638783578086193032813099949059658918893750753834426925570332089037583246284679499477201616184924480670726066423943232192320717600372523136002600793811788852402504577314925350249739942544051399099724277891851189238955567249088332253210798862708156400032252780315109766866228334677738349417461225894542098000029093296907437726013869091027914062598515250597766818440107816706693400075149348285405556143047553911053314375746422948620974467908447587646836317892773085988511135509579474495421862986677496696159474444092731132006697861138085905453176264945901678196971498613994922697223384527051438093895135!
 0464437551225486111708913966808936677797309943848808619331909104357860
72084967307382593792396359932847510040727279386262716704475407571920250393419197254518948311727902461404966895517907998691025376489096484598167090171393512067828395799612263119733149133778183433841931852367538662901900463343328532834341824921071916092767308013235369472648489276442979870681125654628061172604607332191763047412150640302017893205795687605102775250530436122270960467584531273866165214241940868340837589140095114133929545770094731748116885364094183528610997103416723558178602823498202031499867940174041719140283936210519480604819018245180081701371042197459212798404024268963005335536854941640086392177456769534458650883286298216584601645078000035989852129012395900704202660744988785062717607762225506063907453194771889250990581009367298919540995766335386583780980447935377991877121429774619764094727212140235326551777236163419660743763915386601945017769140062406841273162958608063506762937751252934367596073427199675135201580087373954838973439901238256568290785911442588285213!
 6616920140299004131462136806323526508654112180847499875844111836290979089198341187537664960480936264893291043905977256329558138877674469546181579787041915975583350003772867246073518535088549546420293097158563694978576404837415055580991884020934333351281955145551857333488816491676944277824055543369773119201437225415419274505976013798414437359942028760525557189378041148926125798303618380107711005004239239264415692277900570279474013649422918479336925354324840487802317774451841779583558257547618425495753958785494583430848044173708798492674195289323031489589916006854228795789294815900068735373333333863813908420994872551172617108729440888684478508116345585269214154029967209886937158862322203314855817426826359506893623448134224737869394609232566007547212567414103421849013118963967654732916742471899342433028029092698507522949079709443009238672877439362551113136287615919738324134916722682612282631277938117508074089589439719002542641266494798017644201645415881317601897265962461441391!
 3192067850352463830657764016522973204708920114691713372287863037038453
13419426441424966498447440486177385135293731080998594728151117365071913988126930748269061403928642276627849432955882859383721484750707783551198962249119558823704506458200561017020532484449021502294561765561859214574399009554822941375154413613291504304691417994122460933816513626279028278842138122077589424038840622943317279892594183668293679259604224184594177065301954864394817033552410287470447311715070347750834323733311632587672763683468584448656253918723946082732471350044895708680315032503867640173531507940034557285503700184560276996150615682914161170610461617408248462670335189152551882482127260072595765678899125678702014978667908471066310748764673098909147197987925985906257336497349823503126098309873468616273935805790735490824683049728409773238116708249151637346808705105219191762054169882625476054458177111799377677869654216992578557720426344244304207449548970339043450720611900769736351740195265632213928258312052824003746695459092804525968798460814087071953425476138836335351!
 1911214414314850552012358138062649231353833876758091889237975855157320365883176242411691675238145885920751640352366843726791759063705392197981126597708113947351671962999970520901709075898569163890664270423570074450277512010490394814832945744380974626035105789819540763987060787581774072491184506978842994138342060812428390148814872599854181480292949227878324356105549156410917488770670678201198591095890983868839511718380134914825499274914269855259517765361262421572662448896096148297970308420210516027967147856159406461363824775890201102519923421532100601752302574212237542107495918728675189552155329945322689425188409422826757744222275528207615607277103947182566802471066067738312063031466284744338620474325956850568928716265329083278784399650716724220613829453291660046380872563059524153288120937009922989600698139627968627956763519874182401856293198492262333643189930901704881995258827338807953265885144939381241154327320589164578642294526841175188081840509569046913813443077848902114!
 8797121162839773443054846149807935624354967141294733326664224830500436
445
45470274917232078399565086801876173270331906565795475395206929252015307064350471306881289032053854556398799210109566729828730479466100543163584623448744155540713381432344131178842419601903702868696242276246502400420813713504640159934720532755679503533906712721617790603021623997804185763348100544838870317307162552564799599998693531968130101562970978711673069649402749166572674943432081323146138869255334949294118316387788990325940109341115727429801331814578281687913514243955787342059156145877368988080791707114551154762661682081777574724842787971298154823852036895916524054373052466728731303019258295249876393209857312091610561357220176392716995986861088676061338436496169518654848604616848482407438381180741734222448394789399827801473422230578654102177292648209140948503501322415155999901630714781485270516144322582547801434401095336602393626424931385229405475364168364670415743005583729847040181455710029696234698505997788557369980218223035492383187976298941569772123638440889178927527!
 7528471447762189205742545315103747997770686236242189906303096282211773219708230347745455060238585911403898969166622077876832601239617419997623655063632660169906611689088687741333780919516149770549214171181911014954347869382062098082787895731327899060020863391127847153684304381498150970304770886881635974192534134122191396287457810993424832714109178276317654209631250713669263658821357511998754011579028028507806698333841833826673945536831965657170319462933641092726672742449927473229138009835744509134079930856836048467786653542105866800521154264867497239537936421566535872081855412598194547427516118416936625563241935915856950889053531412183366239987802211504245660015023646910815997419202544378736102267129412282988880533679439503294048049616771107287881031614677303715021835289024146481754309549059448875410425016804069999819671937982082773346485581585910776178828497505468567913990401138456243604035744024619123769440220076042143357338726039253724664089664914714654730072195292737417!
 6796135652330678042682000242307412186674866946280587887873829952327805
01070661013854028801191385573091138057275589368194030938071886379375821544435162655991203087848205239374935189559715815518280481480783131053509682356716123550963161528665857859019528717754642506412984945105730353324334890979972094572917009587840832214044050147411438170956577125267157798170976763847864206487613679394578442385860356496644631401310486670561346276901749283229004327112081922956415894815282655842219261890253051381591180342310885149122665391794481743390432270050687428881996706196068850067332835361468049859608140287911963112748254664043703847828840079815791344523210166867374112129449681345101223798429402194794691664815031243187396911960215671211422794306820104087675680937389820546842147856014277688201880717174141274936746781751322771090467300153094677730692232909534956944916011690468181827234778161975125727851535569861629220291884745302698301566387491770219476050941748668411972766044408548329750498907825806153902003010352180271792099508178391212339700700278329061937!
 1336821833696154082652039271615180227915286407683150329974060928048310506255157226287131327681824780116915493786248322401723837072716088641929421181718564674811856940087052996113141059458293870330528629791882649324742017955124423294762903488349527229283080401222637227611027520380012093752088562406453112503726401539964371233707903743951203202853502547482779809303020219663250932909448819057451029852172830699622421954710165193932976937065457633343243325643313639122108352913555770081265053979316468149451341207512188350547396859555387809194737465662790318681617136416152155407745354380414798454584063447474508568028086232412696939931122964056032731092793849169187933359614853517001814969826164800344027822813985879014862852128674617538485034806838652016807476744021147665569643873967579664429588640957755915419261507196653734108170649748222041913503522393203692779239073695588057799755260190308143550849247598185779798029812641251926980831075657465946935112856279759057800341932347600136!
 9611447290131137293265188773146721410741275221010515155865713493912768
85573006456556663593525354509457378968835800277072108075468519790215677663559608589952449272204977529981545862535929556885865521908620348857429443548834017661683055326602458359944543309529736205642829474539664101759387807875790401431956726445025653896405200714870685370656271174667615719181064228046438268678064178170171014557998785949298102867487747167901743550399316968352859211648148786128628911637599276847108874366161776239309829498234064137828071121741237834222414406998486328823924065637743898084631704339814190170417704585646785993494113767101851048288345847591129859911326180631166520977109326025457776640478113979812027396279052178079656593348303196386372636054817261754402626843572645147411143619747488532813525432313210406553747535609140513357644845126503159949939847591233867625899886282674242141065631702826842027427753547852784980625547796730956213501075135701081437671209736106569338981128770064395086822635241957989987524453151326843577125269551165684260624979530056413423!
 6794032686943202212771552845229455906013166300233297861842729369705425640895722473147960842279960643121155722898884134069015706079169855397062706949869226131550595458162406654276265360989882469228424022170510920884522641938004050647235141065446293973629500626870691857435034689078702526688990310590307332020997707019556267080078421417500402487764369382704966754069144895634000929852354991296996046540283212995128817182931733802589343360888639561881453054936332102246702371234907974068125687248833528018208796868376748932865951563500158437345427148615342497125226151780864718350199049932178199155353873785623455087143139050384328696513876903290534015238428243963913256867292722487084779696809273656042151690402300750173661949935854471440415221410647497242161523037246612553017965334543540889800869016307189158808455522198431157422312945196703758626058776263336684850752752847903442501653764916331792832073572043631496293326217198412041496939002157898758405506883631318978280327068182062011!
 4709707824647760276296351324513522519224278604476601784554635868956418
34408259553254334088710161510703674682452922046780848531852956030260393369987912529602307327858469371627037491448388916337500526216973323321524007087580984856462897791809848253427212024812725655515050305700418119895186092167878092709372414804711203209275216382196930053667750846835893865445281522353475575590763802378521519460182724568236395490568125932747289545698934471141809813153649597485154106854609786330324864298777018635531367450811076763860473346402957688211528898135664493094931043589036451413175524147809925350591481309531471226234135406460905980393007295409692136945644985787813148498347106185885802583353800866348220745875475776920674100675717787021480249068099354034049780869747523182136878867192069420344186215299004686685357497787101475284582152153509827098635277035756293849313931604238871689907398239561898872218842061190277094299032275736687186079770707721559232641813601697172777407028841345717732062530298816172640649801780192696415503872932862487451156694400901469103!
 7146658952807690750630991658019040282491239634567983926956557159476136694387393330068373830818123094204415929595171871924926797929712950294915811852694465448881606448909108574738497225266256135983373917831949599150654399837939835090051743387881718295516184473257069422937536525515347117857618497747797331677160714994214526381704752272729557050017337440135602978121687188613072957200868270472815099449365576135300683820300724872389186045558234056763187626236258904340796023955291440818688735039163729934716281576586285346544476718977966400943420249016434108486305364084940912887711996506980457880713797795159120425380257091986045596738860190163441482900997297139228277863871263080176692137049349769043808195656188012979091465075440684531805169404962484549525186336324222226145869950092979045626886597039309839695602356438896863299233237659081142486035803545169782067694889248663833068791765942638200926377890316582705029113785729750974004938675358051632321698473633858419735204876339455394!
 6427392885249745167489904651459473884977874365758947077177943562707432
572
28553610149292967565026585100600321814615361292859106934321487868637434297702059825451095805417445562508116488195634432335555091540702287345061766348980049281114848603366735880522429802762450658064166164609330965832277412016870046186470873546075946002355373436366858463000829891159321746543217351175531575551018630965885602744732881743617645365592624617643877740379976886080184145764476430357129839955569156559423117453065948362502060364382217354409655353950904574369386510431293427166581052146477362856041042715237293978124871060598593201780757738436706563113506859305888608362023477806498797585317840167290597876570281387580260323333798832030389685399914520291291252264234896619763397182681060237095975966298091853481901250403158996252047170767663998683531531966086875291254231153750347550051536740686846995676773305775107923504903457787782633964738764290564016443331682245650903957006685680098251827330581904243226112894851849188221425396861310033713722430186839559644173467084178320400!
 7571512416808375541314824792400452430812536772968970444067964317974268159359203135821514639678923853314691684801923785613665706360942213296256718222140853765807068346168583496375655648152132788002082516961807984840474867542864812471892324572784880995178492002381321495055976860978043922721365667914325583872939628855575318985133904712378084559407184483283611533615780257058364385933712923478051058091607157923717358832712616456065679450348099079972050842273054741907781106494021601666662950945932469680827885873826896084877445611837984486573045432053689268403491423450881535101678575706668749563760666307293636497984091052840084546233261781814979761412181872861268653460711665095513547783230627411811482071716466526542709914847880777689282345795486110671504947364739973648066529953736779993402353274964801034460008563976973633732229471469730277640940775396288390125824662939693898770158620893799185516933084638159965395913392629245005644067609742316903078027155970074441832783863920059150!
 4192666472875278979549277034150826391547896926883308166047956420911237
93125124523826289132391142592592488723531353414037167337993061711996480374076644403610827781509371989266789958837505255476092942001843074443896493496814253542442287548263467259939978795979725472244117287600771260884093950481192159674887395558626710654903021324022477079265249776944955205108056410482206802172927635615223773851063602097203137894838908760877304444339107037138713316374909282154921296609435599576542505065970239239800133971925439883533581932604235533464070907285804865214153390352229706047122013049412345535778954712486300047055628894550446086222664852384731073317223038564186531180217935120788367893163243192580644850051145282276974702881297556723041938969669115168403425219126668605613003845205389336911210081205025241087952203462366013906294095868063810486156703491895288995944342180753633129570224126076566283785776310584133249700802109639513491608642051940551379803738265147259899902124751359728276487048030240957692462436925511139223531786948292842185557243747361826577!
 9560035189015876875981442665762658258377735379880116858111611885458719903282377257659747925555015170352252043295945668950459779859313354603058046287121050992002653919990220328029855134990558952962035081185191162393317684154510610655162478821980694146953140216385429484650993057590184254772587685764147409170800507658641633769358146607818722445058379424375762870854540335011053709267102160168897425190172664771091187734019658761319238244016778669447316036433235910530463926925486473405762211664842699383303050481743973119350053676164505084476304732563764216661398181721671531112891024558516207319700700311254050520823829089312875756421875416786156917970097009380501429846668521200159151132720592321337362451009271857273494135289481232311599234615896909789674454130627626872563304682335313715965130004061533200562642138432231482703547358635091988446533835684004841684653835147529872668521047590091051673159246264853570708194303523598755049297733307531722035573470236517079315932787444549816!
 4459324739383779436527800310927753543734929701120308885081138511036298
56205948834696156362320828310842502873761364128467264503679574982163446945992440232038663609579652731250489120123599962848087517002713559088212824459212365972636236261931717499306027800672703852044386944202396265943071733875448439649357394016544694254389183159395967500993298475531832019709586811147403411464307749078732347323831843169775800695104759625347803929053122789720283171030770441520409620275360661687750953874913564865489935285108137546623023010441644060787433799388659434319739727628098872553596421836886252528684292094076693531017467606143615040224106100657518385781845943097381666527422822359523265631560043634606066179929543426812782469802311078319221754882824844348942155905096249680955168161417840810580681730090026315272179607472345797447534390082662384080704887676620125669754226324768414436029961270632036424767255662395841363346696342018339637825422544743063280535146449208028401169350717192513434491759163446481547381600589645676084057980165902557489767118772253952700!
 0178383461807683357425061963779397290718664165775655492239895116050443618102059416850541876584715902962594030767718693860546243793895291773829741484639269221118535479059909509729976074738729626472760521045951128274356312709605950237557318061954525987653198881915837078060946073010461531407967225257577860927309190246919298845173987163150768576635186493797629738066031650319861817206511878673359197652395674431888795336522908865200801404998114956576645013571486997392219460316658901192022613706395492150000809680804936515617904441399365473211942270762716806623267993172218125745760915245516705097654927987579284966167376193685343546860426007927821050502935106026991107729258332233138942398087165405046314658617867219949974969729059791579184648037035187388643820270609804934004556786093076538261926526318112021863859251656925865948327448316434614594036961723580597179588829058381523697885331682301331452292999154059230227405855037406285359045976578596457380652160026315917742888124801830766!
 6463770771998546947143246041543087106778821876907079694131367846057701
83828392830947916091577622835129330815994526976068402659423392885871105440868306366385810204736320944965349887762757862699053539155327911881192633510691931273397666740914861397456145254527568838051822852660871349632838841836848480136264582895400730650791560741028890834546596253808696255262637115923594826384545608725836860376198170672633744812876372682998877722944540407706789940164381250027554201698302306954511629983134310718899098625410160029355244154862591376159747870918515340256888813019892188445661116491063268883242344830962888049657974271034082237366738282557725076771530518606164830633559801934071098971630988408746725910445988875959605303292488993638521193949096828371086457135234560158043864297103538466830596898796808358734978576267855658883836495162723545207087795334676586720491617208798131491416989137566464545697421666338802887093115965529089096858324662094236872595520958765867639645258106276095395529149176518173767291898766779842511921680755258160046926728928376965028!
 6492087987822244210714046467307485197437139760530743223451552532121235870851616285214538008368612462951548039453329683773642486296457024358189231686226499499218634983246812149467375119948195045074496597043271760401338355222360815340004795981936852230925881457545979566969475623894957247325248486607065428825628767359288397614196190591329083994691638410053218891869432565720667765232382473164380797696044457296944650283430616652216987080261757570512416411109207357726203970411688859403761058433130293144482906595568429648729637716132195073219971641441702565468946101270308245972384182836040311660348915371607623286396661656185600094671554915197467308423255867674109733402984616967564210763223153678979988580683198922830859763375092946490387910743707740084634936236240083008495007355816496691675977786580811182304770742469643604732793518203847198896117035900830045568512528050955106676996023738782353766372782267740520510615320189983806114919859528750026629455422735260581489488099794079523!
 8178862244330133236455432574103883704232398092141614963275539566361768
675
24381765566251013374304648082075528515649116718283454130472387959848889991562759190821521959453589439873919878854478785588393019531703471240250072072868196663188915409237562982477373635896293037302748649251369197889067635824615369075723811889000386834089303979375199306538172287366775385114171618214640630053993407936721095094123328350571426528319496746948502122505862740454811093958740537288809665227994913135041148573758189949152273413520402201771742697561032405390025938558957849154940687591085109004456698779029635899957858043995947222843355440391384551575459051012236770949004290725163272506438911414940314392933816049214114829869615126075681193004885160428925653343730686239962181200837591143173089441989980293377230506522502709849720595963536060693015540542358093562221999017615513369475682897390100935189886891023056203345606747815955637373724315051310463884368461660222105807660550163384439513392753905047198111267789378425274293071714287376055437904153578146194855984706040401016!
 3365311893068369659397595008458513327284730880048487740393171839649232121257591559863968310050334405605278988766114724308920739067717133448999590499556528668704313897455638641950652562633820072560532502544979125893728660693665274756954585549379365494669059562648221660110907222716643362714785994645999926749049549615126423085297640404369503078388756766522322785359375567721700544176152275789006884922246472581006854831676168705370471402932937942957597129456134524552754565682494397143313858049509737206075394125741562910110232605185216108762961134662379674361123425177993400596014944329479641646003108837766887059200488620180196337697614505829217689137668547554193811607470643646183550950427836763844727462071613819711917704444879751377889228995884738200829650704622312728062105126991039445893607890442906612891216488673293277124505955764999531645688888539374049657657168809130392423485693764450199912028784002735463631080280488390398644628663159407840102917796877741898286222270285329191!
 4550355495243566744611953366897039280307633613422784813008059024523229
86453653475937924700977123725148559789622335055037140823738855989996357257681528249857323029102096633655298097518691642928076192749832296521944816960437154884759085527235864404802017581425754005293438794619643196734902934702696186973283056021266285835941429141764327043883997140379848629650744072265264163463428982919154069458223840053228719781301203428465115000214159693875605989584674337883215104458173349102931408492619625443010694755863267361339601315493600270288226537550169131948172167727277488797907130864591251768962270234348267173744476254036044361238342663685290979347302622177434409361004734383259470556179624247014795775993839612828218670404659473671346740038028868906734350560654196291543982323319166341577275777262556671272875677647403587825186324014293512309926524186105365262390689805767959009378267212512205511131583478239251417189326668486967410493386288058933141258364873085596852364870957352273551564173160005704356833751285864867987776268789119701741989262975037390169!
 6681145531056396389133491947849112600288727202243629554113302103288831252179038609153411678577623388013856364347123025313312758349214962681684346180565506437686484432169160099329793588697132634594804765801673028762362637540464177371171233375552907616845760984120314814906712654478813087496692652495072837633958248312795542416998444914156090821234201446635611514398786928367644038199996073613035658764068334110290878236852304517716218148049432624678420340375691218100204857133468386031640918904933187028256511334225965139518362851792326534003162530311776858304390585530314347000949954042899310620069093842985984946257642436427475502009295982199705371385675402423995822493614688183578390529256276625781476282549052153118845167267925851062996411218904742903268982903001953919556490734818124668433899387652291244231198145746620093780807965110820809202500372217656466226546285167806975616512298469040287638196536023135636136497663890221979236172338854918198095735229701423204549139476002030983!
 1182651347083195790827421779732291100149811042092919972707939131054168
84305647668068288143263931229248475280351556328279527326560834108816169796102396306652310043702682309153399901101851784085347966645769639956438623259072566307560394705513589758512702593763532523454546071157876567775171323140719849308707274172599038347990837752226623850161890001369665331022529573865193690993625896333791041177586051878192070877765609994109805155176052433838149857884415802148300377380729422205761142218734191201738097419160390896945708128691961868771823441333977805975939917040852574024595279535895516836710461224141484882350704209894946405334610298148181498384962874854695004074324843010042370237702693594977809093900955516428125416837951222634081034024006017318562283671178791286350576512210523464875470892286547579799198663491343367457317808000101592280324580415606204058814973369054688383056831118856426927446668256282605693182711497110790802221674273725205608523980970519287617281829491707968108495634209221568005222657659050270810105964689600419159413971344320797487!
 5200619703621436531076819492314665746833301942561772580296562871057463566793619642933509041759154760564372284823152054488326426763087111474606360347328343230094190420867481232196335598089298139013743217231902944033802138350378466582478492823716028457090185093998630876897463612139222874464372822230689814427108087673984745198685973565683247585023790229043874338656501635430920494975139465171204239963804851524043827140049987366092215951679436655209716246719028784972343068794146220933065403515146533353438176212140974995290813343668874219608546300562941871857198979654903892260994006458134576989890293752526031594793520517287383716670072154796195637574070128559260756333580436117856957032715108609733266002110088271231991637593409971230320261381098899642220973175527414255363413061597294843720485673053633453566183219602569723677437664041985539084586654773133442430617212600862976052967207859322562292355846262846333189292831983610002592187113703997150557749320487597831976713628632018442!
 8233653934716363794571277158840984176877770551144694652404220885382028
24989296395084670465701934759746010821090022379813893938891736619958702353222196294149913960484299279341165867048778571113372653492856653689288750896260840586049730811807796500601006810979623045595480118976856619676242389312756524165598319456614716758220572051507331874386499592077292171541152707025157374293274060303889970181763924928444961449892119960087414559201197110619178135600831179394370021856788080126118115799464147173035479067670391626448036915230016380975095498647857715301933207587076728073824162729979856572198166844451931151214721539462606241547478844925314745222342898144439356689652081728352018491044685012363534665944391017712860590789232036981778144140657657953141693427566274427564792495722561771122441508205905726084814714045923953079597060427172459275216550600513715396777242631825934316495999408488134896294439801928050446990307433295869642023477994406085552980260168762745948165247001320475095699315825105659565545112468121674104418920149712917059113204648692995218!
 9360787257198954332687027642112079711125806343717907028536568681881306493152903586491231366257190281160804499253317309331886197389137211839634887920380921481773975151215550607142123784782495146494932858500089951732313341794491957195493738102251620433558509640442999506549482181749182982098028501613576469799306791322247849851295874198976234020482642870620205113048454320745643630546829858997903588405564610067458997230028648958952414533037922186076757219603000199840534610423696739484659819890332264471364177828858318615641089981063332566958801490875489118552944475487777070332542816540487011452902591625351980123874140104360363092052813996081857821750591992044407167990153384458640154205422766039495098525317146476566588668145884224627681547177489770602016193969477385529779517920639342593819635523803884248395810392756705640051774584154536477920170734268207895378424193187181125134001913549075223018853664245615188640302650415206225875269746448305960600086648084673975874694031004430507!
 1100803285756185260033706833217834100697307370364032129825039545915664
516
25180163585488925018864904176713086234741645120009780526716591409458666952971943266261362755466627639747988313242076600247082565551686346541573227303798463349743541760533911805549584851710030650471465709174000822022033342084271621025506998295166962322792052067901249991059790172386421758536906421361877237109133881499560018522736296536092063731683978473714984116231404795457163102850830964929465614289077736030956891413757372422008431953676737207516723402117432726467077757072056644653817086104304913019933047479859635164887964619449295289058257309790409506277206668356944279880549619837512732746507601821215205334922080851917626617083613572333425100696831041782079718606502797325776115716507240273651199086137670389886650327557743894227581566173076972183643680194219584768114175757657802259412293693762854837615011371209444777267883907263765061893274494741092640586931989590585599696009720463567109558642594222507134228108316107878545620838655268622496877558956742840096517078974399836452!
 1940287896992967688552250992454811316798119609584499945128301743956586455425349246733192769929221149864428842742821896234377707149143857760805808485642730371713537642453067937869457905752335076438815218106566079270751572528839918515710526005618833910853622127568842615368679981807360170875673642170133324263530619346354543601726038855255677458062131463820548899779437994865925280732477127701533566724305128745511130522707692262151065261479813961301205482595539849829038221658540002787182817945275934575981606268256693535910919702531758789585078642512381690228684408855504623386176809374387125500306276779114460427175023690482605349682200346806279793975282372351973107085666232473255481566912018466156539344860475403574057353264973565944918990736160811763133524918574724029491422191055346694230286637390630837957952652291658230260997650740918733400133052343101030377785078752063516583462778448353683665590270558349479612983505612394339024757396930505229513081104670913249882048315378942261!
 3223556634309811418309866847681028257155028682748383397571925873474011
53664671682629370155268224421277110523909179693192391277379771768801542246883496201400997322757593293917724086463489283646444353876181138341439888235343530623717836037727092220679014913157494612352486498036806094484885719893841191968471524836899608147222418754317335333742369490081762643689316367885345454285713963603275099228957125803241463056342872931869971175945658363103616835157351924115291745856865483974709206998158899997133603670512517832216587046941565206271294188303672861697327759547489832700933761709103805515938607797518316479113151091832801275251593651504886079398848586099308119349380127789670910847840847094315489455770550455036182181154602650233359866262119075457284333340654655923652677967900972402255903766627701571787453010678368459746242411941460927025518165357449640803707635921820480703170780049503051527919804684148029262375914410938821175845422300258710509897434053801960809670600172944613159435393190215524986391770306032510939596603820623564441379417884276524064!
 3899787215289854873908254194811268497400341380587702933160023497523314378325068346832390294862961289177107044987706230858455583007253858193699956274947316552089561794462764776882775111576147049901948228432386802734707467386281475267533372012101071646686196160063377135213782113885721215547739721693304401947166534830268285098055310036760417985335910839912135600946042118254828382608059451163333745999330985400909567553128225040676460073412663544062482616605635769125279981301615925942686486995004724775332770649993846444113929558969146522042990812243906286000465035738126952170225639216821773367320209158675045004788981687036460961518460048557414398817260973844721274644195450198335593231768829557830645802089829527631549073550054654111113719476304362617329785902846513191614666551676635064119334575866713781810984156465929623657690836271607223381478850855063886317749078723491919876798967463625454712604409541681977992207104276402515484331964773905581049610001647059895157852943991917985!
 1978060893956786471973638900985242234000544223763116403151864279380217
95265684299781428838321389598243939588770155799078394489206709170655203496769986054155902105765147715787378675137125473044660334994239637877962711768362368962445967764401996978693027895704351674431509802289865012877454039340739724267160500255878549888894099384209100168173874898358456289352751707911705490005436219621706429404327806279873786676730222852018370415921352422427596283750372997349591431251129239685319012975356116296723084861743231763892988175402470391522806254684791030979628293430421339402288412931047594043460835668343232495613647542579862544554498896351671364445937935735007027731767348845174887099668250810438991556770998488740178829907494844233167883018060597371518899642950324199139880647782140200104111777478968839555108074211164804227507987793103151151108433831772887252558536680132319275233969078693015925808524191590883768045362608975083421104441911728556321464612372029116740614660357396431901332673511383180868544275306115682200642050776276243163090763395746802731!
 5291779908101253549436125914719887523866639937485253979788879307769281320874570272961219939081254625546254109008343052040387108383857226421767563029049301769295115288579085478954134272967908455152662497710743422153765699549216931190035675588797196959360894440560279853228297459230057292902250191869049960515196346658738457662861655837092622954905255871509887801915359854417167213573070063569746236645069994385958653045816955766814151886375167295828551947025681486752161213458539326242521744695255070076927008328053505369516383702482620563452119086436094550878637455568841651474777446606868027320905274568175395157132037546217069826261484759071069250556887184036300053051386810957538874806334632999487695537434810824541310981083736907075104526381461571373620350563741206115436983956431136731850971749634340583229072358340161829060871658710160130421591917139023645897059027348156810722898671953025796837645639897187692251759331558679733407737330432167556539107557542389161607021227173759207!
 0056307136843747821213528898979866821776283257253334518323039274761865
40391920879656525892860819307040357396420809893210894322008519941676117175273539788820266187445622820220531528314278483033868602799651751797558198833310256254382304160189423391703863378357921032037786682180618908632648674196620083453772672138030048353496696010662241386427252925300053729177370611623486543873603335731512271393004752577030921799026910568336986814700700466807131900900638769068942035418676510749733938247585986386289190118498516056762720635681836412579224498280289965361861777668677814102903988473476271790234863835367198841815377642843579068363587905670058581213427848601734299273114985258294263813065849793217196027188839888813672103025293737306872842842526768184950327932957470704537523032086408891882046920257811437470677421043931464527865896380704085307448240780539431479682354362054098652425446130960956897299253200046937227651926452523471043868061628441502632729061257192725776763140224201856235148905903061312244081943896347125981067222308073624874038823446428048391!
 7599711890693049486869311881573358946333731378306463075822060360727221651203940831736077127229108945530997277130413106141567730248755030303311974593678235696920692900868406551784355069909796130120859134208252365383197216400257843865315526851804559506527621829780729270016262380753984531787493214571767442842240498063048733634559557141921655599069316011685456804757856944582581465254105690942130415186078742436405050757001169784515992851436363314191985622039283636376980736964248023175052955013733589796035987444259036369071724627520840312123803089261318802320710301404611955903967347832214727621039428519154515034699239286860608789482720401315517854889242118587503260120766227587948661078061994316694602312466700366406945698803378941916927909305638007712556961113855111068230718626350878130165915966571995616639269524013281937122686738399710231302371860614424028167500027852370132974280057314123377107673052630029188543218495203772625172519665489858630275201985805552865567017412424781398!
 4411479456140361337235929100240288001695428252763700172605581740844534
308
05114569010709200685375107498005622995679393703609421655852401268260862013989663997981826683814642688762945498686986956018358721332468705175195617160408503607021926593490727025109947572522191084244559520783085143427489795831409061138136873218656247805199733098940110047570718189852293784438141434541275082709849791964579292080235503643635350960125171771680565549982788366872030579533233548922735814390956051222929425451105961566598998015880640054229431876949270762221110284761808261596446602704309729054929180957757759026962478243427196842521066737089539128792695710391317015524198956659379628884094286905195234919075493968337433851086788683112974840774256142888024202545647075085740339539876746447064724122440508415745987731692742806579384510808293347136974573171707801215046556077308798757870502442018251306625132845793796693426746591767544732128729799255322939565415828683586256392962270161695814361047964633701681690383700255736494401395819022902590430291793301413198519600605393959301!
 5118034855063021486381739005927865937796283974600501660024561924250559351652393899385785832922591711647601833158673958922691798677199264267707228044516574554501282171307485007367793445470248714883718847668824378185985568323003918292507222124723395438145081249592057273858216386717412145544407200077462566779999303388581438395224684186060994650551174949312624747545411490089929888024475117143941471715620484316616148349019046001190929625568516287760436851209221765372520306632610279260457121123463843089769100576076038205062694894518313368129757008494650362783044503424298855803363561984544505418523948398908251480866797159530872371873295246175261964989059205469690840452251974665477634065536705083961295269437798297198225507400872467579607375592988511922700401408992230997692507290824372529302536554584962933437019516944831600998169538217539750893931830881834902561945268977264011060413490804531314501071393769710546347665429387332788496507788911570443389987596862067766941170235325721969!
 7006335598012767963217354057017373873456002788461555755391888881901579
37805544173152124711048525279597666087261897929914561575520979704048086756054469428312274540256332191157104455429631522523043608263630844221033568337100347482864619734312032202472443932293380297883927316609665734196648139711732905763186077594191418982874783291136684330253529252496479211019646490652178242802165844480119414837560870626468221705278855586660939730849211724889880705529500413886690763683994300818877934803775541180454695193374369307401500438691562902746936145881457045663729762794944061609311993111741804520449283545614699712876823501751445373892838376800720416806963953649250578693080932586432379583979185083667852687093943396098783481513142366452625415249275587799065325616332081271863536440504910181314864879728064836084966650248920735697536217190475720554079269663844354262130994352432518830971353082340787314154948096657487919620704298132176243781081796600003627805961686458583311024834331251029352663857765397147351005221181616567263513538413677555892138833561375461669!
 0150611753776496372976412757297961854600653058815433746646375024676618736828601359389979661048870373212998988077189303455828424798632586508329716478813687836934043158699441584056073105170080740906242322983421483645937540666898879902452967750380630886424623540006792050169402576684226733377623470073850861041947110699435804534455704891685726842546490009371256247610593669638899731278465862443799144139951569466810839263252231819117286400745587634104562885751255056808152522939279259781486174754526947763804476995955050607030405723074802347057423446724103122965349505065170116543132428521975922325039634918024654316346612918022256977140890212339328788604173941013526311520369111453920038754109001217400800370764068065824627805087557204105425815704573154793095847220829190461794537539554705589553490462381008166373194550235848101992227192912016177520244466860590096640142655724768436533186703522065580145891365214214884279565586627059338874918786393912310949856121262994129219570550982159041!
 4591386112526656218794569178586414084184662918123127717018560764298414
03475924859795364139295700295399600044765241741180636090891070329935760123567450289489667243683113234827356381370078481809220454448786971363944071406838108537502379067925491990743545391118754416978797744588070612794679102610597267850687549686191026642898726604155400035593706209614687774802119559012974434756190369015032298765074421165940749484642116358360774214267964398310275681555461210571679153107221777930254573228745372929891949546444430214743494433991526199764617560500446876141445197137848176211789772414355467354670242507347836422189788430240648952846314388163435075296533334782074398744784424394834378621580005295941201695844997595662195314594638517065744940644541377088385322747539546226747217816410785971506263948291174373316912308779475584016245243467316076527923038336108403393227859230437069614233618515120201630037106473392360159409348761413931578014737552099930571439690936141780868692008127299950126894063381545942618042524870705529369512012093385006182670089611255740262!
 9284289397798199536585334676890135251331654478486211389757939533763847704378960005437463152679226126554035001329447959332038995044036912341008956512641833327189635116513065117671202257937290610148423524674378547404696125822110639983260451581254754677929322160100396891835166867336830393136298532998872877313365140099200771811594958529964781866067889568730412979681933386864036542998250248976083898727879968322479948612906215381195278117506535007681270346380699853213452396070408503822031138373124673544085400354980559889762848218255029841751924213819952951835534403125784310766698198236289049859569939761472019504074153418288497163679555729981157692899029453651754415265328609725311247060977431006428102157231991439287247182840939967413832697591370192060393452424462818209416205366883589174586151994610289297586116332625393634857916508954974755610887043082657833533954872060436193138168742118417529818004502462401321388921541354063163302382161565464533991219188665880282830367309947128978!
 0816548788972062587681901474865764326474554358647966050544193140078330
58157665753933917660149690172511013519303276412543790817246689999810787074329882860632105428729230684618965421625785755601612552340300580197329431255534421488652069980970043014298345079053809234458243679438749162814834015294287829919084621132239087623502463789187701226754763087919453241491141091253487734704529022285676973757021670272351520368322814498653030193362473582464002265301781786230613182673475745562719183138593703869423224060783415856173750148103203795100191326222685916207583999928414258360755023703675143734725006108456521231782069026932327170717018071750076671070243830088213495621142096666279257629475353656122311963034872979923961295610014411768430991443598065566847331837711114898251668605288243158296681577367429301750530961966351587675538641288368646401680329010209836414539013618201231060000077579660767714453237449036664538190330356596405377484863770568919521436067964328702651141982058714099621884954127590552896627174371637870154631182349958080516726387898690116970!
 5743325252330668811410230906371609653933829175424740572281318248528656220140842948358903054331768669388627252990137430129882853320414925964724870842887086812156215565905552011876699209953492885869512934925620588529975945981473505525503315145734981302496356660057156212941288201622999848145291580272745294336713461339895499251972614295467134110655087486873567899050526184186494670036261545565178590074743468302203353062126331982820548103883294377278480154352985423406909915122071140819165328421628682826366356108343235666218458349658424351140825271341844670438854605640891533111831123911860539878116762767613703658428481807313920056249047162328232991080660606647062640354285919007969734730188705856542992129141065083105024921181152561006374229243293904732428585904369109978087368701612715657608625272563041379461868532715908948468280276438781968830346901398630993534890439939614131385964628843854485451786146989483635930250233388861386605788253493820429754205348196605394372643477979135529!
 8709044097516714256549173418657402833105637868993037656181566235182047
554
99419434971521548912142520647079290437621284540363565400426443885879915446526504588441502208348189980825237626378349391929908774186331195023335535079509550198504429464600379207703264723165383716779763225510461508344705727864984310406919552119029089819095506643754003665989157129669037382605868862209431585676214169462770034461465588370961454183836781653264671798870475162420027698410568104993479741747427555662383448218723949255987248081790288697917808211307826673882271756995368158100683494417701411035314110709827967960457421557346773729313183574290098817251070700102705681610590925619773872526295496706438269748763152709963323153897802141958462837023585522802977580214061912503939000954972068969229351548709957962168186517294143002365100714102755589431262349994526217425183407314951822665413670711205435950477052984055164144082316040094148593227671833561041031952334848460795236466106998696317658850281933170909277543809750296912928290287182718686765605656010388362597476899331918150868!
 4635102020444319141590772364683025539168088913774267233213994712884977597953977347922967893621930992511200663011566173906575736837676365937189211422368499120214755719722305574100572545257245385556505686460537112268226795019296310394584417455806521223889346737778117487711085358563651048040070235138414083943449149587336317033745247442076903104658940280706520404901026101806307144095089011836528291001042631126121723016073039142782998260548259374871970789455908633421705653769115599133716964152529125865507192748345937113075626822331441930750599400673536365037293550076798042151214351972532560562264394541411316747298778368714099675896563070199695608246280145049119912407121857480537069396403892123464697871225506696069651615068130060629410740080470757013091617350773347556487725473691225215098135033192993383343821078855438332361873569071608054558098436700574350850753199409765965336872104349332228061883499200482787381125275030492088881748464283190165396006304665029156208905322947319996!
 6789104299917745341287689103090997671881480309327162698123657206043315
96496493420535930974995546353415998438238620494250693932014266637836894812021997614179860830589838293900673951455175735499971707538924803152941090118514926140875944737211593932892637050695832991810086208404102864899234632603456423704248242570639091293808017046596536307241449281837553304794862335063366363758865610589066033531629111765979002365301217285753662018901016498159777247290540226707862683387773011170094318514035776219454816762064375319687841485184258934481405295839963849702539597621263597859456691106370601332279533419105303795404259783041376675167497687874652996491783423364270007454754819494713598668069156666458532914903082320598902812058781268157674309307210176135822631899928879732309320101492321263732671517964955489689247766118431545671617574939384016165229078440894231508766870546652757932388055491266616937775989539255610804069381182248000513508093720466860200390550091411653944819959417321871903409718825590726295842837197700858179418507010239247599882896135737787564!
 3588549634256114678078334051871095131257599993180519092190226656156950392826194790160170231224330575443126065446462500868662274804386674419442015394260381155782754000040402071218190131574640109342733574833610146940368545125644320347075284483893175456176463157220928781027991202902189223828247035054633830941944779746913088292457205029220624985552355105654164304576298864176806201741134808923422728834745432011980726606895692588229327024544775347217655283908061743002542828159828767471359831392486775453184684460838048150815663541946256581329635955059482907633010681564496651788032837772344264957347620939757595579306386710047774393400649834055072362181198948448212717277785138995684904476270086131269781577572295464760335927355634301851525659582920138209150226200880031749728538998215039065355933128282835302291042484991010409600808129227371345158145829596251438171754663416763065800124676193027393974968282716096494372311355756290781019612424029811176798261867140483954668523855807275940!
 5609329731240555537304479929325649327981148318332021373111562324040925
44419362171293573215519555826930703620869391030956262579288494465718175291633610508440138556367920711571888579885134962980427561385500828166953039086989620802903035538006255632140366817790818021164843877948278512937817115195312920602534993978761754640800188549112650947737794033808138516582177365474212231932820826980804014905348395503964389278202924723734827169643746781354156230792934930724033675169925218892240566961469968147387885186031428976353797624324269819101596656181862939220488095891535233677225687364384668169767417735744924027732442718521724582490379444028830673844564001853656074654175605371082546817925693646964418020722076795015297467508384135231135616254995291763514168838458188793842769207700363308166744134057171504307644550557086201962187509021388493215588493146361185166819219333310687104157219222584513623221990026708380222348732157579711911396826803848840402814592695923283959641886626796149305159820371186283109450197691335579388158951141532725042249535888645052952!
 5188569766476775406419896461256327822597017023337558520886222182600285359281446308610907067417161261230022530622943269439780326835730088162486844963806183381290631720666982539273397400494758569587351393454769511348187322641752631190577688592198023732093522988172495982321802051416465423317460267710479573856951746726028070968152504373358982055047400803013301755815227169530967519720161200920566230877542871069645863471374280667516783193735132565221483833173672308119816534223980262474376558947675692163436877669156494799894490895333548260863798232539491667268994167499834770469902146408996837582495058290814533142200622637026588908567589263050621772504590274990999327919762378666652919186395587687935663877764742766951607896083931623525292783250364155846780246181598805142926914406989652471948193396323136854634186509092841382717252169538362006323009210996206249425060811181486751298160865486378491683891420244074612537349911807444468004565780723476210113068446077979422132044175184816160!
 1019084311857783736923028533939927561111606255009383801593115111359078
52162560485386914323812245904299772946964322273715189525802973366045356007075343804126696705867914369328092183041139251793786077259043301053693860564531228257539431737223358522116815430443635849742772083634227879617830153625028018585784844259719867132834248512769481082148289899874543172209779240360832619873253615859560141938413651762588232316649713661871498820913042815510162243911604524963384256540786205403968475984137295093158148777371240187179778380478989949436542977673257015705381263785222746972467874241300793642328497818478384187095000920272327654649817697185631159468301209971547273531735570252640974294862538148140078594209375626383946867371632446500669475670531599472687811256170460064074445580742901999701262105369442807140922166151821307934869897283700119529308107366672854879857871482235316879674787357526619385423624000713911305675550338852901423771854164892294155671638458861411106333383120411085276458284026102555584547225937596187234636430993963801234448925565298982720!
 2990036784391510418687495824429546262126155525198674509444652902219649632955400007038521056321967658248422650733125362054626026868452266096888043838047437262323316166601591279368819959405025719999329176733931027100125953609469437966385968083266431931649658496339772919441451837316675736885364518202302381482637706530113911289136913462491327912603253534591991632345277581424766602795479540704330509573058571051219829120944316533594324084681380748875387297085375441682806609884935066699637289794431656792687636706605922664955035210430834357140335183877561742096308666225048152511378485882570025040515838618361645076359197566456471215061989852062746107207788534090089741333788845290560643246783723784423811624539607897311433337060960525973019965093743954562466866281243275277881785764509786865491389233961453938720160995472773168875997332167711844199589484861426103891518757536353139008447216715931361056590552306882270163900604646542371934043098508250773501548519931747183573730449150694975!
 7248007908426935982914383093138985548754942322744949162792191174416817
622
58515329230906270288626273271727137367472885363862123221521565981401434617442086412238248701842176211379848001289184611502913407235104009968281635515588496259347022842452965644631458122087796414813974052131898287854284269657822434892186212453402142291873824879831283655208388110223504587132896511975297239395600114252964021960676967957581479359799931418498120411115428221651323925590709874816323371019161139791981311334362875608519136823562637758111952015928301098024561701102225736721118075378393997056197834785899801039586427329468431331010946879646342978777226821944480569992455368546016753353994086181176225929427764715341240000276901027411761923992248717212932198828213214581558330810327676656821576223286102357888866495575706551976714230950420576201061600927036420023404509720835648577181668241511926944850681518629351905611712803659267821369850750877498220731933486197900725897758266414280631975955986314537097065477664768007258785006309940108789455470972063803894836930369700269745!
 8292541889356827697675923286776710169803509732769360272883121039870404729507335731757223271391288682308969775881257914549379342985359447300616559315055902450692901802949396531937276413075979435030186195182849400682794556592773381062149016449883428475015304083572143224589265200027521484688613520268320201235650451901911872323559167037232979034597875506946927721571147182379966807463907229451229908534653261746797338216839409164611176212107568264733826146148780221208854610941607249501461647180175574523157572564916552016964627970618347370461961194707193166112753777075198944648689161124640677993406222196506865913705310362339187592819657416107839829879513864770740645142244930292524076236866433594986611393309682004315015611717440284570589293425048899723028035902438855797151315458832846190466314888130054461650106191633925396324995668918855812076832961375023195402633096304694051247986849565872764528769709915657361774733919053124868449462587226912095502070721707162187967918776070558048!
 1015192295074326337820027918311553682643767887579911981167968873963177
81452995442566577309275671432912484702302278647522453354025140790949182546253529101439352289666482429845599342557559177758575824235233897374748446334004725931357292624483984877701765481318806697061502288930961065688203005792824776845650575916401812945586968803264581170511288126050608222011029481378867623478883248252825039466886560479147243495936240857533931494128559506580257628000890635688149232095192164003188097299919802546703286321856744877047667974008052444941230192577061686079333377261667952372310225603045607349457206356031317070375962721464901942508795425966836567349678477964017862775009417083925965179211371888502696058085928715465641853891151124482809575136933274382978784025912924252701523801839428277642307786599800714990011271862672569779749355858588276207844192101150122755574177976386270585270654598893783329649518770115264414216448752086329424108541931861114096827628512901437848023439124804724666828152772743115489646255670802912294104703665441279619458724516005911000!
 0895993476482685734682460496951136801911314321302307246634163734250901921361990587934861030116849136703125159321122314328916323155148639038920490730467537906033384814622379047633637202231768335411432973333114189394247379319875513336595192369206055641815362927457172495382044574747097433811199825206939055925739070777436069154483495464543945550651751304659388351630848247463410990519949623679710358992713562010978505616249952318905021558146844677246361554697831683248275696313571755831470789709172877833718048519895459843828596699776869250594382809953116380964438179977603501130870739448519285162549058903110872332963148825592074274014344023881471254559590700119366547096738912587270273568527307775193968862038706430537341996367859408521578977244356095538320973712223499363623409298990125319603399472142957874751476855432173216712746227680332330005638232707227545294942172575194125105391672186433585944534926876922082387331430039261354663005729636733155649097959804899247266938645643746202!
 2496833800005055789826856676967114280187672621778655766491577003524611
00932794682563677161539624379277129483813797234472909685220531233182015789584479574840496654262502039567468235473353258966746482118862207730244164139640057439589934451240708100231076667283429860057554936374749864908555630488045734980897457849263197751447359585777356307725467852982333254687020095719748961900232497446877253504533172730924230889057883062072728554985674679048486118049266536573811130031825472998778742263224505235417218301325634179543964983867938294564119675227721807970795055644450838043578920044101599100871056208654575358619881337544255212730289424165307580303308079636039796066642428157932448605287249560748740903618136406243020176522623955868368289209627492460911889429190221269876819746106434478899463354904936758430485143499806460954496732887730015221544029568123453448946932592349798557860792193479042487386442067922841925132730049639053883815793747911629959337347104425865737219183591342311892468121510056417553783567312752772033942084577330932293933774147462912041!
 4336423758453227800104181991754841646907988966638034903140420857975127670234369730901782041202312016332370681609809619376238353166428146780856607220894937814058508265825612064156690803913301450378737470086191634207868965841313273363314363382372598692478567010819887206149431011600932643020534519436686730988893658736185274628304684865086589316628441742815813439912058343184793314382513612576865309377574773719660808241387978909568631924278782136534145351715120124156321455772612571711542375752304356111855891966314442308693667051199138153403226210621594397427120765465231765198966424475262047151909698917445511843743312560411206000481062834177449518999061022134126445340065348576158006336404668827392202261921447571115941454757056524353886708217499556288908901677082397310205194838871835498343288088860711036176903323107813796305572738981129127703868279932165904053146896325986391942915207644121837405335668958199426520915206072234787011150784945992637942582738100456093734037384700526043!
 2400476515103397442629158978594216190276546124371007314153313395606701
20992357055893555586437332466239368273381376660988561386081756085525751881822982365620593039848026846892564831572720381963427502449053813871227283653813817411890381862937066879655274018351601106777215442748763186693851665268919096693241241457652517547713861679070746876905028630836414931896559562354278624551587599337404868888059363509476404640422669023739434693813198094553983059637952785004028188017151896873158310682541473547504832093766879887868201624977207965462296599869709286344427118784043263484658241672441603790048629063352273962632643689695218637458554773792770810832099800656037854978617928168238018443737773965967582913220601255392869706131183075749736498210147313999513780119583630465784586218819441497849370098402756006854980263357350276903501334915999410634061547078733290603707231161240341870550788379000898176947025974081263663402332052347594946286477202796252113686448377842127754708906075102553014546480725459627611374316793083227144449518251553202530688993058531948318!
 0619097628180166772303612166067813695171764875979064176720782749004474566711439030261848117098822188891664963938685131934691125989498624773419222103929318565373462824471898957875867961128151109965937010037834603669908366054995393142099942349260195172005600349859404096353991054727739469799041357870226320692025454984165726774279463961297439136852179485034061807728509874281227690114136816402846752887542766483471728545123898591571606211062103861150414532497879130121380688937808878574113569402360108611727474907686345867962597361001991170298696396753605633035859850590240448570523144308227985585804210667606978466858561399205325248703555458537010107735008864951963541191453995475570655262775843576574584612584156310747495367701904508846045178961035630096449832567980305263711009034833683273800925855783963976978875745504097761666099027954291885893089179509868123115630538921168142337958131082941913018538766498384326660489096880186078698996946395195235541223544449510914904279326593168916!
 5384524647612102977323804949102697206319731445768722301888645472310352
033
60880327345189251460428378272357373813799044513964614587724157800991829452769114892564495544578208112585497462991227232646490397507964230600261945260981238603894172852569764474274292893781644102259782780808093811884898286656450750469903550368236404570287861926400784608310625668967210515107875998062605331021001223580899087864525527739274544838949424609773097681032881810483775584905357543698547824872097962396028564633703672244472560265313928132432260277494460178011800643538046561772418288441537932797330316564262549644575247852251514033329218029943636689200450280879301458362655927453036932085819923685824058244928679704700489293410367432496807871678052871557152697953873176161393561325930030985187458526074604280714530295334442483635278630915145811167703384349810903471380868798951289092704710360333677107781408348446246860614725498836547671435078971650144527699386002279228873124616118886865145487571245875831948668196071351297809734289009348299609161372171840805688912848320307378043!
 9902980119776744595260872450178788482758220314160796646845338401373003633935223913261746422839714692012729341080322401486297890741356362043551958301512406087823579905459937055983399639642725428884443219350837396044412680349885498678014241201398479946947426725134575043284161152831893433625782555576248604469892081082951581213080747248488317379714406575523709296204687229229750573904325529358481198026632909340398949735809290273565026520968628278766926541661877936514649996335189185919828112371770580851290889147989502296980227753697818326436580306594608092400801768907232584144129719282424720380048659076248329843266612530268510334990265765785799633057285781580448150653414729103401186510752757591462138595755579846533174652421247970356296576484971699687784598414328136415062658803237353726720510020391872086548894049163339238448057175638872509301231379069730344640283694891453218747968903689080091910769648752267931968839730831363285516442848545438955119235162670552416610116191939562321!
 2154044745884493177603326458648332699995327613115608198673031798777096
88547320697361110696873523008666132573282355451328892707358403815808959340954004776686337388220989994775888725251392894710257611581130581373079256950891110603633747143004818074544707123585696701876163044024859281029412448165330430019767812518488732429146546537476530840785629909045373784763916341069713494831641494317725925735989877414104258525650646992257533386670229379992990248338449796361658260177037602404285435251468929382667737884010050407781498010651565529747650230253048184829022351663490708944987681119612151065080708845289402983031913436947886071972309108790654545592904426962102412650896208002377548637921900582213754179945136773755029344213947834384540882496830055969807227427147523461863844963300372011058488444262822847183566951057836418070908711811976341346792304827999192942334443433745265711851958275817242955697536554765355857153715878867315582373179120358194336859024611689549358454843810218209805645667115227811115286631487979122410467150345412263591740231050726757815!
 6516907949753545695466102343506351789262820073876715784184485323312647481696410450093295263939107255140263809723450742145266346791248799219504249506398350575631670024222097888845014235493326447708542073295642006479990456728288273089736342401635598151271655857087602631934760357479711367322844254495461412410314411213653295907318446626781110627401990080057408513360217113291910191481723858110359763233621594459068606885817458272106636078324721105539882285311162308307722493207187603142835549723999909543867479119041206409581635030692153653952559398291083644405778947686559064269590785558892780148115312960528297396378305223965687979329134158295623155010561975005747882584350683894802720131680054492417655413415536722967818672262975219357296762159745729299827845769995818570124704106527552347093167602108874620189498309990562680354732391917438803528523945196855902262991234055623668168420261406594601661426898163648963226705671454527615520840319977552181122228306946402827545830907880095255!
 3826700117480894400858244223448409014439309950760458749929609291944867
87284244655294260355040153663048572784575067890334206375485651802605864654535049231546366067214955979231996128389256606862453821966213790956141809481962680234837370486445390985796041171310701243314722770694381624261607791747358930604032216117319023629010812414634682390910147478453481264736939378034508669020117854092269189072113908427362640084022560952795366222687803631074992951896334937247807842462077385456462974698567818779464133277559594959198587419166844783018668875825985063358095304730592627958788266281356695741856635183662967796335366162569000658834528478932612307942533321209343130986170013940224515939863015330027588574482615552011632165583054011090247991317443186094788894424719176565857393833615293891646315787775206926098992237784272107622675471362967726528338260458031548818429183457905620558523138467486880987475741829951436089527571148969698465913305515718249017264063469473831622484570295688213478321860050219757949327957537140194691987103391921503460117489549350057648!
 3118480038321070455100031972994606266908170328465232638024224858174035422985108136931116248203781568240267054026506092762957413003945906744527919799664729933275003238785344552182030969527725411833131949298374542996743450834945692079455833089572194166974255446825338646561066514161947402732330689180554887144239701482488141302433322116028228928803159132754604063931447565045102470784782700310083062398337903505920853878236743848746907159107166138352709755851584349132103501222558659285742960510769146892529022359382791271100717798787378979020601040537927126554260278572353850665444666703866631450870991655715371206920784426287258032345585653143785432590390181683860053275496579257260690379957598881347306888807474475471119322401485057132580064528148510649450621787971736653675812418556178181865092565915089678588385373460069351497669402008541424119586157738199026180199575558106225483616404106207630901758560745738847326450713338575654604173253371130280137894079385793643399533627809231210!
 8397002330283646942338620299103313769745072519281930448106053614889812
72372755345364515179843869973757297234479617541226385432501523178083972557268785022568712168135342539028347810191915420343242593460913311364251073193994337038432388613758805682715616485493653802378509039348336224822731820740996845329664200662680372687820264867057829851192845030221581505303564175689377542106313879430081690861925874286987546755092349447396156707592501916836911293037748049551990970398233638263648913505843039964819572362115740772576823369907023744639354292702053460448038310231444811459137953847492391572943127807412044060803097587296697310718198441066933408260496984151577165929551948655816486757794233936898827759003578942127616047047342116721879204887694233196384054499475111593254796176239384985382401964770818520948648559242287732496687300301024626104466769085254560976052527675426097221758042315321576735329075348153641113756403344937644773157010744177623582318651700354720537594043178245991335983391817819096329898151391257543191389833725440528150815457031022896802!
 9957722750833121165977042219982689658324694122451128329498987297002528869278200885612715994977513562152414462120118572601525246972290915140464075319219928173428032761859964570258021156017462090635890751861757530000424919672009214856764015969761597040573694259035682705762172698082612584580596167061886633284026338564828642610385930749007326146476834590415787979304998205059043213002388639330297873873619627553321859580126622163258466407754647657936338085449649570965549194681612051155694391080796813539384605975006717950631025612247952719960465708625384312721919452003105093191236947954585612237929584674483220803838519266315323828450706222355416355752016048458595787727964356640792897731517789254324601637419516533248548662125998117972463576280561784916758392325772236684392313904636250636402302831723001378553839784405960356833268427992665461606721109596063883424295043002336365108733945914246608246878679142241097259955121353439193233952088570015903804469826631106954585363846429954740!
 6804067960963340089659647612335011815471822156520259380056259062150272
901
22242604041472615840342781626054598733857245637147779216047482744334411129673123767611986297866986308024179500473099054868078683929009975257836056842325273451249388464642611743784590176544695409651594708729976507112762666117578696019032897428626383480646025835183651959147287102541609034171076266775815046516946254495799382899617866660985727357260685506695869037572305499557209062621713947039685039523631294487087415247642250606521669707955283041281086860497392295365924315417259939327074860795667414593870684123275004166908602576148758879876235936734754629304596834705781824339237473999249931821377630383752990385151049213862685594862282898029098604098401166507322289995322405622348477842690882777333300252095707163878913757283611131615082824058677480612837809976588122450097507098479143992524014162240532859851784060267753381922826784952788667245689333759451607319568621685606351203502463099283741850780760420477384305325483876359241255753163645229316351178652228232896444831910269247416!
 3633999280535309366592617986442495494884617481328995681373139483095949958112473555488373871125219033700515468040236778326154424065669062240436357919958919161873198530482800619742223209883669364708401812321417476276732239473306004051726285935485411882461399122545993604628969714134165203093502573559361261145139647646649021062754457374977144715508058882686031359661575978888082513408417512408423142188759570263961666676842178850151166502959559786184159605479201785548116465418583113141209127828459690444808181998063143890380522074970999644592680426847344541557810334493205950156320196305397621418073990862708480643032178002476090143977156423120072263543493273799157315518591100652472774851997101984779766556894491967164861686707903757170664835628080325964867673404584205686501819370242695253648169558145909093659078076868124386399342565535330465056785065548655571282118381739659983633576780308871040572972063848194704823330793522090608439862801838670895297949455903398039750568234493536783!
 7444146988538880452810081360625583295193112119347517762845206651922225
27386696926300256656057137987467747226321911039544639384612184558577569269211274469656540715714141819794922961446403902152393652171319701682379101625390563079628676903703669998720101055197275883904902666193971648348114974239117387042271429504980391844092035353505646482647090883162717270439141214238422921600927129123600670102952490482688952858136084943203538041356964515930924338277301069829074003637819107214220109190692418721602775558045932649015215059414233531352862778826912685057008770944176708211117803391613231077884547695892356286062676906368115480861944886505985634982420785224821027355717116828604374279300190532421473269807603593366348559246819120239471480921233284186050062585379108555395006935143257214182173424169658289168710477383110597050998134940969399553351724534645472530194525002197042367256339419925959139030043726038976533972333101892731998036678696654613980753800150074994058963965696044446341048889101877254017581364829927018989318743514757195119016432624565142006!
 2310747654521955306220940907622656396770318223285959360902816252306279768529106713880771274641902570560244612378307890264854860064900878587772245828110243449387066147744535679373207145334080832496103686003164871160455763852964000928899056590388078720153816868605784536026239537615843658764131568954201845166804253112509061280575860518512612612637270196042362190166991290755289148425500020316639433680320405711411604237579803585659563124749946956984951358676171716148613421187649219985740236045258155314008760929919647446288133829073216882269131573555149018421727816778521303836603763561290076854453156388109058718069408177819078957451433595938390351399592322158154787478672620334227303779525481013433488701126988252706945729704429254738586395894031625241817680103388373892597828563795133490722566439821360408060769512299054794220774558697799330344439044199973576079750280203525292863656227166375301043481541454332706533916509959467358711349333821669894856705573807822002173120939153007826!
 5261286845142429072659990570958254860430354523299996515557814617689528
57780536654894859263172911706262038297980160841215931881886962902828715797871793688490402576691969478911970166423079447116300479691660296336654116567141292665838641676558425834662650669041699510798199041563897096165783606780345803858875490439836681107946259228094843989003473574576572212780205076636124247453027283277919753687094602692110264128505204647715113195909759784752009540677372174118439959013507272930599636253552751836512584260472280813050170163645829887952963874735239442289840412742307669265753891912937927022735871589067800740485921648396309083923403988400951287322298306185307149444124552897445431895856118740001809527520962851371172568457262195438787859256273722400118928592109735917744530909913760185710513365526899609798279669130166471364566970732370814846534938788898100994832982220454610020172043612751203153811658299101511869430491144759374415119921482776988466723909198092150851582445610520088718546069873013725536346329956445546387264452326955782438168955311089653134!
 0698420412186385006905379902901129655602973049646054821960184977149958716016018632187928577655514826098688914664178674355486398857672164079809930784644700415892529812120080775469404448690228534770939508682132340733873815211764044476048345552930529995893020716502131845576085163782416290715979408661795263226509087062500009785294598803412110825577607201418877274907101283893632437344755327661099462982029247845727959599586690604600010182553848674565658275750715858729686771675111487265212206589305147029816991145935759706240523820427201676090897193644031047142701890112291972783281602113559756325548699992243388504519858282629103818226122655992591597082919786233193166881062975254106841171086259870307144086083889081617340183945217867616910217840007057215115331818346398109048550598419080653798403931967652618254901449628263813136868301905372776290221408228253205031575814491105214969340080059171842886747423281889208221098707510096094222717960611868752310865130548794073032475585515857271!
 2956851667115026585753721524970207356655428748048188381689438092947193
92497078342691198162104713083095702791440448875294465222880916426932212089143735326343470189414186549875808544389783754276111604821944985733991946416345105882759641507497086868706533308767468551708636722004133550690898227033638087248324773623842767127299827900047237503365691359648505894871179717735895375235172704532988089768706037171689381311492611799076386817572277825030379948105309971413321067911176939082497857595017347343274863356684315499742555434287981387288858840828665550630311692303426240065192461820851294051384109438338309943373235611840834156109525474454266787441539452743808547815748171805542923017257708254215514552311689815984157630331041024867859344513956337205688588906905711908399969799521334483952287592283977865693169705450275524986037593813800658952570565487153992594249997173171679762518307807180065173051529563382632793212718062695948063416496910211160236464323589047724347766517250437018826211584376442266662047512782523518870217898027267280277118227731521030358!
 7264208245289884331683157916664992568216114499034246695153246391357047807685268989984893205253372101246744855945116869825165086315065590233506089461332596475857404743071645102198896466685765093083300456818727572416807670592160435546810092925593956489533295027971567218920273257081506277090717387103132384249600991967666572621248871349920569723586933240738111770557323460902157984722345213827715795803472205402589664415390534121374470050890338715383493907836511458079202721014790629798992357303403249969762406078897321843108824493082661908026220499901128597492955627721746461146899392940105949420973381759438287802504440996875340190388601771701245912276768846757152369655212200577242450365397376969028517858272010843359833984544568178406257490431917087743824104031867141420417203681142989503677256546071050128601831884330590267041359144689996884717833470408291468124154743093009981538425850563276047390876890492793224924095349919034162115446082138983645436273452554213715789152132060376564!
 3461287733464232652794907883819238644475577059500911944414225760474872
733
46424607959246298170464153460651330840957147648715521286086578470735295517681275823209533816373144290474179840268935951138362336190365221936869489539292986105606543505797027155112426086430859272820573203824528633753600405371597766322099134912226229821552464413415294565515770151918986924072986258052706984831289548079625435319741712858425766114028200953496918021677875090640963889389104845046640865750372940522104112800095473196600465004394421684859422090144524292722255849059366382440277332836264503030533539930969877703430907123325762494149601610792428731668526388452751267060300570764109526142989664881812039606387340849855500941732198779667532749962011869772569041446902062477656553506566423759146917333072748915434058300807072214809831677481930217368453700212286491519944808643918607136506738526628029015686800738658482695676254210529864116593386924825383378787521349222969889549770334204786174098071621018441516177221481911004373337116936743087732669730859901037197397794961028429161!
 8684127575699139864921142478781435310883070128710377476645242406304328370837731525611944730557552379109846177353129064424104470894516690488069509146073182689449278788849309395000995070229035343539213325589476525032807105285424124294687830663108279951403992648538194334618029560143112432856484696531717017391253878974666097145394227727410114423938795895987891054566410426814789116268572803599678303987097866634444047449502378053749408916979173853720974707345273979460572492759082492782583350682569083780835456936366817395591500548911712294589342501939702089639872042336081310929952781885040277128738574435470581971449057130415919250755715118568712451386170846137621994813881555082938848375691452590235639700631112601221180043703847770706721578829144725047038571195085880934755063748382935317775380885589411741926329374954300085072224839222875439442262626959819118969563052527909934629461536093616354944787917503777137415907062317596724558368532599842155881031625624442765549902532750176313!
 6294312779601191643050971695953211299204527177449654633602651536565828
84193638793377535522100075233062499389170886030551349824542033286014988225189244497897136543887876073258396869412398388082043346266117220437998133074235136784990845864816666286201110167877285493227258973179629008389380937836886224309281603626918073213564653715350504886916477877918584277379081886131475435737043839641610866845447786051856988364354553941467448836225690758229765668051777774848742973152174071722240899625202713446380289384331452516983638073117992146783653334217478880597728426160203584308289244514390795487419205994670310937677692734600115726354786533037870508825586261691695475273604262765242628038247711129035653109206137550104153516350029477360280304265156068704450345658653273748883138871363601280833913126850405697305826236750606618539761570417421742759409404777662958560993046444536969357131235331390184473101670285366894180350236163261932678725773121497249824508730303420476258522565871384417192798648134969900336823663592588206010751421305993540511823982213935958424!
 2128868015569496013163426588392290351702963854931431202685751720924341677167595367385459589156304151543408885004160670533466540828130700832897761488249696289240160421141615103617977793210297134762657997940215469978038778479401598816085214213535304149794348531891952830115750065558526423618771644236083078973458250523293243640264375924591800563290872305076297036484355086967621331082877017716349377640015740770619290997731183271570537209205365402970776786726653277933085996580010922173623890413584279519335088822145436519113434014342809428932147888483073872577049742533246466094835351665781767074465378364802847096926101318645029312296165994373555820292882023445072827713813735310873868156668468058416553952406315115736792154911263247750126529807086865320787180461286792428807755570652927825941943007588427801209591016637750414014314456516093920421399550727498787244571094135555045015722897094705928715478578423754955553068827716278606818246476471999729800367332877207475226535910397549640!
 8864254765241431378861906622713920337483035553828434447644598243634065
32781363195780834389918402072956331227424040632911369762268565400010623898604781668629777784031279489991707396723067522162950965287896315037828467679161096745584887359347549108669196172246037943326536717532667964275759439960499766806612040016533028504949972860704275425093720773858637004154410260595244937075850036378413818607795676066806461723429500752397765145943294896719001839450853507115250826284545345273757796912248333719234276158203080146280176756282502407146025097160563093176724593076048688248790053847158052075074482030526496689819994025157949423211590278410432542583533717778889923951746366574326137285181100529275734664184818518156994434040881803768753519740663630478337284405581819299431249282069957456142382665305098134466430096988357988999333648249647226676786609483821820069176447799515410064831495092340231329855502076012976597654825143221427726580666575578245211435118357337237730492437142595702958551587115638880779956709924041678394507854184745979089815804130829675468!
 1520346603969878439383081839237477162789771382844434051340951168427734092176907252476310892244466478911687943251322200736515345623118550138742152335445030893885398610146110690748910956635966294815046854675622928941510892372943193195614918231825611290602583642878172194929175345388235279936285889636367951806699435539473796067883863943299218278556841255867799549795461330287862146465157139916591402845873487027052610698170625680635866012816449797246668164161969879886773684747096351963496757677241171938898911618410167572490652812301639681693150030825201489745797388900152682402377798309724004631085064997410591209501570775841414891805283246730618351409517491370788512597534824769265004236854623584360159707296182804430916802637005785921511372201216585722336541374444765941395496439553132516160965801809920877908352579037577267506223225185883060756932318956337473318071536686998849863869143703937913796902175096258692842571691290542002081554697777269088469155248117449993657072604850439508!
 0918943285304474939896300603185187727458210524655774108122548587461398
41024552315469728605615990049197301338745304316023246449926512501704259895981825565238875877954291090967219088355357772498686136615280495876215441732619304117924969971423648039456363099307208351692249539620200838815119183724445227526366889209929576677095667383518896619596160537535008602323364828721267279457182592717871773248430958282735739819410794665642841537352097892288900210373172027586642901183835024010382622694185545174623600553905336844479903780231493500910433515559836118650126049569602591345769365876222655770632075180259102970974492951788854202119297169126631041420914010786425238613208134763454729775317440856732210322546073930167741895602027299203162479753768627807845971052132685726453736242255319250951861718760134511243376299053555461959175254804303890441737617913169627434487853115501952536997807793447126384248899343581917195672961221652053462230855341045461753516028530353170601408812136373334586374744900712868341362130746643149919626458766238324794568554952649366465!
 0173730252699119087348893838082204903139990505627544398890446347223256585859879118866887408069701032026820399164596539398276313976757586756306611912485289248569949554527475825958380592669805669093152791187730205978970631378708933883220709508976733530085556152945784936406639124522960126695960096262492362354350067173565750932462110097876387859400037811122554818628659191302654661216074980353256023443563676312411815896469738561508295193180065715412630622899429863180944708829996977823600837319327593124537302930803197083916792112382203775938691282057040125772444861579782897032372098243141995219135693399070137648657237940901897310267731464770491543124633531492311649828461191223204432979879886545504885502817224127196412962142552440814338331848355485316489156555947284549415951832993178851797857233334982197167452209398227947038948309387006888095009500176018651075682619018212259879110673576574102371886627246993510757585531487585060688926530110183871898352111721543535127593826432969022!
 2339493804597637855809073171634956875032708986570450916388205248079423
522
27535687082560260318281292577270037991853012635237990106194259570352197978694603793409090768169039374240329422244856490624292406904135555797817628099397846780875087378892721735054157216861062524353129717528701700217138926526862619668687123822200180819981055671128721788669286651408685730731420302602941758006147543396996144541957801734713074532518466502487391866312265912601566023637862665201617416091315672128370430238318580118360359563761144021963419885177735871538027980839239623069592894450288127077113265979220538364752490063865053846735265471279601392705742533572399284392566821190075920761228272723860856213827653499339217228831328929444455418559118523325131830035127913792520760388229329076831775728434767105684327997447620079687854596090230370601547443724261146739763761410250891819342787823041883115567958045412431192103441351490269095501799996042072322609942749361962125944584701579942673840826916807034200373342817358824220480345776191805538441867061092786475446871109042765649!
 0961336789669320618650990481167965986055034049205961741584031837366244498788910350470616500092549942339456621656246048636275236757195846212709710103586783737628594551903569480784184420461164274326860787480844054251871227322220026214347989542952826749324038150098184804657007841619183863492574776926460569176755318367548227892033180272665310931271164367933819622800959541330478706842758615783981596678635312212649107416283403637584898673238782661376903593013623242961560311663457950334806960414680959998514167331564166366106381359333702910558095186100259659693358538133702667209303857425742167864290636425462777371245161425008963865385952758013222891865379060793284411531239571944333059711167462664902389432667179611307945823104411919007978388171522300067009440024006387592269436228510839890825228755833967504535432742412656453948010664801879337026477967864356301541959285025624393698024440700414898101285038476125576653219679989499751165166552568035436426047314998069415767114957179087061!
 9144799725227147952932796307353587611207582906805645927075287717611731
26629456760366335713353483622574923160908849973395000823908022708340184421860239715622689469759011211164176352819617880020135508986069980355503955076960175235571734913676580503663480989176623747277794438892098679516938936159532508157610426498077187885831916660258754558558020712496020356901436024116067650944175116399552511760463554583545586837333273783538558665765175565323846658898639838629579349798658078391202883732216541805510150451839104689209505644292618713072718897597198522462131429519367378454725128419139172808431950208148721448681809122621419507962485836787251200849590524925366352557539713012825226663193126747271170874016874019818205300956901210799493693240463863410052260628335978477750993619741102160991533412417456322272914289845315460446793246316585082059900844430445292356835613059585727698497651003576373809488904378981497133894411215534047828538341025158627345220929813789580151252679590501688381107977937378523140754536423832677537259113972316858792687904119567525558!
 3255894326247463169595932379328077397215234131651023326955510042567134781656878944325901020307612993187061171311147244684738098761661329821589523733673235671671545614175551623880797120001523453111994541783387246086759196531569649459754343526241471737702735162352186908458816943326495436096306903278636782721734337872342122012779145307361528442917645937575452766551173616624937762583412326694703866180109952641614144694368666554121465355725108823132604443020594782957064696420840506639720639317365073513173003880445262259603654848636596942695148372191940537488664822469551380014166175344131094397669630489259497232083175309962614307845299331801650845208032363582644210162743101366129855870542291846918585358000259657093610688867074083687084907612579947164130996388859772806057254383677775945949487903959265587631921103227650583873043998704354154077217081533712281697253470848046067848153033982742535460673613310625536480782351719373197638292319760687931863997393970932923584652592525487847!
 5606695873672602507496468659320534760333026702258789399715593846707346
38222108716543115987110832363590150691704625433514220561500233993163621226931614164516346722487008908575597842867209087050350595391102855612564991351759644938784685362718801645021502346566085754400621293280842456354780667137045656851925933592247464344496813893964095728803007741566740902382614245016397148992671505880621404736388771776520916125774301134751954522037490896163122104904353465180190009099352151964047145886477356021465122479417805900423518207667965078580026385108261666788485589507491586451266193098383058348262969071317067310717197280807768484805796587544413799294491070474718297280178725901703403330009230392538061041675484669889573135068038686174263992443690005077832346982406924270331223442533816869554568542413174368857672121852339245514519543662928877490400439455946655074084270251388154225801277993624948276125530109575941070155752457017401978850976999525956172086894340915972589634928359294917641877073511887557335239097533861390461174419754910858237894535948817340978!
 8639450617009227355835690040585622723780649116217992575263587677173378254508192811081021590238831184952959703028904546355239277603766971804645500936638939527129375661836498772135574322758352117961769740289374567771171020960197086099888919748227818340645149632401913419859546667518630438217822980536476808596413487848827651335906070316166008073856450236740863265104795655555239056932413659061767319157743940613838008162286942147836605812279660137868810364223934492899015582775604767214528875269651849840975725311412696979996835831311163623016679676374068208473522076481987519882298630528018228873740084633583983983511917977005782448199586712374407288542554258820673303865935123488499797026231342809325846120618731449057393342952618555683158647234650823356311168990392980746237301858961751274620110241350253016504735987391299668773165788793314681146209300688222308872061583309685836479381171758723221188044075636045626651016083443677231341484618712669394355809447299222058095400341747711692!
 4948572249761131666871509490601304242787861170021809547239131794441841
67702457630140229750183193804488448160477701404081374189395454759655273539614603519113393012231332991332925650798965230809059858574069510691920327933473397266149554170561661608154295217879242085018926158908427708999081541020516351796459815754559688069426018001303557855470271598760068073314518161940783672212238517331773178365856999962215938487588392248992911068712777416931374725695651334300630652273792455105626692188080781183258673136960112090771466579443662883300144081586309863172641906333044044508058228112815488916198322932731818799958851273783872938509699050069095815055996862377712942317619729404081394181360272405148208207379513631484335422793933427765368610352540772583999654861874606811085441599378263442183839384485848529035304569715109912504423138252492529540089600277653873866357415638827431411023599533922274661428089503023576301847389969569687857964761481338527462600017284007661035335997001107429588617909344856882386140221202628100987841947785566957670602082972972849321!
 7283594788507478562688354139604520503273390011597689975923488237896003704743509440126218101094815715133050052696734750515957930241419246771883779907897096741985620620603365776260662003934751458951212313889676805215858321485875621004939827433779291000856345960847872744334605561848216303387229105564330934672192647866563146898144200381872110934389738986303817212957909299112743076719777291578376748546289285218082039671437850793363736950077276642667558541999588569725888941718854732457041265453872792938355542304128413701321311631686167649503182078123352807867036057531692611111413192742877904464559074531083030459561199477889297649507064639716814514629453124294363555488686361248826561240064409327046272099193802499353896059744335128490659363042830104058174606123204394459678619943758818210788705529097240315088518044697672070493219326427327474947465735270631400846002270606955967696876993581612208087614289082438282250827162654510150765071122548776783127104898581258903148080115323482235!
 4857562501636134324457554897084018525624878558411615590629157064001861
938
26787191671454229784270131855635300759233917437150422523687143080286973897230659408747261558320028856056430543675473012697599239121409307820516347305683944357660805054953912914586456418951984212667557032614040165264647181916825561780500043662639868126326051567703737576322825572372240337326563439926101072777491347627176169780024202417454219633542368342108998205098399693090096683351729155605180032912375027974138336346557054527834853747615770729786028264231698956616215364150611916911869585076300887739841331443323522161086480753762756279535732619276807505917919753822080505536085921437064255882040794994568053209984521619529034874717291587880433789802719917575528412495164553897366903667977458510604923731647493348513891310767047816893150928005652508074003360262558797465873389588650455491059441871151078989476427723914132008590273134823051471147108625684424430556126457313179759466908304134034969841895264128081303923795354233955145164368583297176727033879966070502753808844666613249520!
 8470595623603513288763569283104042351423073689830225761893982210451471164975086495793133102305164007027404187229255253125550507519626309014190428815837860801872268853303342603241887419947430948709809007796896221521278204036387184986911556892852678851436920811198966991991759394422276598585296073161102727719303922875037352767460313649872860148590878010890276964810178419250513768363944327798589783499670751064591608079978149867462129594299294951034556123952851899664838931513416634256253872290420785700310050576672387824994229304331876293310759921633410348818530789457862130438446990225971510953784248396404519561395264994091054193480278333814105054975038632521344166525325783462410543137242051343656100709750264749750601879329897004952635108038488001221708113442311592330182506552329000805329609505296747617827764990338046492756424607844006224775102298409044645760882840084383965375725163309086936595011316680590317606539941304678318604500629809546411793222760643945450974640311900040461!
 0136363756652514763392205640853948811565665156414499546999798961551708
51923896417350486164401960282283702310531954944557157779195675885975303666098822024968864962402373769741490896227826267171647090545458964342513581072155099312787001810947933780019428811697138455978130343759117449830503972720050883851002048645276691759729131715166904145869909482996397885788471241582151819151311936465926550224699522520658612371086170777529724800962855738111726435043977239915913533372794371214939748639792624792457463092688060161268332810801373076067896388530352476247957729623303632060797531311700321563157739611414172670968457919889678233174980250090409276983988948694658406197088371187171626789505980379928186879083596767443867394110895371969861829767384589543924411217443260728143441568333778396580093324162653119758863863145759699162822606077903337395378068615499543343966625340413723933605837613571366314849602284656753473188333959769406024258503338228269671602514882648376703139366150304655694403590997958808653064775272076181214153941068185531517358800563179789508!
 1069982071232635714671453116275825250080620098353029985987653456158772655905776777052350680073472116044980648839123443149699456629688381099231793759615151983265012059878144161793289005863320956390449673274096775615657921695125695757343065011177279446769975484639636764740951978746985740500256663043049693037828646730889074067621720816291000927084108802198036646903200660489829526544197361650808708999139972680652562279641804946454156448767012800583944430038777135570780465643299132187060632208151427506224046357396332303341712920530795518615942218913417439346426986003963040050800204287041572959373530995771667761525162452409290068764840944524487082963723479466340834676788924290451598405086071695341689272768570261007189617528775251605114575792348758289688272500582964348325725019488704916732932741441469386161100821207301489450942209156113531966015060095153004215187968005009256702774616975269173663358847895310487516279254152291573647418488012937076008264200657418502417040705431717287!
 5849453496755969256058106800091735532339246553976580561150626685714588
86231368778250270750779389298522128983767573394440612389601946254801496866953716675692027945004146572845670685309943119591039872370249270901043532552598050115712122632847074507459034059643855282087291911849839551668044048721547532339125619945930281059752503341685465676518494539988852432775783503720834777412746381874054586392925447115055543227998182086818796986470104656134118680053965131346723238124944140474145964713110072333552028123385221405072386153693166089460593075675862667907505370161104070340909262826748877502859752375102385452677962055306027527774367819405779533840765937191233904161229938965877540504209331657806959653412589292769002105835347234056106514555429320091707450439470199566983662770224702288304266506904551219438370568467083823573011816322854340018430494979858262176841561991791993512415309491580100793747740403927636888269384149937580571751713447558159310327457741875763711877571322468922722424933777711395755848434693143205619352281759976456338446352366793269416!
 6365293829299473155416026227810434045971282582242670197609692542335680025383489465631124951701468994004640091188074087077329964303094404358183408414175801847899502624738956907547819266522199349674054172881911050332527900215854594317573458873276958639774133830265422515748812728581889273284977696911085259385652172391840425825823144703106476046481450202221028653330865637440225958804713218694501443668175385307315892005190657548015823449154844317770817671252046119649394501886256763741453768645600601421512612924246459673064284648851049761119188467204986645475999926801775664337900340056847037544756287824934898408714007702362965041707501045403006968311235317293403026317221317086176202960434454820954348676369524939415384766753809577355121463749908050382956467090205230467398556435582380712001340517953581775926611792974601486921320263060039317995648494444473161193725369420623475637450478267593973212703372805781343126621117387222492806333639834519303680389259309688995209252035278571980!
 9923805762361228496065232769709707647903913942314021333686903948086876
84743308012268869946203470823716309724704725028106033141647014474120542138240308128347191009308620269749091536072252751286597749519507014468359570342661460253028153384827277644979007768898074458301080580762580282652539846712184990443942589188021880629759956314281638485112094713499524227290966256213105720027860252130271652435730201321995053171120419333856243218115968535314364280988660109585436852601085293446378411885371826272165074541415429092412576342816834642480358183339986607357730940949860657066158440701673506468455108344830410340714330688613506481612313350084423362414174425220384716206858157780034407442240899773795250772272242522163252707982864834239360319936007701578145485499732791495715242047771832598625574711721760004759186861346576680074791388238882526059503696145637555094836455249433184937579583447082565112029771305489059858893604904198436615568028063910169315079412398442614146314527207490634216746665622082073387405441027555277326425726662603254341416451806464620135!
 9107463690481409139488173491501909058878658865756080546331911539579519922691510175261135535365480449153805235243092095683913392366418602184865740565313865858918038882901004954410539504281908521709568970985222660491497703442563415201133543595601620804833457056785828475182886943264572847094155070663900420218474284148150729321142555253848768239840596403694675585587065077805288811843705437076685394020436679087947275769976742717439082411422515170231955326014929205324852331644303361410581348081211878445401680049841863719537750791225098168839594398437434905009276907430497219732166826907868189429886554326039347996027915286663167424520499357683219759829614090609600277500754116118234136595195436476826597435387250343355756076030942645937176844352565845618941330436265854933396448813667814189940353781251863618098614310938046860842389417657170919837530273529460531821774849806764100727806893539487785620807660764628864349757813849167549694801333616458553592342187444390487282202327482790004!
 3809743722240905566579827925407920182719176407315686878899086982344333
242
98461713480779415792607894378693787932181927623832088562198256262053706157053365099866604373352780043029785385825777258208143493068950997469028421232148054362521441099265845132086983569503793412192787701548376684625884851480353282100576225953123843954998455977183661774696948771337360294902432014008936954352464284670390628296129253331756090545801524153362697046334156094771470387833114080455327202669851691655054580885262347227009185683811529132516075575147329831048174511690118544738905002707966281357373328915219473513171507142118196223950640360662507937661011410909757198751950627907671992084156183831262327870536779495872093480853103370037079676981443339865319473005539550361373716903540441227441848250897255434113291414099210105027940607813434527454574891039787039592557677197303266292058500218412430561101471172665885887585811098013622427191783601505630084506126095803511462218689703926560067677522712781150869182409312639832388951433073092080618183670533272221996712213824392494133!
 8450308553742913951006061214064015277299204721624746906019968753616129309594435319670213870262242747134252951983464115021525852171907334352876050896948985966187372464714844575400426321116913066108000759019927685277231229433845375373445561927073184207700352518881985100009105886970246361413394637364036291676485024313959222610891431245843108024918533766365473795428101980063946754916567388220937206795502245397495279360432187604167371252941868904167875605071581918462839749951776189847012014172849225316599764249139615534630455967370036698271392447461722405377563884525060573831172206330995224613827515438426248418305454616142397679580757579289295535823158379105998810001363558358025381930496087484840623244213019673128572797569638089158911415106268293671325339044322044393512256271342583571937580755554709952805865092748914856061501490586722186301814539552715433774411574843014604542104723710659093745894556018507470655512504962079763495262962858574191061198684337435959902767513512428421!
 6278738270407361790182264211619056545235598213465009844346847498934255
19419061256853947121550938357783997339853597992080440914014013019692058848162416577920743850616592988429542875926765325764612786581365386930230643249514872291568341948933977325772383110186072859921382743995531670717977869463102412096562992515636907070979765746223022481118369933795400372890400355281383879166964514630501744667830267733915658485131337332213455591201694281994463558691199010467025724886303914313189269027234278807655956714355081008523328736761888331433062584028544613817909164915113898688610204244109694930399461881564346922592382271542373255618657637319111383935082984473757876309088819066974875034626160773620105614764919585888952617573029866000284492088330986935638966693573658315432198051146302918030353282391251226514579604511291362048141607426348368904872534774146049792896866547180431109637020693661800381564926460176322823546752577251006348108332460496397458189485625071592798514006882345658766432861696499447028761727860740162787937600313403053653720016336106731197!
 3540216574274552661377246414679701634232210948392735205399216184668443165780514857874873899561173561574229271079978937830411746342331723123687062988799395637969323438140930773031667385587583365894879219229299170292532195313106313751699564895556279207732633443995606991340123455661866002723864409129577681745674556204269696639791492485463176155558347884911203132980810938202001667082142619538393913519494332455874157725836948116349214048473354670485252762669909591444857090831604238663433552347995241933217431270826427571501537381144704648961477923432391883659760417327606918396476067866322674929193323161131877673919132713156449130569370585515339505822922629793669280098890127374401107299130758483919483725163875251526812093561550689661281565278504377438567370659686571290407450402139678640980501628716324266422673376138215295623652204021188430916924496201670398377240229007751911990173388725654945167024884231446673301697956493138953858612398111668308257202233372469857377872517673016746!
 8852701156427758200593935709812258690125889277275347751245969545250389
82611668021287757380563685631564442199458187402810656801753185564565295582288616955286274200281964030614391059003215379795396930218519423268807946852791407258771948469041176416915227472110682439096583493681740724391256726014139205537504438778509718690612830895421445090454534852381522612136091363279625618713641431649422139355442206005338273451530798672306688013562930131650176555377047163009150624792123739193705754138726037784409421730259112504923861549381900703973226982708445933093837163148061128341179486313084619959430789684964111687084337933440570079526478025532429988270212239589071572621544918831198911796492255687257951873764372652104196188623597080763708251916019748223448209944333236500401510330803345098734208212792141200420480180501079798561723216473504401369811485541058811972608739539425490862873783903746809883208172214796830743130269381543636845378457615575201994791177412336708593571769209592840288800006291720871627379774153512958050297099442419138076287230850635785570!
 2200290134327092777298737515761662474840473928515508631642153028208352650155756311959083682307340304392715181050027526500337086894984288132356849650072493988474010569473433805637338402382436072538873309111373884076450003773447847091001864804554117110025614054087836992886952741392619379085138522929789581062839805904499241387273763985719482912844834765974014041432598188502453910670591768324622694839736115718148985287706502379213217892695361163793044646771025399165684431444320202981168593661665925520655979568482691676299777340317373780308748208117848767254586837334246334524199414107801536921241598778339974669973954295186818200906496976103678215280989529876069957103569096028371008599789898946334872095708021792336657487071467773673609724639922157532194023698804256015000075840411757319574984167403330352603948097378856539028866590990135840319648037329389860459420398689661622275489436550760002345814107089615093946926452773942351146940111277191491369254378585394835272648575521602087!
 2048124916910185271799518375607328442667718476795407111621801535398791
82477498161858356464522803086323997713849928359209270555307866515564527689591621869203470156455573402876692638413257703601605964596904032255123102029559970989164180907129145748986244302977071138941462836484848715767856779487814312512432935502476872684689469338789309686193721724524216873927185950326411718319813570892707560107929918514562750286621924369798417811414045403196091642478439214390278338683726417115549439630419405888067523818774291085517880020788117679147787731136388027728566969401182727554750200093592740494837691964174174743764309935882811490241585671721186545181954032744630850849001867213652717887423627513368543825843572609765763398593536487906202036888810270158500580830280052905250059204099540095599338281560551578080569277503764059324228538216945892473083726933480345155440890818030000971359031387603695064629525581193233191042017397696851107854510205884117474295667426408627622606677216076333832609244311716326610442814595860625069986860747754290412444646328607846279!
 2080416316171887736540720514693121214325169234294535433247282417296043324790290635405744264355101657618868875755289249058307322668857940636107263471314512803909679409368497933681487571329869781321192473059949601402778186483195060983999490292484822645196907669493668091852924654025480077219908917729196093156605486780271484478376604390600314714645229672337382101872503917315524586995542388613649792989340573091186898229687569221987835267888481656201217993235571811933947899729411316250382377160747601225078909139136007369816164496155077115624751848671864274187522209836992625110794587674427102605491018377141493953846017308993344936047697330192877913802703135070732109818820990421774795824467599020083571168178448830478739147534493519381401175208813705984398465495570550101894746331785135447806050024532228986959561098127445372003405068433161951983630318170374789862663270724406537943927775061173843773910037015604508542441718294622323098741599261379231030639797519629062149549367514934829!
 5534255732673405736625456387820877247801701251910806138076329419104837
686
20615503990171057754937943719814986022745743276873586654721193724736483688847386369550472304586168757789926241799192428880868466327656215489453775846426936601705490410696791396585650472314269792668892085692962878423316515400879707948404460626602059142071572641491184272577254451851792252299228998925524179313295561629333876104160849199666317442308779405887350839478730728309916977398349794368477463448015790691042083874953549261759171854122935975189900892226217219144593067886197603562218812780638813224563555606806941525529789749690521025558711666880394625316581559026470171799000399024833401918474186111779142508795783220037431338999438878790174932178328570913622593452398799211941358296486042387182406741709862281219018573336815685703235943091990841310032742416308560704018396764542197565982152583422886796490617533288038337592518802135578893511916333635912565307619634468859555567903193134267533833066316434060769725033746120456578575427494456057731809473490446364211529985330435369838!
 4660984613766934308461700054908361012391654874021552018074383204637467839049999351856781079228972587469036774957913385350351336075507321325600291910315513107283177116250772551531257304962327220860225214648402202842798593292836688799077140819239883785035622052945336156802820375313954033176431589405632531123586823947289210428147770904529570491287593524120513586876032845142582734694488545643193344560610392771958212921941310874666676659245749138539157944635523988690676799695355659403400839266309489156370515518332939400050322641708848899460174496659076686847228668101834234733580748167860825699263614579414341577379697276195362514816047504644571393528525921757839527856441202769631859515199253706473854375073484198045852310995245664026394525671148305359686783111380040816192340692340326098970410456803793483601054492920692731323910928948941612252877254172588071576980029023276929926539672222312595423789781879617297369231269862904132940693047792690340796085936969553082870633498853589806!
 3170379065510234555035981104722630784324378875026808665286661970123584
31075487193446996135110246538230763263859894685743530656058275300173591298306951563954194337812121118044070153615314384579873166672036184046659229140007286157047092318388883712590113775110154672815683126173135845444955569340401606251591221445202630400731678624212347398415663606157002295757951259606789094918071487219920115133860334201249033432690190315247111117705376749037925070477108000780724379721999748678051270543865809773836608455714159223131125076994385057495720844706161764642897016734248531307265311314113296922449973258986937933620538231043046881167270296781793531514792526227715087317841347201175082919918140024385165187293321922367139330218393718018284319234620686122487712481614464372623846672273871692704343226676282133595720865759252993357046930167137706293723161840281281466540339392997647994508355635293134044814997460821573143678277060209036200023656147948179616695338982033036431519760589388240313104586462453903945756376887059279419144635131656563853034138055116073830!
 1152349650160262898331175266540895142764548739436429000310464975634186467063383937026404327199934445017653621194183980914054354312046611071022949147957282230048881509892880052029822219560313715553191807236758087351573949415863863465924264929827124687428737887107211779609342852822185075176120316328786505095678597846969439706685743639441733419056383504407294386217526100606739944657144525650821851108112347349770923533060731560343833666812802897283552949783468612079306536662298488684458973023686950573180717092710488020936988600525942346855824214663237148360334708879050834675141631859978731821377113609337967922671304808400635712740447619016990212805036249551464937562857255534722015529162736004842071745078807950761845913606957788248618747949602794821468325536369648055794751958042265961817575455372575780063850078828942880154045147286645076936364292616561464092376099194423025307177606647646097489013007128320670095834441486795964288442656533480626985008900143585979343204954700739790!
 1976240218318645022518735576819538466957130700628882926375616032787642
15965593125292492422161329574504065382201672623986186616485814342988831519203159057960073366305926447801768242805793775192549911613874081655519618008061914487729485116625699772451508213714632819036518087733473753221390179569455469855894609950994481976623160582738973924308531049444078708472699064031783593529046138482240608140130673921194035926589229119690168304343622797153048445980731590371353990852305554135850303305994263075300844749731213292281390041493729257315810390367157343929813723660967707037239975647113138365036061040548871609861903961849936105390323056035908952716521688244120760002937772054200549345059959328476579144513894804179203585085252993874450064907705032042624603929134791860529641815140735430834587703620162613635647536716676059747800859031429361333792933191750084855096043897181104098877520049212223706955858124962571331447606650693367882768887310324454243982890773510726773326678439323322019262193656446632205485521963628598869821245905948414538983552431719342491!
 2990061814639592356382859406169029756476311262291466746536626582357583297221661709968921215263224954097253009276090968909298153985477810475460397048056409701943861124378321613301721735201695386677893805184729999611330175309536392020079729438433442713241962980107195951189408020760785422475347076597267957086043738013371561484930232571019813287494389614948548783732970942781633625443633308269399055796881049489203758750785453764050536575757195557194024139210826876090887690522636865403018708227018835475847239992289403407907951367963796350726344224554191280957705903158772555892207789691111868653692807238302403892362710498072888312875535071751133424809692876972015866751891421714342557639048959469858075006092798100439092494524081766250952741727415601614543159451852217185574955268475277271673891390290147202350598954961574173169890428553994402830278383776236501085909369192015402769486814408826839215934253185968629688677073556817836034197051841911679193966183372970001938229801502724830!
 8350801097177309111058708948946723054289271511824641544091066453295323
93545051930527899093172811499649272530603470215987196134565002063107133613651786165441649703573682097625837494386303922487734357175596671101166931279192046208898287538871071536313688155466795901553145462365337277109419292748404169131454197001775401916619419279523260188825373033775233601219617116125553889783561767083773878526075631342058656819701929804205050345095013583730270205832447069646396922369063859331108112201396771000674772455361451739824657873343641455185212468580407288018781059764871776307978933254645800932156135484194842177917559330935785967194699195056191293167993441194597294243460001028579758994049694365666190975793295668054246701383744999094886569721752978624999444038632564887331676004076776907176911021713324616671369335776775179668748237981197416413893296651098321913188912306128832130617534730645943263123690219424876504426568006403723735652001243194823731911164158611994016234561070555880366626031622166878471348964997725714436357031875007532986006333082899705127!
 9145819777920607806942050549492682044404634256297157534094927435579725160157207979726607019969187009861222418896922478331223069883519302680013335158234809746911378369744867632078154664881263924082841865160249149549798644272098660518203571764568949935602043071048929581586506395191730563855938221751430131434807598669332650487479903805646835095656163984160231551047965988593168474522978453271156302256796382458057087383359848615942699923530317472056202203726152708976066846026088744711951867528525005617829728887196752466048954131079105130025731039262690888474237156518309916354673745723994383500092516539191810184237064182784463199649055288856993932528265626282428690760469591229338888263678905258896297992600436583512928591660168162711585038595099200450238288052578716079991485779511741071458789278928594455422975748926639149060612255901846742420489830696032609924160537319803993095803184587418756119655169410302588427461326771528604167562599716689009197446205707887606193824714430682007!
 8699951582186915234809462059947336728416187438018376244684311462271997
183
54041990857212670067522055708177908020764223877008302314596324376972484302281374748014994596782976524511116475628449488239112658022320723393967248735348379683470903721727807182199304579617087484668322607548311946463631629550461428918187034402551606610996043968227976008510510903936291091994211938826655136431104593773982337547022348970989382383349606222414458818157174486985800768017680983135448890807309801045982988406710128613818555977913112658579462797634402093254046425652321448785499837045212678648629596772359938670287589062826992794921488808890259752971774789067202993671236787634519865957080118747717986484510898251955339140452640402757528622015609839097436788392343368690293794902388062976992556920231250427705108943509783202370260907877221028883869173065202970742687059235430376889847491331150845727240892727685293202568303822902698549830926642798169621548264378964612836838042073209244634810624823762867848195810854733788917216503370931716230082783544609535500015708732585371829!
 6069755081704358349922043478239737270858232696362370176097674845003041090604011687748131236415722492541367350659699997435146831130004790437633894683811507504479836224977568918706331215982573656934306098101058107512832028464444446692258358776454107654245446160237778278842301432414837607752722866645863176868757284362034638726464703378104558038408699001847001329490672016291067320866560152720035703770087723639337084619152832048823114035058253541286718497691898740183701119711247408166154018970145776023023745038112311099710264661414041857261089563696058312446625103344217698695531230691835330056188518487114675653747128425378375360270025404781526769638680028149067082684714366270449383420886829795605591530914319592305379389709091235016831752315693892208172366779477179713627192414555888808601903804074946015109518157321992631630815367277863953398265037693509319621749307103605468274638519238401085893804821537960570375541363419453179102144027724400228595051052507885300563625487962039630!
 5141675053890281548398938260561846059692543092305011844820244405735333
99486462324698616427152552041418394545883390645070021120281626903764372367863270923848083570492855665422565700417166434679427056693169465903559002500981102046159970692226960430393134150112385202084330783492768521280232291152519737913751743284056717195786548200968348394935498706334104510911558023997896555372867167199806356218822908985971359456599565839007199084113529007032127984868173787637691975015965034762104926792800297988281614426247045499318735873796114461220750417737680384233088995124892738217191170599517713453429945729725215214038343046073402932129297183599023367167551902048367988934857854281307409171121274913518896650388059503648866001930517747973772006038594794431466501041077192351722447258169876135731553947360636102260817195494774873346575307697623829299706659381130355666982838308327669547610966886531811220411325508888982062797980648030112172279233418196079841299972072008841839387221139034724731085153277483669837824867965448539605467332451782821837371290684884322609!
 7503190635530179412648238953511473878639950548602246000335769136031838256952239304394162767786502263671590542608217941626062786534137817872842038156593007446364067398966754926876493957184903132121136562023902615229840628730956481281693035018696850371310954723293767472224785729641708198589405216965981052533788923350319872584948893728640768329664533840034139733684656642998129620745325565166107548253738167396922771695636536682581378539295928048639346240680045612897367776564992644452755616222399431748911099786814130034087861609640689091934466010685781739964966919294071519797706196735563278083037486762428189532993799350174377033041267846394107423900040751986059181564659477586096999941255968962286988157890242657789777920452894572685978801512039187864497160499936222646124958687721434771817782721540331579087438333180945029353819157281454183268211248197232597214322349402628954695747621010807874258476571478016088334049625546506324147444237115967899237058982776656858977194579259926929!
 0408338932723324793025420327412082794436936354791397957972039636639578
21049584163144039654240938604752833259243435007813065949179499077038816705671448564759014708193628846063438708308730139992537252983668910410331359439434771325452511125521110927987277859513827089163665909520741709275251299026204554103080348103227000462081993134977410339699357052008134906942080378722037904643828902499024012213804633979802421821068393468508849301679182896621304254933387996548743861093208514910533275877322690267241292966256736459068755914896312050174243945263893979024423237032649035968525782137809651504544989318660685590975663239442261822295196564215725418090320998044966138139531209853479671146993426949382451496674751598529004751805276612260071977572249670815150580391434618240125218092935634426976907759366545209082025060278046714933632677872058168159702504818400764542843654950033719423356553170611002844230300420530529529330867637602864565461103827537415474849100931287259564420569761099930208810403531866948926239609953565722335747574315878618459048319664295632227!
 2610527164819839854633794370836572964093948882039748696069433331514579163972074807234334427069762865685088947309498159719068311061200102867523095201110639978597041881942784387319179548374603671903556930383994015483738186262489261815817546723094662836205565121691747032788728457031534544485852236960697986889224934532820969343567616792601084723826258975990526379232591641503276362559460774627417043325449345744488947721687627182772707294796799294070372568210612950899937024621719988989446787668627345794135226403349817753083399390670296652133803469837272890532476006619392545820659289701415261295072742629227932465791704383716269320753650111960155752594694061918181848737771342683444424052930660057334458886905888039317748451177410239735877528228438595867202823987437435295921155624322438928963002729105687288726816161177303569527231697743695929142484462118989457501169031295742514828451744198713371748657674635397474576159541608781521949380382190631719785463648068772488618103918944897507!
 3053855804909207963214830893523184803790906668134527178233532246612521
94992676529142759089092262117510817467050005956809313519528400804390075726178665775125745288433053553174841429175337424877509489933543735835955457882706037397391292269370301243965689712377394516731859670419317393074231020539449279372556695143497880554570330590834011304552420883774530182347148368540570383980300834901466615756278297245438449473653894739985342875432822747853813731163246992938367029583215296762931690157701637645970731154556827663490194825042032716235543761606289610103177892081300713313496833865486540725269994243818874654827286727227810546989992436385383891710091592717082304906672765961623781686404410858757454793666754385969867095547499965912023647186302513423428660312308328872542614846504913339140845571348974212133262795637514158859383437023288367636142721091091632643811993071180581370532052181871689034040842283314956139714100091017150993735501625049869802128077552418620045870896844438306344598949555144009876519220044348268870127019830394069224285391443443769252!
 5690603785633163635916959756362855116855631624525027754537619629428904366194589680239185158067914386065545763066653855089791671967227739752076358291905766479671803885645388188660350645431683355124532052382832782772109259629794743650827334190694841174771358669416235515154189766502736524377829273750109051093082586789846241868494722187945092867305656472937265721055693249737530172030034298462939903576040553269480197521260030669803843503995362245864967571735364486622960867665022114761971906683670007878619525727724960774953015827040191563034896276315535912935217020929815099957118977712469085446761448508350541333397848261343953149537191502413214925257011457627010326835919788551641036147376475962509762230288111889540471348042461791153854163232840054371084642690950362186833728775644555584451321260709365088896899626104066097271490158259265168477635062365733527671953832978920009067298565323545222748165410194800740749839188230279326391449423695735288995277041099533947552827010819433573!
 3697184319508165751817731361789203722200462320225025710195997579524022
444
77732146208376008348553877306273902091886835251019639767078418503278393034561640141876545693800041666721878598301833249780430668413708789977806097087513122453733179210477653219632269292062444118602403823939582693848769438647992158275076780160750653635601924781632884895067393170475081966462719511896879259504855981422537353491882022522322545270640311004505864934019626832439967502709419772579999621126315498180662935407155836102749719065184274065659372545125747421356527406125514208736831953589153401830056437614755600059018875594324899873423544185362988977246414291129851849531060905307036852909517474704662175927821270284427202763242218865003628293273448127781908247371971787331228262452933903310566123136943767215970190562786251023149650838505178495474625792863354846764750561938956048712724763153542713060257324619707305889144995762866108051940160877383993594759687934206306164976101628938474378762708398093652868909362413539742230974044012337734528350622583007681949535057372712472914!
 6302429342011820559428587540967299824774332995253289388910288262385002918686066223060076954145344014154378027435465277981124805950108815688653909581055179251789261685947619890185128854853300197191365805093430865137339156714425310693345585359369068057311121352209014898432261639643263077611402495957275755180179589419401319774573422892233099739196245423781531637399205324766455348061014367306832579576051667436473662023462120548832579620677794658961534666628496225125599883736635615457380994239822341397785731811852669450921933340027839566052219043439079521876952862953625834511428833741880138976683348345199235437275950997248847549985348212875416021214200071674252732281865847130243740380124721275771551735438068693217817098469304772138693436239351851772094380919024767919123501634197498300194349251439227328399895275284543098006139755700791417081678257933982580345053035043559971630184552816829264227963795173998262569721393103488869523650338876723534591792138831157879766244044458568626!
 6118761866077854423457825562175139151512175069970282671214823537616753
39029972479438694009843980337239260825759149712252496999091625168224188302770648315381122368712756122608584023252177282389919754616966871004680666839513940546830147066324372809717308526175004054058463579964387130602504665324509851371135047840666967408120622808495247082736778489675066868066569520461593590640327826022810236552083797774909998813393057249306686654387869383628943125351751613853047656960848342689216379531764454189162730517522167897208041102237228388620965663043269375053812605807435715564425203015360659827372446319420027263684000729039135232160978068208980025039711541356380741843338384377559456889934327573287635899539343330132152259001208386005125201093186688267356726049987995351226586460768784544884183383413662542219697146325189211728250097412198388943799647742461118287564927400801095806810716319090555440663768419924830303824453861204763918078777478409553293677312666506230463491542094550301318699283858704049776949876230868160119822506037840778293313714869319557690!
 4124809600289428590147156300359952118751134960928464643882776366816444290872354236562624184913110970711588110759956848824186276594293115532643553365781078624936606809735256728328243880471495336516304463220419935623776365923546949824861222404369330506445470866983819456132717316706287211292233088278228768566112936704043109736681582156652530953192735760657553663381308114126150418274259197915846860975661711155359265047245289013979730748365684566763766075030008038868274480925601952501822877867751168351851390092399073510597032706696191540732872891168466075052090920060714564638393565915655426687110625860799966340457758882769823034744991771278741658923779796117044330665499088194970371992812185309204245501010187280970744329043394827028863200729296823007160613009672672956269791838625419239274660390007121099734961053233558472567594158335365038969578883612227716102099081807849942356230921096520200749681909702336820464796210938523210558762150886567676848354321163469821573876550837832037!
 3381431990074202634978428101168489575401021897545070983266542762146933
39080399046753111520241502483200566561580635979236181932300762882729466887837907885397404896953393147003113132449309322770532613002885054342907789006340319100228559937419959054534198294838865764191083821664299146114191054104072171837577155061513515392771400877552001228409781872581662708931273964546477259808894904638744412033834039847054748264843421660150604097870387197604533296815945603974179277038661169175403060560427594749273731758060875311296607988071723021883091816310355469967899967681411322384058487215045110977754130927334808561399431389195645917913746129612274326490289450582869601839766326676818486367297844296108245753273532378558101279916957607536616328445715479677570022259203947901245647188595273323538013204986707161550915878288956727461343961549590248105267578991639561562922800247341472909294565424144238427975134894573060583395554662066270210014102767079458435211648908816862436979656823419770822333130158028218768411671028519113734962555044156500322013218780720836321!
 5672758328941194293009420176277343107493222163016969037110211968178145961129850803567824717557225952337646404023992449941171332270648140922089039340677416590793358224796176127195757906232160753334804425925247216637653281249173787913554545318283886538707564763973408162444498793361431231856965340138644220930574391287276338158138712550673712242883009985818632101563534940227831056311703310767124990400513200129348970272130995215492391507859042140268931300460986561523614052530392725431314097867037236715981350870414441556847409342428580682669188705870133146463205081915056248476004435207080754087821149494621150927923356416767368335016422842786529339283279284533215152892040943012000817086185841075044157621681026060833568283697384319713651082936212468002579767991155399907648403804992817180375653459518384595099340093392603110508797537641335490529395708765991342899729770181614294760801328372843715905906287968664004706149178465951433808979790174722888221305314151452675047969517343623347!
 2615330300093049742656539457947474078856366781947087581203460486212211
97326839850319839880675123556072123142248397682069335797025454114267856882868576218146166824675502952377526614089492621794102342151635411775702690729443076957090896064414965881671742121668318114963709144779139340867791720363604718337590738200996909450123084402978243198983074299124747509659505402432113462983344156393868466638451130417168804680082835017990969544557428581327744030140033636837871236116275322391852009315108695478540406038514296753370514492285816823175467578599332489704331947481163136568762244209211961639847807493990632550658610472649946278570911848293076400523023957169404530229774843375344969347910427880464975509168928481102733559380944046934895784831966191619156876786647442091767696146015961430071187637115981843570948763419739913808562861781819516833566051319780945322585426552516534052564189836041918098775647547009333545646386374588183707193089927774747776519400712100160212924290428843775188556969379841374619594878664049528851797029944034170922571269836434779234!
 2000445089724019564277684357400046918068857882963825556857695524334810592353696323776654121361365941658964893601269083039121890796693463878269946256898943238426947900195449176490799259672833320150204055056395822883229865421520127390385712551158338946014788267961307059368446271407317663585074877351536087854710599450815737503768721757586689747637142045085859347552037159289414490384555188824778224888605676817948448850542482711765602041275625108169873029478991692904177807320820294539123872885057804711502794340678197206798706677346899175968570170964221498843862131723330140364840906229633661397312051267854801975140106876149786782238295155301447754388009420919581119084559317284191284475424593024043441560468496036522322070391819795473902374792889430628755879895504346332729229426581981899384964339039017485919007454985194324377468897151635061784044765817263836980897975093316068670902736290679673652827703154632011642375553779929847464033232739853551610977778107521262296894986051351716!
 5602410287103772412940827807555891992535075849715477021490914683365543
223
10865474877713862288757608100792717858979025987591886351963060456666333631921740794453033459277301240490432328916988631072549085903950130666659273011702603766298106832918880154007740068222930213859576454235684172436497530339103424759546679776970800273759435800647152486835066819946207850017810354281282583528653403952123279660353632408223180898254477105204750370425226479722869915914522430007083320007429597732272579503765299376768720265918931466788798396187665084089721207162147080505329655306838233758647809970173621775251826622594488975554791079002943280737776954120378881938575336245355575553862151372157904856451955247827238390439225555860854598378324204224899605866221584236888878281887503287720578409778708991012397962235928130415428146206709469072943044276373570795194638240638535397538932514553204039865813187666506718012855292092902813884649449913148962151109657353827367110519461256070483211206288125968749690533254651660985515328470502072184489791513038599618270755253508309417!
 8815330737133334832472877747905181060994006506218469579141609025863337653702695033632515901240061077265518504085743720504028696419034506015434148258748213594896680516971622041292189090136519426616334910151777093541878234115944342573018458460479674977341123967367460769375849063542999397454530071743091496740145218588375807908410093952825123993941887800098000852983250117971552469662980523935942605334256683484171065964689960240675931818730076077165696460027491847845392837597739561010543622972283307967124275958191338179078340962140827730260945983024116813392425402102479082958427192272091231049877774360082282040479398238357631732443171948315697133001082852534017809175846522941747359197349372218733486503775663769454517348058412741929648062378847469600323632964560718750085619940062901963618143276961079101024847744994817747303697518992281355769357501446845470381796435604192748202966411484264755388461609284317366732609511714145514664208775937211606640057131871831940378249303566026421!
 1455546550963815617175988326306606354150291012138175740705460347589437
77657343347443313614570695499585520681596871920795526467023503228932588692655211583740457176792697869830936584416052175398397969141646921305288712473482152684048633544160366671645452057287892065390396896570098833039278228312463988322593681848897300762029501913922174696391900812982244757810301784071241371181333474206915380637319634203722700135312823156128209273078733360657318822433035267753616851440128481421604692792800626149042372647529552898067238689801124635261708922360941951429831850549387764220559839784235496068384308044463091873898281103232617494249024592968705429095989327718867278818149022051859424964978643722019150845872524151377330865901634373899036909618394184660480476412857748573396024328884856159481653913099507843261527612427437304198132191310971382332353652196256565684132100997793465867125309809163123694545655240867099025795737378690735707957623330415204577601513883455847419623747926673163943170811046161492806358838918930129277650436642892222952486596196474250156!
 3936513045554221841369811550560226456922426884427092190824913879746046884262153522223215969529720460035628448018051430923514649064831558147073373909909403306351628476364524307039902289069103226906335776036486055194090278268031593780882659283867885892833398144312107432421057444077972553048758075438271808973816058294605104830293838632112044063237985310181200968004784013121041931723115880198941289995094490518235202855017478454727620598636970700962150536736780071040186618081413859627807691530330859735979222742977968064432368930843822216161344502909244442413428682045989239144100586494855598206028492271624778702699558974228142701436725836202019104692411143248113656782388531661678230591013029577237394942182206285322925329662810562789429374661505175320710232540395606954202499821431539771325543297586855252724801325259204962363918642824022950565291717349820738772748645347449926663833468080472843102113780927195036693983708889807928735328153398474260645007408084432945021048660235279258!
 5313312965313224536877330895416706614836311068277941901052865443855254
75882138943087838755469743892676454966213807228842572393450520834542156644577393590327231975817176591609149922300536477728381273341666225338414722426299424119246224009785447297982912784403926399816969824983199881028202402018949606067126365661007469397089206468940335704923809270107051053509385611794273021697988253541628015272720389796835160423690238188359887210402920190710560875100167903711110517939171375466236838325414471785938653029705646262609481596059731112820725571828111332460761042177477596454839111797136188734748786825398458668974921061770350321736670657082169855598660531527270236429296210603327629512934921752142974883617498973053872979523177137651695656076009410257209652641367228047189019484536577305232471845768564345313341809126025754013903941163886109277630735614771042982037148558809988280770118207688604358180555697428951349392085027036099852913656672420004093406815626648000477503692670100671875654983026784039497790284984080411286490427373187873235749233515777926654!
 6405875527019733174152553436934333587817743947667698653410903424182885600468244271735589195629962507979082737456067765384902422624243413944410514766832862609811698696299573291894803130938365787720305440635688808739217336431685630197495882407785656469110058448506322174856027869870825449234350094624287811424792557092875881603713337049894447935541357861767774259300350199487881893546457069989802388428594340235293957359036387799554858018444355982316908424883535500656784002486228853977905919021010083266439140423785834714153921125211966441271967985001403777378161139546945562639343963722916983970344316180226380185350772747903835838776038137578386470121363152065502850438209268547160480494467248770511152956399198461966070480199092254387591936048994177642432378782451275097624575285549009194966343005632504215824785039438656573470302650698002722496538162275541258123830022466850559270192809527663208055323913607488598549525769899507927614076643457646429097181815270408434116864875195291524!
 2506986869720912197272764166399894803529381557206103652854299804227933
99098463092628786791888447458228183849154137902575761730557372190989173358087060952118139139228370173304768818085099171090504440130249073627223745299812479422165881185896380881296789286027173502479061364226666970965563306010179050522655425750442591979884309629281030657817347163705682133316954675385257041275570407558625868324966666399960771750714245424347638073499350925572652501928764086492761849717304589762514871648859159895125537522822295535780927551577177349425449406463653286438873433421753070279721078884393578408051947775698254173932129280352819043283042266081152776150337280932222161462728022551727594025891404956780402766853683560064837512119565560379290890174970568828924953768000551170445147090402764770952661261789116435270849476633363303750476266818134938316846983860367178618075709038409994416681888508857156733750859452381605828850594971914115773519469163826632910009363196937626265633997143885908306240500221068562483937545166453897795264550145438489917421968312193140137!
 2995118410097509794199237468840954250132123647670753289568716490593510289684443170331513881484844754291156551495493239860473470143099453095929657329964069617905657189155713959225222377996616334929240926900212172351354308093758013216123137754512348729033561460914816427581049952002360871359854964801275969333726114878220482714165428610972873853149810697327536968559132688931246588639737786052796473145774438703755129143836310148088010255497501850563438374232649428840380798143255578001639249929690852845898363913292517937062540150226681735964657598594163322441515757367266219230425695566601862213826190880192581203723881546007760038590449038861766421200157127662440876305292839786002937708353109004391865881200087431950741028998065659379888701230973100697017955799260447386963611607865159837648650167943285933431962812865551608452919059142677920493990411896788778786674303929975761676465546813424735632581831341226626900374833698503187200117460321357251155487510227692201433444170414759365!
 0389209545499769900214280493035695458920060089088122898084805497614642
398
12417065357454304376304063168249955435897677978729067940476948112679095135574378201752416467534613297580009812957790997270711903936380944971395629625872682383589471854165638473292427586950984276737772192332175276539686606177282371596570821130355810363815182791325694461193091588133531942734066542884074159970819492402918388497625748315339375254667365082843965540113896630167639046301783547536947865239365547983209434681476337898406578472456142075994498977412875174494581453465738378997960255958626928073950269927756990776084920221558974346739263779175303666438705307148525194702209570892828636950493585584893209095586866702334575543192545144251812880078499151418500330138018283582919167951015135063258915735687948767419183823306159137685922349833225083199955278486255059084867455046951602420521525235667638266643206244011346246184835538231919030789790489156492881675694951297606022618515957509091442772246331356835722350994112552809162282424069411322325689953200039030202196968217386130987!
 9698007213116386203903272971919955577059189465177709310867334359701908675463750777494181642136624587122836257130969042522142409274144442862946764111157333902606899283995914207344591821012987893827130475037383316679578727390062834881721234327931679007801792778205762794247419639511777509457395274438958633533473679660705505270121425442994790804913464473573810923689307860356623664611507441594192307991226358053752635962493588388549945357860888234906479016662455720947882310387009991721086516270017412776478931430636070317268396116681796735997405243721801206234819404677351511011501357530393553613503983876540463630317292404004439345422288665043755952167963855990474148107366357622269326643306422466225136196475599479394475167428303938849538786086663136566087608674016868254243859509309839009508247414611518279715147925387823632311603910159790837053267613356530501089255973694782566935222898154208014466204855019765323210218161662195303465718412880165026448317775303785757210757216727037351!
 9222403141487053328125560252379096528551710604474479118067319707100206
86033490952336928994351734601699910718450704909528695777413179412053056639315825980800945415945684740167337619934446441859524845857806791846718267214579330271628648423325497020868147406915857052483014262513491301317931897383824525493171754034351063059441518585179933228918463985687661286780829821411290668500392562077476960056653243485162514854282704856142333971063396132693140524821184022802087649328246007079295186711877074641645736456342222618471812428438354882660565417559049879536936295956649725411837193356979846993998266970823283120991093412559948081987322038686457497615007315013080359405040673405601232570978746962918829946496700955322993288831623762277023446084161786295841810033059517722906006608958130305831313955885880482762259625175518394264980631200451271810019222194970576697488445965926929976916207972664234143396980960850145452991168678452787722580150857428597643180504071622549465121526895079761409835692430941746765451817195667472044498428603269680371841082593827335584!
 9743868558051359522845528759636138602758981945310017076089442733247468724295891164782188536209845829468303040751100830546676612131694944656386623369731490536304878907883287404207267338339692583482813533324626119663972767295769874440365471360016591674771423861819916453062722898155773566229226610897177977150083462794644093605843157320637834761951700001658106021009287840443568206520194527028568264322176071358160175222197346722332778027439894359711559780381276278065260467038575085560255608105166677818382636916211202759547635750927356103375651797699465779495961144911621311679160046072342568134822109174704161025408424839924042350962196912636812091643490379266934922254635101740341015465437528316207061053908212266935397141446701638713391957245620135139204050918614732321829361951891236454920882390497224882879142572991339778222478186521013391414371601077808100071612966209368046726337703019405918478585965573088936450785793600087862868663380797636890280780619857010023224477251403933032!
 2119572056967186423880232186334776112599435486499244747516611783603166
95263754160436006356632387105927935792175687119998228111108914246461015465535659621270420999440319758735153439833319560989417309386547454651409993893976935539224586430358876231576156258615874628728187813371123513458788378558042169776439852599278904996242906538896215821222189788781162583829659073632484969779876120071306818833725190037037740348722504297349609934766072848640001631992960669543707142711831921409924423946958256654205419145120455361423648841481602605377486614986411028375951629099962209123298192167833923964256139072775365707736393725119822973696786924689151371652648697596513443576712282685837531440126280418404622869358897358246373787848447481641210733816758775922822307915498221080479590434831933876343307339949925194243372136321191536581087255275493903497011795310565274368888944085474666472727078090980804699730940520281612958244606562916550769680235614513978599953561449185685794960899022815409931896227352107475824485672452619510048267256152701723009343943029068805301!
 9264553530429770999782891887127297756731225080121569089892104620610303265419535588308434633118423243266793502469894057473910493235573872862497868075144049873814343511838525582585965084861976534830516557746535484925184706235846361128961231063475613487829196208080290215418895671695470578412636065128050970044865339456921267610746489021826015136002176404207593430425154960471216560638269072668810603281420474122008886673494151799724644431487852302819566773009243452527803547237133249811211144752719605172852639093240007410085041013534953404377507086826929095896450567776975505181699765477424907498713768970805422231030736998621442134449704808333886290361924620994170065952755234994560840888352771199512564117887487755426906953789016658371705059760688177908491161857021874607039200411210127386634258458451236459384881049049889171246857392696221806481134103477999102853345043363529355994699910797483860730938322241856554365049764945838570957547589241810795493776431689626073436458913015274465!
 6521145786141557709921049334371327654855020781975775613019026316273124
39722426741466016940435362112664762066895571814714997912220390593604531712953095554012285510811212102657296975654697231782827535893252633833111069657658155611735948679547594241902955820124457509075373370460353622615497103954431129334077832390857018090461357962884855271634026996506312919099426969596622558949797562872128775719854241967347530158746347073305073784579614535454252064423087824084140807846279673687388788958520447092790810107121198779872783592423393355755619371324997959387609841477989821381826503432240130638574544885493589707048625142787242965210065664978707015683883864539959036508017111436410426627869672414199832654733411128487933093439580866789075434070202679378477434553526566512929013433723462897801078201155221887239373120160937097040686325536770926191900398941884114592615370116668658956367315052216330410779848867721149416004662110658605248504107954794838142514049963682497073968941442466671748736746316851704563577542423105150580986476464173910628745990473792488810!
 7274308142629524890931985495762898324171908961998384100181546644378082375332840225441604148959931908730084724728557488183769758189534793908801984580628942112361133354632540040466535717316673238652078450308016619577080902713241189165462019807089554609187238543726113874966299766658252314714818800323795003806670118598942195994821840489226045885487688802337594014215791542952871235682271939416595000624391183593426781640483541623849679242080877099637573387339727138570051017216390102814006199640295555510920514823727888939586225063582005762355860460670033354514888308803206990796123184492379733390033115058829483802068767102409164859588883944324656344667574633584953224141651880328254882089918241029406831822065117122105635810950805267608243003755064833828150365835077439401630802437480979848295664872770213417005589113966218009352304353954888255902667090006571188533595233013070087619042828655767907621690733940856070615889361930134878025952499670315914362442199778519830043798444145486551!
 6590828204141139376731810408771959657893608900600929857187848245431621
802
45386116837858586234510782849182169145864330972476771131495903082734618524789221595763617619415803413031319184160775944101215743941774531300010795056442252510930673752322368854324279121353055759262100311221186203829750275381784254173117337551711968165240928436766301402843312361032923452318918370223034445497414188639739865083728606861694362513165598064294041596095582815279474489407960067040156066354233056608882241092462255818735880428279346966420627411245975215220276131826209673609273703418630680429620948015190112156463233546199496049740834443545314211500672682516687795066725418216964868333082337244585492412921673190981802291517170276395390765960845015945874597607378223637182049117249030372172847521476818938282858524186640140709140991778837139569216170769790100601923052662978421951009921840123220629140060482178194901561947902646631312875029083244483715546624849403861524853532736635483810240007269503753672481333156495813195298329582489456994701540983863588375105274450387542374!
 1635053454843905912980101603370240650914196544064089309928745635036122491584860237513287337313061777643833491141679742795635358264326565093438974387697125404890995439761030944701223017049596779161345460240920721494649710448748038255096475579233784085015704696540926099375292975065756324454786401781820868997603550120460528987523722840965641540104304874662760719959290035181390822646562780069174993818897575504124552628118769537357505250127280159222927782677371946137192165164001807111032606654657645725683990411126551032698984776200494525732076336611879466854680756555778816168336505980479975289388593446218272748276975735348116703851100088120600268451219316134987292279735435145251620662644675504351300995887599865911443487330276057832738606108196032567833536252139853721463271371437336685259428978409279847787866474664495788358966808204514776727190703126288077107717808759446592879491058281275131784511939021920436217399927104174817473553005514968071374613766826102458229788902686407062!
 0871691840805906684021071179755073163609712321042997983319216599464118
76739047383582397271020669138686758222340768371402512878602433601375456956121012111866856952757609838762420131806009730015109487704186475014603471909560016445913258160110887003424095108600659668246618613700340454030565015603210896111956432794011332320624412968527189733900293043875268264132523728118187341837726683170798223668198492551731114048429226360049729836646471747032035892511190314552637820369748273764447465796347034362774521095560749209997068596631083188119705267540760841852099074526412683090143476734298550655555049583671068719038492443885017162418959241597064389551791976124801051183266210839518091919316864715007622854915463321002949231384348040570977701398274451934839221971306082370165463372568013935034810121226605114976878294628586232064347412112626633527821577473245248312413542866044140191905637144561933616734099663782714960097805768754169534454405994793961814891494772883934449386237854457107150266682904961403798499699799041773145349852052515468029679746264819668702!
 2861642312147762924124296583127636615013215995687556303213834957850419502366939282044083814911150686568428096030448529697382538002417267698709458055882387667508804699912381136464981780323271388627539998143064746124047754171778696333861396561788596483175635190236538942860987981324310596410750202204906039359870915954779421380986417913250939151430229182359194529115029434493134123621519818215831203202948600394027669012663220706625706516546005274752240101992387346902997506116316619281850976779226093100513544564936116459656602849112845526224785726874706115946260327304926038731909842727022302279363717567119268583647185781515513352034020094255732570241356749792983260661689237477237909231564483699398221906223959835129277487404921884865148618006764683647476634904354685227044181503294734668805980259970451471908672697542090927146372479398724290800146596030612664416602228604050721331815082946098885070980566227981549989279243140532399034861738080214933410263315505110372233887514816204398!
 8162961449937118414730654397256358037320605374193767157215516252026287
91243475176956627450405183387160885984370464672049769257186263068174611117896507127338941343126400421900228426884632219249602699285376809615893194890230425833901286085290213585525352287293692772573112483980587096220893068466462636341647431789867000474061566857637857107584274947429648579667625487697959410694492681165765692579106373912809174332934276600823474451226468172447913454112832897445755146507869565899052824665349909387151111696795153643282615119827898668897109310169591041784502488287352319238448624226362973497576843928226311202000471321872017017837109757566855371393824758533811898056805524561758925329012410446061386262529720144955188459248610761575320195237921069318224655177285864226604778693839844215191391884947712040124803222614617113859479756568591174574724441827556436675503186173710531284061591548821249719371730212674392008204111754985468363984135677460883816733867417100470330451223726996329675335035568374255932788505284843970995341517659032938402850692199642609108!
 9906842903712845293454949079349840370395015943656344631399512982458133353138964830395468537774238675823879959507312791666339121357622930082381374995088042414367706341186794579020222525197702359954488429230463287549234967220873007422618532623944158468650826153186560577857699729253351807440463828973043612131248741664955773205830319852649228400338212296198294000357218896092227607689217373213756128171401278947680860184617347613358304779955557011084658991846526471602906243268230972137919999502600200767792842812801021890465503686449406851637469474009796705228717466533465347668328529930583917529192568422946133303350299266147490355309970592944301756633438343223044154343703476466404927395026581091264882415178063849558473212925984863914337804053563760280606861278168889215248356454361916584590511206537019448479242546205587901558333354325586591018391532755634325304791374070246658885855173264155785108271162140919115020187616175817025131170079441408634863148319055296155411318677747603095!
 5399998608079384374976227303703716974916229200218300013533918129991829
60402359294816224037573499647898156526226824692246618226600334656315544406919091944613359229476476175309840144569649498541787417212313607795570046231575740701647612827340963897976977401987616019415760152910910925312276183834786795185241937060797916559070575151805129542831018535917318636529202913084205780739267574115631345641060048148590659777277558923397304760176118610946668393831705136767659806086454653275384417193324821035003461438700642574999821742521821218920424698345969460171454108096717354784790289649005709369565850736027996266961684643111823719819499540175555079372487801969337650451347412370232785817170527287540676808677865733191918065414650702346930410760260438076498398418776243353883813581831396332297830451927354200012443477014391410202805835137615248683465400922414855558907372029219460949678309380472522542715397156446139320717562051057479473825563034044998409055189312252581517064469135994549410789766052839379950219126026120477205145883687727742039393492746617423169!
 6612724488814202863914202278124193533297421694509467954520673956977382806280091534195572092962087021781623595731539858049405991309645978436746168803327624713133218716363946718093667473440335755526219772548442024999633931748616681168580024161019357181587639139371591531076342504338406774911006239888597954611355539755839653053924251133851519729571507256719493159144543886748094127009297425772211701976780777554115314644415888813546404610034367546339543813657379417552022983704633781240452763115958787429154142041620662489126162385007770392863484726233343506441746226554888964328960847169212331084463333505337147173330331901721153077481815975318740320652065466630383402472404436419295851566207720195731935194885916298153300551052799525400109233465679859706454051429106571050430262847937593593880541200846812071657259589682779436299311192290462874989338151616124180754183887659727170003193889665336565273596570472983705556510026802792385167950336520665309178435468005322211811784568324368004!
 4326659025462859459910385475796520912343895032510595830284514501945309
892
32771984892807878455467496436275646169662618364866620367155784981383986825287619563857360852041933202576410865853082078346093735426744174587917981650977606748034235879437881661119989595666794464838215477158445223575130963086132598323044566468192097250293449035786589888840520552887864065938982709410986621527371617524492691264722285626744317906706605132503314572067834404637951426017333495920626461812732873779400130153571573662376126852832110391120166194811558779550403940865122360419497579357189797408115563734672074274241577377404441091238485558451967364835048886830993138982344212485495620233919819006035489851804406713580331408724132658155808563355292356505562434062217386358710059109166690201106008519210620615217298898708361337945882584198929728135937846386408146209732157488764585454529056485693476254092899106691922560246425452910014982009451475388690585078215749901642383258266123330308423601713313301974026436592810516974600611297413499543611415077890155231616362758211607345219!
 3855111272300896003399371087363400847445858281169291728401471592927127197382253553963987645924738369326112803742994013875808176175069360473808825916076549966028549415839794291304417893741349812851299433175675824407673417695102424433117320805419812250315547648257870165086576670230978527121343260960828280847222735516127980217943248638989060292519154480885294492491323857532148964128445650583365153439839435370632236908681847489163408293026856719785796604160121522883409864495030061363798475278879019534177434844467274800436348276180823399161008740511223516596774451783081921670275125143549469966872668737082784919199168202590371147765982606846429716828871519648270565793794566304849953425828271002028745751425313487886988808012391825275474862935920257975002818219751009946291783785110346671609157650768942405764348823245410625517145576852355740815455232660177674320947901564520546687532565105251479763201112266026752483321395508993126832634930136851924284030942602387905323204787679384881!
 5781799120758839989511824201625492439937529250292683380891296512472328
14990269823023788861443531898799215072001787269476593216105185240507686364891235175167193707377421624358856294062359477043120052660625697625096842178121148882988002661604405922232933162417612290874337902228780456170135772375061952160342686280629053786496887139338571256241696407932447583136988591827299927578294929575130482504366602853237140205496447338073824577555825709270075915358213622487873951980644753650922833873219737894509894881222431666501069873961667298992096442059681756961923183986619179340847425786815461594145893864060229613295003812003838976745020863385578266798810656903699908156782778516378293459936194336698065297922152215366628883994026803862183878413895499792007228937116950775706172400234487289868380888946932582186337823435691207402895687188566870960612738621934987326322409606596069917602005453603816589660214387177128755309837099020713308471230391797557448381005068328095118932927219123165494090664021456835987446321626557573979283730870286061293977236838581491993!
 9258415742549146335154820414128505256116414384738621579485025909591694016701922227152051592446384786736844034101976022548505859620374520210340195867216081712701926460704607959928713121074803511882506823353044969812655209567080884541941022535199131368352911597222819779651917510914125749066752719879928439903727410645886716981183509101205683498176773100954846991006642170375101296402795266807926201346490826570837312730887703498538168830180415910735087802789781444525165407708127488473796550331829893602610515170900920110222071001669479948606498841609925577821033292542220238243161693794552445077116612781957202899490592371787630713791620773280519004359506302783720524286071686319756831994495359654617582379331954922183557140638217262170118990624363016468349879943067324897484029900626756368663934498668702957463295592763582274173904767366468327098725400825658274079373013421250157872246935933602320278802133447547116925472442788234788572020478481096682495732594650693818393289944085629329!
 5484523469547324707209576815500031362868183058735976655244562923337098
00392024465397081980880975167759000829452339338253873797516636684848199061917189230530293275282052288738997779857757464433066738428466834238197778223941515224363898742495170106566785302676664370854624061450751098238265082329219231169465936055216243701274300239492460008464419137134537390881710543297199625921785958368900227535469344199270563544994464648463569211473954542342093035095619125962942760332314028381564195812399216843570592611552186436729390811404988429954013503045826166856151191924704248067778748838713189871896738261924739749089221696564899815767170428901744966620596800868199091956648398712799600060660098336650850131726705066780738105362533240436156109801108476755494877494236585163719465279328497990577018451049091701533568613632443894879659034367590349560021664265581524443928278722717359459483078938720248473420322290052133606846053129294097497598893201349050155466399788069991700873715889175956776894727061811503019647289132576784816190919388459773052888173913796341910!
 1391228288186895766691581750664019066425759118576388754829343629921171912710549773853730155778381018844418606578305924104527243196692276439468819023029366036893929143527900678345492052288961178860518754083104918089177592609625711828832708643634672781816274725571485025357509356019445337057042972793165183243697073638748560927282169570755935217982829317630403988543895057250179465534119664384061183281712258058093138653669016323415504235539488039771007125070410567877416202585990840071768209894144867462299227628920255085808162173150838975538840534942791905673448766048309707910866592252931017597478538255714719464529629087845195651740959478943963376856887841336334073539072743766372205280224459160534573754066183716958052421718003218602285837532259788835018804231788756894023197519743744461335259745789740055466244243249759344049537626823640150573472695398011010025658251311957538915849382125129679967725362127646076391067226918441110591666718231748120661947722805350257938618987107329311!
 4319621955835900757325454926544053448587623799704869639821290623046526
02371545697463982185040240616064721224738628536914542275828158930325786719200381523130703012314500162038355855970846362887285686618295880381514125979242712228006580721753759956097530281681324319088267581121397864589779915670771233413006140507207378747754227133477723187913877806041160283389280732294629861094389948042687763090413828200824932764378445694666855969135097280929656029683784248319063766489758940229747652337370707590295732296764107444779028542205710833186416062834832840393767133814809415308100383634620986740923141625772592601642413107683838536096774393896453881219871847087835760284657585006626430131835637759834394232563195673889217864742511539146483061056176185226614849862117352993003941962679783511543247197921009990235995010185045226336213662954175879041155291163005950929887093720511199532095191976119111178565685631458237425273363487442621789437342555944388272109955258344048078153363012318172504761120985862139119503812768576842227060228808579228022789927013545026898!
 2898128670846948085869077368731048824135209253377992815178280722473043295605706622345618996569294079904301031800558838515495600371015362883393296308388611837572513442929623743625690286239908180896674784072154164821536466985251118356093769538838247792682054035562293103398234617217749928761143107112618698176716510102132817484322686049289996213744264891787470800521778991459793683257690825447049955736546073833295445503760545561693846299352695559825481436952274513515963501284438165762387821902834477841943484916754332208988657251072163801257455920500626138323533310017463563269678829979522312213359229559877714784256215281966009582480397960741880686481462221846735023846499620948290023721674715130176161834866485690095804452712924136107744855016454016588210094695318516709496532028368556343942755258676230939902626468802521002348398810810313959156722167521036403116827698020447084682751021600765291285961812328923919989837615465401528847640238956400800911170777168663258471518886521341810!
 0963097892468142777674442490984819462072099118606178378827256060277489
202
50775654960922415372184898191399949304356168693621596429177109525695097069900632310061085648555448231768169491892033538259383979779552017806002615045384660223480584280668080054097272424887098899181403017210837408519716844655506868668259576213176185347414437764098116897462020371211318615031805348163709928051005793939581839605381572799053173564620472564675646573375232496044286662754228334119477101158614822513290574723369645459350778630281397035026933558672025420653201911364568427852227113049930847401550832055345022071115182925037824584151595423857290920559093155527093715730436507139197066270720836605065359257807538799662427829626027190863678584203426179427292783872074227039258647899698885201728543732963891417985649549871231317421078111745847834714810113022006691881171390633223774639144278713501339101361465475823547313216387797859422925909287326603980617051451051893526138463564900758234863291520258655103110341381404910157351617886075764396461883410175654441487477439695871259318!
 2068392921811680883559712722653711952674639135472889090102527777429906681680053198706232475569631647941994318772899895890737174479138221069168303144302108832718736937223637159824851127773765854395220664987630276981234613453697621047397548443980664968551500182428724139629300207842390407701717530874006211038869812751613311076710422656095342065627964803091959171222256860508660697491958719528511720186301457223111255958058030059590451780162091560033927158135619396152450582940942383067522310487602756833193139537061594056900825467163407688518738062028393764941416952247897644827415924393890738587033683110647482959165636319407597879773893685682536565679811940555829468907562097486397051586280616049553801992987901072698852640686948961003323272842034061884542128979432188689707273827362778501372701149638708846640786079426555525554856648253672623885530195700899094418141196819278225214743673023757726479063021362700929435193537520244824650445028177473530313055878404289052956536166955757460!
 3044684002013025834728578786034796429662285633839093850405959963382052
01313459775949549591528249136758265577370863098534310316569918647749352355876985616764025694367949650826595164936185639067761340863449496109230852815957594732446929978437875069577965234066270348934399220039331420221596404753079877248547192899031903311360675387409926265876145829524546296274478253060713708610093256561091062901593703234578465109425415658486336759717141036824690682136459502259382358689803420521458424156210977125941988605174184609810521802330913491593055323640211801353993827390760960188127085700221614994202352285301197851514825409266951856567653410404445485488177660629153334239355883040977080382629431894438507702390408475017104093236868309790449784932389215598500214358700771342871584700693024716766312285302839112029615848332287621873127025440275098869777524186719725803984567834528672337262681942591376892237327986963699571947508280574929908016092963856488757743668130599330030106516567168643311600381784331809476982492426608263925647221085630282122858435912911420360!
 3272060182523237946293109254102512454170051664917496978501765868001286325445737872529326712774516243343601273403978593022215996177517361486667939676563322195149342983767903749308251701618528493383442425041832303026410055781883185442893640874032039660088923438710023409268523884967322844566873657042343156698938113117085498055633424110903902940206987883668650096416369170528156585835647747550488319116484306459899663270339800109706271431548717437048112170062091860841624596321962758189168759471508236368927617174851631458451807054356379707232789574505387584471007564558747372456716260758755826316241638301758948123727346583284264334984211990679033276995061878866730634490328278376485909168680653984403931713825696659592365734822356876095046002069573673695394353734489287894541429944924229654199206870717179908202751123228830206374093324308284076802365996223074507239548291325100146231522838566996364648161993061080350119340985512877308159545015497909832610070008435163220914097131668390509!
 3077706782579384891592132099286598075166477627404210228706958031691019
76906658492941163014490417552415284079855841920459422247224085795452489966149963129567459931787449783413501974760024855830935569788153697313632144525114082928418128045024919929598456172978864983652967173740653502757578465341870784213098057357585098708923218338602766809687867445876739370425061052945593448000033794844118691034384898199272178004569840882561800277402469715569634535370581771324966543170795487952577664211206856943407407369416521104530170777514495029664201508567341856133087936907990859888819541774261880314414174869352930128628687697963497164412421773800196909748627996089460936425306791041745935712831904029831131550593038611206192754003474299601297698456728568007574786825685265588805504465028247234062122672309876509524679555116757607551897367108186648733913555473038717714825992498209065563624636888744281635475973802009270337279723575620585201948873117573641520856887998396255395067204576563708667868496167399289905166395473480646884163216126962321404300430349787937658!
 9552559126127334944313749318755851522035048877154206128323215542501036958420117770605811310857406721768844739241215189067429767995284346046208510422989295590153886171777859625965902453747996448057375425903395571736901793975160019987583699094035346020060061145708129727286492441555885975024274901019975278569583453344943250025780204344440868289075077439617367055383761578786385387000953573335902594668119751237389838726653687955430018415044807205276494457025799468680349949294168674710474523631365047115269827810552059962650022454407342871399194980253833385058853936499417336369643189980369532114631746171702038807086634906478634042245846913559042424514028142597209433680394042646957622035197605253746691968646840574852273222141126346820073268099128359680433712489865124847133386599958155703624128431192371380520698554630522396286001693260924761875232125700995941645450175979130483158522690092440553118658153197845931405135496797501971591305636407967874274388697431812159633202424536950908!
 1085401074867453223366948874174475845601897763958449021749345971047703
15419794721755903104895515071303375092264289474366150114617112854048983628782321775540335581513089008600231119089283171979461527339639814755795610481654721822820928241262244086617316118295314627011962136619959410879358356432093296418935628950752183416094956286605476082023394390369382944107069073784215937110084355080993495125848055614260279488811735778231410921563097755633435689280906240147043040680967454142850010531291101440719318106005561952937599440981612645437443677397892845582361680657305686818893290555248377738869788338482126900338552557729632948503625724161794560688062505674398343584068858652798471320568203326801584011861225371072994592972198314039824954643013641412093794464784632967308041240315791671468107172154657975950843790654639268944164367020267173333214286872793000675256808959472460540077392143662377470366937064798928068343630666235735491883630674089690534541962549218595948296352991442506812421957849397624936269976684320117178309478976453428215921105441925395673!
 8906802587429523470246253627205862445299161425787499201547834925160434238534924384341030380727377077657014743734358079845112149890213877261130749312518484971289917459095003932190625680772393254545546917673500211427825159153713922475215102619575181255589919223775605562518625777871520402423564300801544064737868647177454853375685133039577305055429841027452084882456380181174324411508866694172029225138714052593329218903930234849521783732353344653262693777473250410920550827627013601076268805734928341061501432117912584109328122674911529496919441405798335403820079492052726207312385833278588756477905672110416544166147076128836100062438413053105014008101079875557731522504246358724208134651707819681326647305265266870097539010235484005431910303058505073284856662189230736101609798730109604578786272596971821497774593191217242085520383223097743733627260091079170854159065400695404757694645269352738958908946566093553216942712942611401893368175582123366092880936868361084129593136897668254634!
 1618079733799311434919945061976741403836739591043325083789609765463216
344
29684475047180877538796601159469105846985693463154671519673105401894347253273510123305556649244625308979855259889634444538294144883825709671236053389198293136490349913321228421966087365757136943286363383874965694154477107061380343673939543299455488946044328621170422810297576490108461303625809885204445652889253865618355437466905075794821106981116094362272781719468844223901364355582252243301409371154840113662138841082479809005429724928690877078639433835697580891344855483753767771965895936587515432750294934011636286284193306048171093923998791900884203487294343721494612397017034303370791698316245766050613624590549183588052452030731298424258801870960784918163583376321417765526484660862674494777513116337460985326156771682160131478190445605770892030801852154088126888224610854206843331279758480921954444388966711314446178931474129366512819879025932919456527368734483639889338998436121168068986579756748851654888633769003537529198775769308105735517395144379527270380044704900728573092526!
 2631673099074000684904599758787132093533481479980729780306859252749215403250806206296793680290963657119655454749832657557609467247229240892061371056217009793399279320665670945892120839049846047586480114455232781360281453445795438733659918540295506010018789625823206446714509639808919967566146598237014128736646880385940326652224087508860528841067197999140854487007293022017220260304786380710886172631415313923748994778191781040775452555369360545903637816192863942002266964803975868226345375812853550796206064636202276341001562539119946325786788360870252437252628303301021044894326226275322073667652910916281998887191616786697698617210689500902364059291757218594584763068921247043650275363283506500433461831897030508283915358506052517223442293318962943725776163152226873950058135915637995009070457200726096898837387536982426218631495121398835716735638806300562903254751451996618172677820789627279916563774802991022509472440941980146869018862528510042336659066430765016710023678735189804175!
 0864760380556088271198478863911696605712575811161433220316239861953996
08106448911512990383218924496711518198579850277044697851841628073295318752217073754278078367450606084368877693049830230414364689139837008269396406069456288164169529166544373908475728196961464119571580663688131248487829600519236538166969144131643782128080377458223191425066537273186601585557631000545881914608634151201340660568618305399109284222097222772766642007099875823159076294391295156349672083809897247230420387327835086014741160482852042007439596077939676657454574157343814376292956109531158482092000199683492227462223320349229787977209325937345893185303632200218523329226604326327773869929525440037460654804476294982724042291465600529045986614905305330341184232774713475287632417746860051035196802595048933541617738765023893191084066521380466746652964357719605228927287905823336267171801047870741509786532744155522815509790153143256991410913299525027699164121847989035341734180288807859437047470037468716698072913698781051913482317431997181756973247169341124042193238323758158340750!
 5032512102423272159997622559536081716396595545921520062634938327793871745098766955342878789774664436385517065026504485771475878951663905261261876717387540459387759244936972468702219846805151918260343414635153375173543983465840366500780082513376195811125396059589417188047217874636046685077559560876646149799759072572546693095018122660597563383204512084638644649947755674711048825818624518114821602417311351155337639418016198608293258482850297215641249354354937014722183714909313527465161404229884034725873584804710030497103678619969039664003189027014102187471439739304796671271469674524858219615904435885750474711610835582761860115988679925232776700779134880627067843058230376844322408372855777585082162732677755215753854931391889443311370971879765493099063043708381210797273160414688741044273294030727774363782884423977594872346291732896432364895042303033952547723285292251820978632941279227761069976483964461549803039103687476367007442072013486804209783446567078085008512489260912708157!
 2378968179538971471665316354179274132493745551049067708830538291046609
86180133549273647157882317517022952925574767294380718432352827893878730585071721698784087093608489127582967318450352330091008245008946000168372896985534781567708986066370243799181871271374835942442963643209472757271104180443346013051070221778247291988409544429155924729679314766416864679909456377046036998870079612857346705087176357992672641907758648297958015096149717986439323118705902309745168343571252335874425716502513078384396781248954102878996867215558351818219767292372675088271913259289045705392169962315734135981016260634384197411159559871219485570791540409912608431534494729361825971466635209403043017943612630797077809538770794982864536667632635334220689453430306269748572960188084656490209749955256673401338028230788629806818705205412520401199904304289199124015463064896075523480019294548752880557065055452354879178955987440250913007416419180939972946822103570189811867672154904495028446259968376782516887270792953349935513985117238049116955666124418804935182119542314545793295!
 4973290115497632797004257252928851676055670695788818916668926496278266068428178885513568220105986486442689731040420642038862021415931334335650607977648372861174785410131819538820963263739781867501567020103516138276223554990781670817625800632651909072309731132612645394806127461576397469729038199157580630745875385173348334686076088964622701214040165795597908155136431792697143278116000395092953053015664053854401446819567416891439500506012989953252062425640256999735405633568511706263129378820965576305578326756161629221703945185899593927795463337352050168898464364888207314613992856015764619060882700521838829449052835018564065043364175350139349857051006350044232775532805166325015553600168558606321618016788228898592777398070823443012187649829882195076487937452732497757164679437682597865380777090931582686989321856754102218113706628915050719169240557175153729798546795477169440460872858340200716825587850350258068980279430946184672580186255717699914366692567766247888256367102390508929!
 7579824895222709418467443414664411911976248630886752269173795608464341
63676355883085129548653711250744903732288271992572715199660002166693895605038279519066233710710296452611253548201808162340593161238338327872154509090544271980320064422532360012498934484363675937191423227785159626576845253075848553735830841651524777849983556099679145290553712899338041735803322331380434826019161910280534759866238541512038956061132700556496689281316755512979967633665355404709079398886689530685781017330266056885368956021180772162258921919924311730489252249712553122821175882252826509235822912252041383700828638795994087533142292025537883192590178881759789430772711316048915678508678373881223628875585526611865733674460226117363328802255620686149584672266053779357525558360934098916382963659980073078450013699458821205197427166295188936366178872451938798839149850746367011614623559091808914648782476983237759787096345593154570680055282070629464310763848171836412428448832224163453064177764928060031678970019137344145995290818130082735712024454178146061237267144018753822527!
 4535151552424500790797536879918711567102845303187326563112819187358142050423077462972254036963523357483065620485610864093427383318334634327351271592642393900491279730288837834637442360464419658158438405319108290323239391500637052537770106594292190766393180810878765575969070784073173239732355063441358556746002928122819448262638691858136721604139546331879072561693081540996943760021476848236668959583386445843391397341957739544589473799649939650197318018758215438818580492440153865707188767878906058943439705724396806766233077750215424777082377904412690412076066171751458329065681240190888065205921445972236876022617302455546374056207480813993774670094125222153273448841706368152443582561186966261363834029286644970066037996750179376316763918069437678433862149089623561820105640614012377885098835667084731143716888913942684794853876466509841171954337028921584835072586019765152460415435606762746411781037958055110585275094244729655712945889544502046822567201062098620677182166748688559677!
 8133367304894138883039656612191893305871404778455132876728030143220992
705
29021061771392127737590526124680357832336122316724513143018328278987695299046550698848503343483983359922741648106833596317970504048017163575811696110898875265050394554508189045782033398880552733617405890660762567887602344899655818219507130679827984374701471305670367804002790888262609687517984330621616836497577339489618134418824168865022899678081627975625692274980874020887688103594369299203957265613050681288387614411959186240022364452480039479994244058253172682465135209489596658726936634884015099283759846464753424030561559065105449169124218607878117680038993076090690483506727951214030034045948829208453567271632950120071121468376544941407069259621433285678745746838018539304546243136985598732642070733736209526825330022465956542110218831635555322102232583541986992666491353192963187823490149158700147749921910894650128017261865842411995774784463808881792358967236549615822753535499698413029394932056796213757769896654209615618393575485106101873663140267325061995658143840958843545927!
 1042752474485532015362900288790273637151170976115751044744485750023258581485607889851283509556122124413532387816233318165611929257620999185168792428624230801705860076558534645099212221386291932006291667104053444132530994050314842016003289992319103284017248036032641173958773736439315805475634461166744219590534169466563680049974608917632616393699726800567119190081116460002960099906297666495080108508005158670385819718130552317324630173528769303497898533046076126706915198052104187921693861999113136828410258438748308631022755665240828141236888951950624472937522403669031592181864323402691929323768871517708076749523898992149245741762991858043348629606089363110625810014138063060123149436279306873326876877147445496118241966037173011732267211548894144715807643463644764575907033408588793793885511751946742353404539412252406457071214465904665673480924261538841750263649967640397964039506453603305846710659160869493642767063841875250763968961560317311929268633832386744633518113308307439130!
 3543372279071410307952822716588411034443485788218090802820829554428122
00380195266021863595246105666063149576127025158230333522494707890466105078851861326007087053125210092418814033311098034325447218753564339432204046595402692850448855646142510526547958472166305729945635788271560772802148217504478700112477936570705673098921138721930592905808649783986319434663257922428340202752079620107667460469407170560953513333993760749271301176506022224078447808214938396398812005477893800566578035990431148710163727703521449472844806598021024629628637432933375005342109840248586097715946034626507089275768480320183619054988522892809537682131515043558251720372860169596095876425139501382209840496122262422817340434028089399726225773933036610298681992213377579163735603453780755018132559615693550103283299423849974751524338100115195012131780501387964656284915433248919433718326947019268167675960615918788976365260320865126585226424524119959018981878845082876944376766318492238487992413740076722940680731052803953540236603520998420550430592120388275565593048083911659730624!
 5017725252787907988546850842585551738383833851994344288915912253644118669644171242400135887960721910613494230833029789663443088271107467000523629974326102318027142266222618750572543969077381474263522155244832400804375696699071029472640517803015161891026800926358769818418013034526647105519950731606432675504048745317728164797498493168163518881132546149964031831401208499997545056544056651148358387174381071044446819957363462868930027137176430696041478322732756789030508095769143478308670354016162028184911441232008439992821318184843322881342551248886686544852708423042840098831385549010037940264844762363637536465110550081029406609915248147926317308774406420709539199916755639316762475890832242707294829544328151229529031647506098107151709493216616813022200848999073351928484090014332369886937917599779238728056448586363560471696443660204452597048682215144197815912322747578772163986575276098408998893737775089374040658456115404534488982635679449628642247071613265874995955834400802449400!
 5256475311275829458245552383399388616021670954090395096229843697536057
94438167782815663517171901560867850102297106693787721490988919368454386725973007974938110342945358118921302910485720499673562211673336635007643262740588295448615756961432047896330591725250029655954680487653626281549757676580277875590236787348162504245315702741835390649972371430862395364283337985258809365635808787587211416735820002378585791714654161211202603427255738422155180158746305776779395293678912532977700508226250081937416451141684737365725226777890874579968237345277327360629946429241699671550862292806080316787715019020416166302049350758837769066186746162964701677056344183089676266188744032970517788145243401251222679410412177617218288850815972164208384793333982956699403495937907282033978008796049701378070294014570618322752960348530283719222610059395644991241509277875461366823146128946998167258824711898544761466413597472404001167264640338329990401502635271218579913818751838215422530479921538890284616537929472363796333479312708466427227370435410768537912131903433119245063!
 4520767333438091681290392671092987571771480282227330708585902259139290525897400243757102169955326576133351851876638602761997003980523930527428933709016910236752074517701696404723753863828765431904302903579819304468286320454301891421607505169966851233644518831394315814046520685035597675284062096864840014632988026383254956272132582757344853558300022255133185962288649772494481966641528190407028797109505677755838364707508929280129921465508984652700726965716889740132432879571982172311902810990922494210691151942704477358752026602177872997393804329178321634672128872843369790316934859245577217598633216922910131299649345656945683126728480958429250935515615358682033736722013612851719579917906788879489778741557950785828040051987951437931024097351375424452291066587300786546251418820808073071926898391350492537754374420265701651485490390378491533578352391950918422941007958179462613046216881844121746806220722871046251493876491783338925853594154399135800585902429854085572504489429103113066!
 8410610525215294364058942822561951509029885349670118520896464332041879
32153336684750090937947458624405009441979525930580847057304417142280778565703712794758093456290877047988346971693235516960591551290394654649194697695658010447721221152971788542420630144935999036470488168696394545987395664956844680082797406485939762888615420634495952047787647960222248140451871122057621282895120964242624397691077791875989150916967488496901404178146248821899204721539789701004100445191637463548493777672404896305617608574901906641992085649882441665925913641149797211057092004834635621911259205315949520772857285350227717869113431709507474177404611259771054406639288875718393323600024450260387599951742135949797649404000414409398680931932864233231380731072605234702226995502975336413333363768383076991222391147770558599778428742569645259730458979891618440091187547381046980438055951700629630329433750112437691659207229530151254321394054433778916278191406215516820884736345341979998879516117261028410632336985345662271408982502069128670444116902582047965765068060833893544908!
 6211438738256599464349788032327217582926945169986312673587510954845587846314075971720196243370852199677928830820417083628218867104294024260058440043773587533107041888142219209246071491335029636905846644883203194741017346112878673517942209414546604185340301551815562321431657473326661079898031090681700826887321019364595617858517345054728589800787287211541725674024419790288432253154101921401350912386711103232137314594051156147067212895932638196758037690723130321615824730407013885893346366335976771547070197732495488145171495615889159727040316443495121859747041467171509731132947384808502107073004895212374842154038998185951322490144185729193570943752415921554569296311501449384703394893076243553834235439507857917705875887328687263613772313179576318811917493997364582955995596168471447844151898543077414559430091627277706400678452622218860633810672484726902440264267413390721935300584244062259464253948368565478450534349052967430589748649564389293525069687282557307388653479795697379637!
 3941631251221135723661242014026468319875234913753259196515806193872666
193
91605104935926527132169220962246396992453394941681487697594502275693160173729782522593211392279726446990787079721129270100728931641413289755405112986071300454244972199825592301733559399196662588628489028016102977414728147217996074304686368394358376209663705921780035815169912947673154832624347225298003800959587555545136352485292336603666133452157849202685061519492034529021461785142032423310422848635208968797421845400387349417283201176273782264796397846777136587351119302070722256003750749407810394633895199845441663143229731608084404982813543030383363163531454052991483164256012510682085656900160302972916584678918322105869948910040780107692477825728067218658664493575923770660199972606595255433273364250389479833660143199307308480934516150880480764636667529086671693620624928739814887990436533387163969116727369702731265374284086097348697293255278854199301904168428232139585796602487375406543926084953186341346946867892358336068033944557618564870113259642775582026319256809971589448934!
 5407354516693238449214991185549338282445770766882305254697961282244041599668923715929509392373211954789450740806774448900380624434575224611555723894226838593051527754976545431808349023872919846748693162608871792151248292476158935141491415890423510507353496796948749186334430479362520365105567215698882395203498052301531223852125132616644947370461248186099014395654637271017556216112211047224792650608818792187856456477020191870817409827426388517851782319529341904819315715640400178260080474641545364258579688221314712021950687073703931215333223942964710143388176399181150742155542260482199024500820520315515880310767656881219857503845120447360279692388489439850407766939191917803851311790463726457872800566499501595762530276734247490355778730320694669762067937109531408787466090719090054787150227573861562284031199979360148174018140726855934642470818651372676127973427764124089407024122505759128332044876750838248233549006224319625729282648056600967750928532573038883418242504410194438374!
 9082928907704415181513432790126318627093441028058333197183938084511247
87757790528799614248096853758097666763701569484348743174757489914638891633504338362739885110295590997268995590471511291794555912698359429306738574304869898985594432619896425343492171171761949868813811537360119252837634812218777109439259322057370956269816464526459305254130817680476849179967094590975627099457464166873129985177713155886207655433151026302360849223532018400246442694982220093885619814174235294211012044888786517620477231007235577371175696454026773786987829323848846586854824307251322459971819517637820651677017349639072911973231521104508388963690034363456497713884180568029841405323097836878788733235745843716778596231931182129965442642274603311656218995807385709140748170907770720601258255372559881825540001709679090974133855179150503462413627962943375279803921216124494228573480554092996174221867552670663871540197164959258041982845727233943587273849129806250522990823041441796420186323933597564085626472114098710275684232847105442047692737227958693432551623728706130624894!
 8317683005950316273539272221555960371912609270563209001688446422399745990762836038614515601146790867195227442253415373563043636807658209294481681575624407583542094450414818369400724787199371608074714370480527241227205762001482655673842585276152042257561677566344890835515904034755970552781149851302508741216556160585427292302899331654735499079156121786647178134339282499415905014092363201698408680599677236463118003230917231449065960183944335732467994721363667143093322687259227699597866342198486047640383312151598246334815753891362137470506267760949391565434449665030715756019052561493434123986500863349768772582014261603587642188657530917405182417491784121530322238300418806639385455889178762006878814048766927605976263885084187671723906882151375344690742052796875938629657498654417762942518703009114961352844389205145007155110873094664959499070899793052340129573493866881785927244230815215906606499607550272376081272387058512137274552888617735445449593851589568775195180268779856482520!
 2662409444861882867270542074750435367998458468021181612451191791640838
82209778864182756810585076775657286484828360370249328715819806043555879980375757476331720000544959849872516688565706303352876068093081590181410593721378560788103151292531750411050960975165425371030855174854899280792792165082670247752463749983785047234114872240388787796856216589184157356593968703031935075029813828952996830357304306071207546629980584795107732290419143068162870295090071881413421458284156116327645897977943185244670333572201518300806773009843428145985559436573897199032628610071674691150902659464279237556249374235121744508031213499874102105040262541157631141230640337384023024844739361327771431778326487227872000031324379911584541073200832547176553357788419738811198783081161282533435001379109732645804567535626928483455102531756976137831443682524778543069370631432550964076224942709697276210616798163074586477313621029169131901935053917363387720959307728802113849522530852335642009147582113215081416345593732766381646209964150418142792614784856112250969744180739940121864!
 9576170877429853908394199011888587733637311313017101357779033475620443952626076779765685385041517800286220260173983153578949045444271657055964920522231883544742831119346960371194121860939647436968352163008411309212213761236193155509118775346445604293737921516689620242547168037781827463859079682073564093429943342717920802887522112543317901141491160047963896033187722047145519259305894869335049922335765207063933665786108085920057759573577060563469345760388491080506695516093810694366212875882733161322864831431471767211570461923561465003774053872176274111366017823585584517310029820778999364681776875980577196904429326564149288895061617432739545348233166639979174849840274783540535912002226094399053120707660196672743214667313250599196153749191206109264878195377790614253518922346613960953196062526178425715869924378266091617174649716347204773896131486719429482490291989419167583088892339731174155541726809475331027377979970981756504505473602276786210697540450592614388377815161792537901!
 0606402291673802696257343430464530042110425276623030552072475739306792
72639371318872288012695855490424866322830702277401555280342205573172609159292751328720443377723638154660224262722795524264047906912853466474395670390153666448251186234027804025378088666113535664410691376972388236540537057203264851330711800188621777680597953218065436753210222504280004399406185181288953614073372395066311517070005713863153021329368553801848986969630285108930120217950647072487750320999483675687172470029055814569840514467469450718871737636802873473556196853175307566120156930570344309876149723068952866444156407483458808986525661664379720289586844220392181943171512756411177614756371405936864000103588026389125969238170622763716762874806283816022759410511462692288809129433027766495947249738447309337632746003710843590785997667180055868702873018322966729256651195926100594158100365089290626039997891076469310195227174464519944361699915556415641215108714382080886807522978508148022862341353184392056663971152460890481318445192314929106328154027922489378228251545768271624596!
 1176395668864617423953715865744626643996155478905163732521825783332535644589892905951926058659798671344827447826266678984191962736059352022149668157043655690416708257527445881757281160956148185722436954647505083028443075317077923557132934876117839081302910599183552262237468671157570593774909379757938195247331632266235982695699804734334402616879654751304293461624266134607473252695703114881469691642933690719481545481790829291072069429731875971973101542619933564615328361822870151559033107061465304217006688253379701323449506071416835268609881312272205409030946646066185857999914153978144847741564082258903540644906463510615433719400401386160350714559736014278623451486573479621797846757021898995133336443819291905300857739950452349349571896846127113768895759793323495332089538145398467702851241091399996240942861535615495201564188996212593005126442096865972528994184350366818804807529105972336008365482357019198685509260350048765737882951629237418327132367686584946400059670950677834536!
 1003674425949188581955959269025123931107259512121156338241589606737480
071
83246877841307809693824148291518956042755017542065174420881340145436070713556026763499597575960041036160961213773621820223563980101455924936015689714897933365854991863497304103495007905509710373294892197640588699532018966493350820431004885230594298486801785556564538971529638687139823938927886283130538898704416338748532366550562543023828613176831474399344615609310765384947584648931621515835889893391956732944334790390909645002015254529742236093348737748570906018648070516991257559332518203044120573389116924949793744441817210180048695274815824860757712217241382985252976703526885042133034637032059011127692708423122473740399034467618957001025917858966147045611886905543180001357411454538480916238456019398214576980154036744730933242141647275552190877396917417373506414595184607851240181377454588376298517906609425179969503658723513291154069411855800405756107804357919105154389529301786070568857811721742139155095320721197089841522154253164791930461604981176009994043413190991189215513651!
 2261155018131107351940674896418609402848692830550221199243438663096612299837616589812747306690040713313153258193032028149674557028927119805023083429490724610549109579955078936602634698465662818805549010438789895744093141529641433776902605064364098326821763362870988262723974302300550638516752892264837509508861372198333534606984890685568590244467888633643960437818236493160750697952536617770448078628521046820932682668289722071591098008197780192649525383047246360795893917370036932896635802205065980285338702996809222867542712913386999402663357736086375404720211499273339955963867139414159950635550381622713179928761432989245958663210228050727201766328290281395136246392598794084119774242147849748879285348132922617580429695360568496416333588361246477604717663033985377267173732323243519297973342376460670072590569784778225901022471861849551087004140155276349224305850649791746999412247016670031010443276265309930152842068424685952359105309696810584311855103760808536810333170953490813488!
 3131172235937743874146218392650171560903279402818993561269449639671433
20782904731916666780851825519771728800627735453991592789034010786288963661157080757926371251575321256434587976758227986056217853904634438782602247698316447309116773137698654394413974813448003818298103754950588539835429146322753291226062391782931996213986918817711118424419627718789923057350447245775383119433851793221285766035212168779011404776589767784356963513653291514930963803910475450116996758780279997955389558550059045533297935637026407703334811205596791096608804654458199117569673353817940202977420844671405547625380016657961957199126200807816682028859158624857236155994016255477707914111600676407826080771078947343728991156761306850732249631591231634197588462764728819202367627163751947669533254204908916102491648373349659172708001471152710129089029612110404724620656228209632836266708889728464849194505485241475581339237736269212766280901070396032994626272509471411769121429133539751301514317746716858402905968622217080111036660714630206206422073967367402754445111531868035737119!
 7061263214355234685554438245653255194962230924422262761618107635327121848671103874863324167078904688522332921111501979009872376674015547916753447485891162812686867360422299435607682697833173517639411375681873118531093914733161347146429574802588661209843333626447892327799217189381104902575089833295752311385116384118101924499132930087784725362736588016792732391195667737734602923116714725275438773239540964407417449308810335690168994473265062935681240746859168925465092110914231643396643496535539990522603047114871175019510860362143788792840744982527033242516917795343239338053753415428633449200572757968191874218427218858846662660281339159122650870329556297431210060847646238240612020974088585109713450244534562696748452174937951998366013595995980442105533930579946354121565926037395454813070900268161647358075309070057946985951218576692820433593133365802104393580161079082794266448782035280157498477771875366638868714692849223359797020185921637526370647072392328071177497552365362417062!
 6315463270059026630402473980453353020409393130497397130791718151488632
38516035140918715172725963206039775181898773794298335489621492988306516879726173233429518602919791235420914661761858081206578509755405181262454785358714234987228245076280218555416439373557287341317707953318264106958023181267827292621724790478673313230260287901476485433580999324437234918849958599486258306760001220473363446686800302177442830895673212065731090929852126853082935352033162609612387192704749103169411516483884747974567712343355744298126844614327533710603770238115873068862889693941323630060605042899652004510603748676961364917251172141710453972369837657482509286253199176103796050507004745275198706924383079720813365107458086253398704529503657739479437519432553660014210556464148224360616467707917165851176561085923563460948549764477962116551131870096990291407315148390390899181591857833265027795395784182519705615246751810745633045708295944288915066671592976041280335474515510043994933991135740036810821452010037166333769521213375323959064451506523337907475042857815969527569!
 6181784704238178420315992417112157281753138255289908317222708031933401849974624661506864137178679359480593272851964335736880274143158690076520872345466373639831869120209656207541348874115504351794570520219208662862157046501295951312793744072467620419226655674453334447296817148735449387338480166542826423783384831756543833361744087321879219971430971939075615289979919334816845664869894315760143802862633533136185723793167236606367549438005252967139974035099407121933737585712045559496028444564046130603362226362162934122457615116541938791684813280962469524445695462125087911893539832219637899949870575517487718861051045258709120015502718111214008330339459997728658704523419166730406855700471728611726335884968271071745003538903363106665809112216112279535205973563154238786279221174002792992766027230910087889644867197751064485285423676068067832870271602149122089073835986791677907984654684765443288633275459268997647136118219193637197094309189760958933074195091535789981594562681740310911!
 8621361123870326632874592512380172218592375964203971780119733013545486
30311562876453973330103535199368908917165821184472025394047093178330601239641672709312163693791933239184259773052761479229302123013163652956137623330528454637744966783855724163055532861053275520784389404424723308700149400756485394938970856366624723511554968426370742241985340721884331711808624785109999817623225805812020490727023675155996038558466728397347325959612710449694899692807040872355613550188348609827334494211927951159638914217013371362540595915840065763710336218594354090721495079719264247416878866135096201313031939816564431842319103674142051255686332809855207709323995574220458372892438309481108423300876415366308472416897637519419399848086392769531790164372780297768880616249084193376410364509612604065127369473343213647516686745418754235332490452514001261991025504942206089908653489121851977852080353829793516473616363948528497562849714885627036425437615253034856791421813834154676563036293594327156888851139645341755011355523422660951773817818038938644309083053992738653198!
 8392370825144349766957951254066405582132495347608244642379595204674037169104022865060164401188212816887278392342736929260620640964091959614590431451723416161791510706177671741511297009743626357169179809791310760755444007274823165853639170769125919005551128507328081677051347490741450119502481084276777357730810360845003755565026865827089490664096114629969042922698380843496813891492479886224871671281240892627970065093741291428012018819220654215938973633819322591270713038489421629319110049071492253628218620356176446854469959430764190727133878182633847902690514134885240883415970409316671764584851653904600109634729323170245268608078649180077024542605338592009166331507927787324832590160442171566874940579151896771159131892750178044518249937438743299329143554374680946834026083464252681707351360267844117117547680302578284327412712955509267108574023047469600264457118930180581121892575725002417910664730201129469375495333839271076783815855808875670613299964991589394990408749778235503921!
 0513630164671634086226936539403456769518652775268560312868088156891699
160
46013679356000288784865017387036118613661682337006376249017187035483916530088806575237376799068155478888938646233804336788144738626369751444635331513645033652509877954130939941467601122228501278273455755159561984487267288862169113912786444182650107159343331816055288098093137576021954484236689181404876129698357403680117551891330057226994759192287243969471072449770404732967513384853728989198514487912693399562727628630157178270573552384501936652886942503015712886490989930558977451480649740071081376020676606100283353983207243594567205949451216844025305614161150472376796871252693156319309816082329795042589816674800878152648677364144935695842879538795111120900413882435069998882091565554032892502288051416967879299266268622246705254906674953625013269700318245101140735192981527091168287631615254533623132422680452228896149709173971135352554401236086188154541470853204672299469390714881886033268282617228269647851698409755613280910904929942058902099758680270118297143811306166501656069405!
 0941744708413659317294603683231488678378340158466652627793811034718565273429011264696899513522043813883592540845087574293404830480525702636746819999711139249943082380948147319257601152853824735720831491052716081699222814186753299117955244774879202469824783577017905817684337666777689021776490621936995896546765996942872180109781369213674462209747830040927181905137635612325486127214522261680518029325681831093141396659245310344236884339706735287266383000454195146442303262301907189759856124702358650054207598252489819907503165380324950260169372305831481731475243043594249891487918906280263409122726735334485377798532768897047616726158528835140603525270885199292171330705785763874939374555940096761537521778280116269037726528989620344126159881063216825320644381640612917117212009556747383916722296235557461243901559905448832262644162568712687048500344921141575761431548788382262449382571907205282243565403066864339495278663919782619662128890293170809150693354760936306950387796483806500970!
 8771258420744211499716985561589989747876513750578536272453652178066289
77750732715703498547747167890295666395835111199772543088210830083871970300163603754823203181103451963419971957080162637542560696966183436297269070662230614313186361811611331684184951612964799463540815516628864531220105617962381014438462014132524685102641379341166216666044355543396726083900293342498560592304772543016048596898781615324252348894799274995680405750878596158465639968827705058248080375262444099228426558107196531396214742222341535077003136186652290242424273397522322011973008959689104985405447427697563805962622690878847643676551937568195199630442280902471965977981411229976113099668948406547030430616154284052898460555610527743167094547976542569994432561515127041177684024726299051846873938440317490922778671374650487756540035261823361358220969159516531003029947026121379832699551547943004528250404116178992299479111764121739926937741658202028350242611557953577101928695026460543592411800668078233417498334223525119403957869035786809979573555664634818410923535663805321625058!
 7339612730165179209152696307741603539343614876508656958944166875931028197227084213006069890327681248136434088291450693535007842690028338969289003676630651962125691137082514952641307300205723426006143479478418466207633742474019652349063930296622337730820640228704088095403944892602375593027578381867271119555903626438180369441026989560997022402685189290570563411576345663453530917836449127065514652145274516095709269601981935148250423083093324020856938232573732465561978380507982367839148964413212119032538371930512612143512054346721380249172084457240675607838911836144206172196093241887871539065311934562423143050595975813896800145932726803699031531485898178421841408627035413234057140637242334416230520114600537243354544085804784915273835605370083298419441940878577289428942989055641118489012798817424271309417325022464998977618499584448243196333877136064170050575881120626018903546125859345154561817568409731473384201495189375815899601208752575627603329500301183188095642910867929936491!
 4087426322667213868491522412990329146293202682373490956625790320642804
53385167557256633596432829836906797154489491441442844573661312147165257729283228387225191227818503331845753752311813889104687301120253329343303322817674447909206656325018838874991783124527795687803251857087877108213218175422991370299903463408243198220018181430169501586756477231845517351601935397411806816255498633469297427936383683122862090150084763296027154205540923472197748755577372771253584379299733675504135390096260754601770478320092090000437030477206239693112361996923069451921228075128062610903396080855119939362576645605845474892984566105164377632302047629334883313664553345734804735715674449977347178219815739262943566148533256352573800753734245856962732264432925391218548350084718726153761193599211755449468751722095340217149673323008543031277343008442170392235658052374699781195238474449333837385774851142746225220393467572123278506610526913279773063462887372622241958467166720221516808291000526702236415126522740776004619794966850442414929033037526153247556530093153145577415!
 6078548884372041571406008765128076133114000215176092898248986294506264798639727812087334479298478545315123293340514068472557469284862631503547709257191442014221858878025727912833117798221233680779311687586547771399946239543986001782171404451158779337645825217591991088192383005166331028283723613412721407224623795391293388364187931553299328948798748615386139152307468917410066261860777226791348713632214751656850844199178069486195460193408937081923214192638277533759194570326450236304347568717345295839955367097394731137451394332819779112222693972545912493837982312660709638222596701900838145328629046106065868563209780150854223348481105906173852298620528178960495007325704272220203936136382479583103543259855072621403409859627786017216895598750303288281768040946852093886403363652364944285765333810979533420258752306609947377791748340996405620837330431676710875929826666843546700959970485895374841511522145022499454415283865780292853017658562910138814417266938379020705003419101213867913!
 4635465228748140715338202901919235146721268382751000173948051792235759
10310629411782671583818637819546488431229736302075907294961313226423551084910264998474188701812740398720306793583123154828787803868672076345498495199113445099124424731050522725276683206603485380567348512636931946652992516290262646589416341396091509721872364027550026970108838683249414212571204886964565829636160986536859883788390280207060702963996208929169242011756462921271784144386609444841530713275382741805124756047008456141960786049544859255813071615271768187109610417028646244510638699279903132980239383229230786002461112125625374929920696236055497397793370905509150615995807462647693070614654733657295388010846593077370926439327096173358979875513329851735335805761982037560717396495121026056824215353943220657878065433368166837918392543102962997862558313815084290234604146428506331820780266740857504296549353954494865185275647088143513231959734978991714151693732568833893316283389645184887032263989305568945183919124308293251565402367538500430945522752298621936349993079956068968446!
 6187459894748823413664085188532193673114375894635657021422230371741481201272628291057331857839227334795260680041312240444469069570034326579109561734228465513830287770817092800437032752644557620090294898701726471822893276178823467995953896680114028668705263367060063042612994608494995638275599060264777652197025375830641181461287543876098578289963422105950225341504398260961876098352165231654331697721441251770038039021598137974891320292927755438711703391163224807524657249729623124765093517943567483811431528641333029089123777146612469044864551164926799346341556211882281756423024051694895444281683141404904380578860590107370067182984993650407494702785573862720327108426027326956900641201555809469137101298425529054495764506457560037403149458790821054735591136399067278064814591917064338706971477366524778443386302556983881025898793095019713128407089187196967493940026571940572215929586883457866981031818359493810271931161525153017409040319451723832245963305267862642100074573633679726461!
 4352971498884605529190782295721345692646383479217594057805130367348879
544
94733446456067966769127826799049420036288069900260352216652526648809722467212129461678228224742717834105358584909381808438207696712262215564925244641011600663839118183087308563542267215017218891349111443407423167201858015440968394172184552924703066633174396992032099913723079392087063326814950270241836323739355756594835586434275852715303647534674601181623121808611137993248354514822898630625369332793747372640469312673756534019973009076142621228650115856894482080371428361204858316174750390771287604650336123613522431214204911409620458582922554357490090271711431005620277966427328203684088351421899736766128515417417015505596692954335533849886870232490206106445807169228633433918553944346597418310331545329102591303606462266687977945573490454674882327531737599593723227310371044521133115338289304247739724195727440116541848431556489404892135805570855762755849553488919138564379163834240893960220978801958750476141645787338434431980873515751667496820037915379610297349443210947607327004636!
 3343661259071179260382965776504898339968200528464234206854494699303871249646642485811604420004666933985741685551729836982926358491044717933844683250433844717587252699366862337570798586379951176474378774221029593262173881717992112564960766549050364753011284605971998642239727843391967774038958231917557325994193790085492825980660767894985484333355330520442978146864226215463907056678047938913177651922049935761663882196322357224138758048818728755477834305533714162429159181440724910183373607258613130585839379636913731605046386537876161997656835278960391654122119712316370646384350875058804657553196720080481063208311821537956138009835355952609363700064531708064420288837726690826800942475061577365306953699946473444264179908807236585691623899636517578076237318613662803000677595254569830359350209310340106654882387605906309667152580319027018056510774179659964177889506640602788471706807792755570351022237147306795006509607538053426398202615407127213785603227432886168024173389459790505032!
 1379748466149030953017402300954957526179588969836097031429140848045838
42017705933308727898829210653986085497841770226800199431723125607279669350937846167380814534710813293763452196474416319331178690649982482372761620561502444394472323379106960839688560326743659447613243668623910583435263725870265527272354681097361367537998854340224782973219586473847079849851417285386752779230658409174320605010991022389298189386457216041689492340208559404805979888719907538994483624575918179587264785482436871784280511816570103599948961675645814411774359994155741564054198094077706078181787327808839235166527298117294704518248948869402539784970404012578501708525229480032644855398293395410250493410544461435613045371236961682202427087546803225777224676453869069173584632909965978927085724136068529472284189988811197694925777567347314920454188249935386075448538327349316024944583018400520110059712112248818992601409033905843014105055980718844415476335609338929558270335638391892072441156624136346793755416738908930918686080312637892309129166075500989808404308771738687684930!
 6238533350915041060003830601639488536879210612389410574394034606240163718548425217716754516397600255050226439611525994294308693498690746297837599701612950308438036606600589226585293056378866958466784875726002532918393071854726101201435318123008262824539075652638481662843067124140915353230173735777223170545453318573303986361162909280796514000762580295868325211303562521349985400678329057981002626637678051720624754016353702521682187355287204019963596188736069347306728409608128864989228165452185240832827912818493863635272203008598275445998989995835111574368787888127048557173814857403078036294204859420644334157901693839596815335852775087815743971924322779883170605463400533096961159954373203941299551771974092493728193869104247191680745755805413172816833655379652759510402582937660069379484763050243686693087498612911515579029908914751147143616550977810891689159389043228611630980896160154365423970713173398762556138393349278906057471453816915692648820151026214721832503409165624542935!
 3117328396837417555069788772460439855626108533737402877099728804761149
15778576510475290891138178065469222072171325415946797805559574054495325587792843232475048202572961072119305427203445431119018432651599832951192425499568866292451206155443548518778433760228457318552553020385780679964233347394328325507976814317493529036535523570833622729540297603622459678702246796108729006536915811032977241127196871846317120153108720228291216785136832868288998410063083059699732951240183437928080758668778898496043772754027589522929366853922675139928237161596447373298270175090837568027446669159111149779944667113569108892437919930942472130807308198426259314434796579085670082562885883611446330706901910636068599518538704171062385680432411229940699769765217189489934971880450386432175982864331340232731735034487552793783486413104199496595525770669045671843550215620189672793973426821625686085922488113166647341429891013875712757048305145943663609924661062720112440987239997104207565439150686310201357598460146730265119903429865063967600069668795828289243397825905874856782!
 6269263303468372332124066157760295156537226106822903836613368341504999895934280932018654247036073590765608162195997593438201724618076958178347221271503991239373308059816434946231367174959999463042117638181478301910213344735692656258805710164468798455661720375874281490998433930465239312200035644248650280200221038723815085543608061085953817427853246549792311015101812667413846629462674003407290924306775649178579342775165295098460009862821986519350148631413113382340818641810195988872295935856034372242367239601514627896565485335331740074198424260136066735529840754402573177714954021927548762566366320979513483892323984730934282729939095492262868525828037625710408140414070921533779824712193346482520718387853744500723852593605676595762204021945192479291241307585464859181278455595125339485377327439546532520168622505372850013045372400046474447907459782510294447904759726899493753746928089331155435505142051612363683441007349842994707086534872826168261194995444598888503596079143671119639!
 1393209112009541335128855089924933928537947665616415925452758853479068
03485930421014317785771172451137418462432155337224056541214942322346734100328640923722757147317038093058466611410528665349292157043843719387582548918498944658974892112398043559253649190865890669173908088675009132330542665482077157364025208162483016589873036086598083796157673641177362734669761566653921348293456423991292807859979878815204292215190914169078549736187251693099991322700067499723351557657951436647470237487661496440492613486082997609783626049278231738894979224685209775995080498826972392495765987223064695118767799160549567269969085152582265295227385885439302173427475574391874411376633994128594831234384848812794576013671006676165974395896325545306708168429451211409122120091086669899891500102055692484852372255421310716613919828276574298188291751833720841752386967682805910231519925312801445377221647436825950860888636443467208040799574561042901019656088083930982871606160491216360458690862228973756455741357430715910893672423316644773328296824188314921716494972514011949369!
 0567095296152704329196175641010185140596083954221011253004320324477290450956867286869283797899445334732540783200542835488045130887413631936955816828746079046566945900407442884187381232567699671646926799869558860520806372983832112386246812028817043481558140629498830626345933449988840386526057374223073857866400023774153128859094551257535393369408694442939407522182847100107766580951275670201477540829825943655390077790618030037104030191092185293284782411655189092287029012404160045214931709357753608163420856552332014438453889583422068417138823995322706356387242611330217236088753196924820117906522275084815465360634684320835251951083321606843173343658468059130157408787018229598765822830020425283556693204501981988171458261171598400011723232484622368023378498390571958420833941883302500041002600378834221148367305474960967792429704499983799479044054349710896265896766913002849909603860630462400933379790920357551625516664005711218771723903001503960954051845816999386430449804010399161286!
 5934744955827606683482489093373386292669896469705317415608922966624289
143
81927372356726030305011034159701503907594115991561792511656228924417675577202639271089785260599471315335700459048301245358602245707716058212332185295875822030519372890200177343206194287342147523788608300702997965315568103011287992589391833877964700675202703688772405840664369190902874387633882097145801017495101346458402812780113168139897806509007407674642209638998045332620765149608259774522758423904134502684618616814579533717594622683030636661453659920280300843252851498178817712725738675355028513383679230567432436869620272756904956947214224246798843604119226316915567882764842223911962740367145989741445431800616886293376356239752548161092018062894420650865088651743884451744029361570891066530518191344083524173853908952947331269090022881476173592405472755741008722118602480706552734785464670810033252880494872818846476645138719484647002739836639678691108722490689445254499301361359823021009664966265824979074179330260447961646789612176304735470941059054767787436276981114648195946765!
 3953313260216045188056852012381853835993525090558673048169589393126688887107245163758078691852980464437598493901498640886729121561514693505446800392775377162800284446170887283461332016027846935141710371898135928565444047388935336434225299535630671486435758226615070847224212139574905881236472608079566539182107806975919196272996137682505271901680135018259365039043148923742221829972943591050476651019843549677158363903560509027440945473762000866255189537989739869552494420945283689372916225586445881857232200509734021124202427013381380975063870736878622413461626607614186589036757567280494685139294924694749767044828627850379939428327879122033297139754384364472277941952483005331330832659412681654814318367241851907164537118394561885376718611463451009876355610396882403469322743163868563893669207826287866646316230586562320803446703322414896584429086201191797751836078981178470876262961531940034781546405063456598584539593367839204717781619611519781599153348323975611162122210452896830871!
 3835459988065857801354859374904263956020172957868115494079887899895278
59449531291247582481713710885909691407061933036180030332389191321684024237117855941479381751226153735529282048462011908783557824107679589872826483801883630605162587458132380717021270703116015993195665321105590868446372301121939352882993284356956065971989301484189419246965141950471310036209138468408714367868832381248718738058221779691668726770528694917232969297574129371576503104861498264996394254251535522789265581765932812281351990499862833891769509864987093885286522464162414980091336048094161672069334242500172533359024122452069662742838060791570974610193234327442284279030092197167819796597905954912721055386447240760083100058808181907244787034365745427947504666021168615328207936704228315767741097870656528899580921512079009106248893864651748603366304880883858583654754195906352901696079598667197919515472675399988477621888478510736605567922374551580096127346370372954709964144895440357070050979597124970791498940575042016503073921008375739413281657808571980285113042479613451450427!
 7763666054870573901649799638800674927633569990174214247086042763368701538895425544860519661560114570743110126783606189763376540859558441673969989899171468666484090241900149311117346206295823077870579486764638556758721099513646830997771609454655720168122853937767374099428303951557494531692065820371452045827753578337982711615753554754759598809028882500151326903062183753558815228008049946219926313951475900767150444120102864042232346757214652225543337464540769554429637336518329440811481655311231788856853449362565109233822325088751970064021785626240504392039311551274241981278661180457520379031352263821500210772130502406624183002862477655911114130894749764170442763287774736669514152962797298473622901963622315436319141841799696896280359277506155139875578536726635378140081715318318793314798031663073541838249854774614347582122035033039491346267250843739731331346134971878652215484795211328065589745100203248729792239256892753749027042598668561490405375284504662614426425991229576994984!
 5956168866129342741521686045369508582771055380684247063968607781328993
10628551128799543943367009919152088861445556457442279253309475103278639998286086647782469776693646959682093306304832523027286162884091854021075857505952335491745175635055894316749129117086207384696004878978263910905625739599487492495979011090191614659080207484962639358279265058364767670838301196885550505186157980972185298078202754679077735284594885548642095718480957735502641837966220105606201767241016475961823177144419881009610279477760819625624682085457499375939175577255504390164427090909940333682021018189188094314468725119448839760726106428947637705083816809284728704530854716107278666310122036688758290646249653294421504042608960795596028483768115833106563981887154102229185636375546808614676806062617591254751326265896334165706265117268170549301094065863026692204229894830237644323671421946364900320018910295105537319742039399303809428707866552914769288138564587814966477980823314826640216655484671340624018597141217542440978712771828778534134383738258099537774555668639030970006!
 1492840773024700917201995246206245391985859237134507423999851718224954288951323435031823344837883192959553348790109921171899225365294293653362582595390946552963581374497293699746511875338537487094217708081745701742251604090438846121574124452850202379839036999113896967347788049704208886393128438915798686149953572063769482149209306281251312280804996662625532242838399173520256674525229908409946325864683411130420845898803241428782414860826210577494753300377060215168255421685888255205289137193877249869082025393362940473047505009970440709469358919699005334783044635811964910483163816068074323974751887377450485393208011892092176200325412859001921285078008780108096121869972156727878783603783428505022335910473861003790033681958215347953124203321923791186979738109328501036782788060812745282883103918315704414803727152691119589138273502062661678813673893005894349871926275421758678377586169291156419695497805005027174414821422531771664564897625594375826764309491260552928577535565273114929!
 5608791108215961940175702492044626207794680537769554416379023844428627
07600133588293722905895613531099244879237739700126380103906210362971005400902332662052868551292388936540076639663983925724508244968989262459924394384508765578909028189856834334510996196384091164376705960548419525350568787230520679162057973980086958750046561196154504016297677700965470185284334977644679496028037224229231209258155238064515073175826397848971659561076294495873794568519845906093691349732270242823829358483476200972795732039739082440490265245937396257295449117729608598859109798319161919237155743147773056132758650301867128792233399940922106267909462585081169282796692381723798551276299352386088317714689728571559104796911352900853677375489955124718689039574466000484795401447802882232082425670184511475458385946399776041212321829451207207790817682331516184554219598749744558901511992706236051896340735393487564095315603407069359582576081667695587492098240480666527562455192322003251452941755396468271902352195763796378975941750521586754201928536559666201450456338552783571256!
 7120512822751960929539092457841885540127128286062203184030416252304573349919862033683941854919174431281417027468348053312363654640800952279867998081678614387670229917642042193577030302889240633823371188316668923472566531471542619736924881856774442368306762858080355776670852493943272675918271305802820474498683109238845183965692912826914135802285087920263815575944588577839176304153824777450273630047967685689590574290775328240318388741953284725057582369989841855736097379347926210756480012760660056848562895296270365033407284992457076821660600430851921449939946159274018679067024925091880842549753825000573641152765627882068316837456136116466105945296098764787617810657325699441300696040441275748480590815431525219147593078104140991804367706639566726344353562456193564075135654672716790941187948848086809230938328738225004285130861556467382313448911976530330590349488507090436408551170896815968188535559683677670828759269590012226813063407905218083141753428838750131652921876633335743143!
 7101016347796658883618869883499832898116400702596550204761199068845930
641
18801374335280937951098305220586575519025533132473935518421572608823101683181764097241796642821705539235733182359972105591467580990960157125453625914657358345108084976967080717266943718308124966413928529324205814835226274469375858569571687034502237757777835981585809545667455462729794730797569320508562640503528302556722866775444828408620998138979303709253264259640385349961705463860837230314894810013719990131970126280108496986832790805995250749377542359999787837446577837123753575785267771063814356136789079473724792426181599280191554236358409224109269519498675837014008069125945944555925467047320392800470111600155954170202879503592920177039686011345630444923339774354557165457271495173534529046221587766932103972565405338682391305809660021212324831138704907261634988177752506339880373528304413788504053529141957344862622148033294954488890854507924805426837419406691885551675721662211092089973185266767829352661329042761712071734330023452589195373557475092687431529363428449640771785673!
 9958438148942104628518103849643427735519244385401105600364091860906598300233736845914995840144499012936937258939528898348115564558106103079454580475664650489357678527521118340799459874420567550698461628297481692743403195744811212692198913243550319837054664442496096363374848655871436934240008426830694664726867821605430760555551571130105499636942141201452860567154928145035636088579354204498831255719599558707858336533055121083928499841126847905712972202465501387082052447492723419195036030393946034767708515347254338076913543021032331182709941052543731637179189960813384440367350920911106317337658740160001869730425298420244888527033172514692497475393198235035252261761609438480970535124570875131868926737005074427741207097904073463122620529000639189290990331964353335337782773033800956435520237281189341422221316384124662187626562926213165374744095230545401691905912102983325487384431499690081791766624445625710550014060366800133249580906410283487716419356471430409550576380385738522098!
 7161679591048522208070839544381665295350087746068113602730824885662613
92866772837170303237832334671640641865105991624817670706345653146764074492658990400249294338203476654827303415226579042351013109297567830484813632976397632274673272990989392744963857214412908487064480704661630671832626973018955052261750367044376560638608975474809199526394403536046543998237735619024650269312958914022210598873408816322256258686174453244115894930355509977482474151507373411947573337355652762741851916424514620104987826294536895088446232117635800351184183592675986429712813985384144690969171907995167404678189358750274435035511807996777624987062847592913272616884488849391411287453205724835916236067416163446388013123511612633214157350735873789089864603319101047904951088053276243634380195320531364134355459364704198439973273192818302576008576753025832169671464683435884003914203707242670826017616253390298986715267562219813060352959484464640403968856006481766109033056079065038768968446731694854343891836893537933416898764610405060241093598555326643129997593902636796969251!
 3769369261591022851172165414889215726223597736677014639845855210470747638897225490221795578347385363008193343789887481568027697599949512125441570271376490277515078779949109561489574262273987940332212825753245784561955271497177374892311071758004485261087533971440933423641670007394747605338766380254295863552936913034769868990613336245908473538052999169523740650576570393490154739065565289258081944696284012213924551119876038074056609941052311643601925684722053285107258758837088787835407461779760153173049500582938124750525030217002361095736709078402235116222597238130144407984791813303210544324431102719791005913738093483775863613997719436720065592456993814702761918466612118042961718665283106957766092437716159831512459361728010390163655204661937092525125363139655920117782142768019428047658653485815874703119926770979133504911072051652432462312538315744875129541560355275026367961454610934441685357810273138996999546867343518103443255259516930023300505925727997815904820223589052604792!
 0348250750421717345546642531252852594784406842133378979724559983814529
02491341277243424509717951186446150628152839286502372129264368408132689423169315188818953852681800476310307780389924412151871985827222544989996778751458791602397076666044133305940017725196828827618138902540142141154032221880752214931387303943894838634880488587257312960544022675401194443442712395569023790715007138610641985838887956880548633517280844464472481327723859561052130130910151062642932763162472228598525710263715946299940132265505188044657398980037754421846299791933040060517616187986026555760768914956796240330209203533823006419857512128054908768126499986629682021600839357742569239001450967655189683001149858039500662463386168022550668707591274831975300014554060154119807841134948294656806017074182194482694202914591931179729442535235139331011218688316780023266376919519389893049565596364430499826362332222131737958633752729015980267624382084908943642831249679621625001635299668930446258458041672490710904142795447432277640558606449799377481597906129222029306198335261800426117!
 9665496758054829018106894737221612026571626304363530228212933724508394353437096785432438058312889505278663565717128803698528454871495079856246655577931705079028998685971436459307797350701401522754476693419823926389892945353431902180169387585028778687970204616823197351992807669758651276064682383916960148671115009603845938820051061526646256272708637399471502577181072308962043626415525571521279045835429590591012051850860519983358295202764452425123577351536145132912213357834119671870758566063500029766458721899656846809835422555679769978615295831620657432073721099684406194608527521399720774602837961829406778265980996983586608974386510365624255625084235435456301512197111167328336550705832479172735651427694109849863570666188025284345361197742349000160410913598065825325104777234873758588466697858029999224197366504115511962816004732157650700516628984539963791941447196127536849638484184078353921949516076075298476708413827460440301770757999666767568612536105140039171681725678050138978!
 3718658379689761501720984806022721512087636711163552935619613040209273
96418528693604726513966875563040087535856868313141286860922825551242269595679930350249011366770936403499037484587419891089018945705198578124784403575786713931970855498938099970654105791690209598897498738447272613724351806561649931638973511197033103939780409280947997343377265021224971434098237823651965892886279223277990394182050685698376711662377215144120227663379491737437342283179727940119374539049057971446171836025673221405521946218628591454389656234024894537981195596496870707302186078051319309467852848444202128432499307154135644230793862725265852084922694843993948530535272706823358639486081705774075169738521202106289594177160792541306991346081438246328669352312659073430366809538595608450167393229096542828854097863778722182590727434195646611659593408713448120299579604000576414684856384192084025832685521237954962489115862600940098765413585870619251136537194814860857107708376020972374659553114403073394942348448615252372266625317209081622694000211227591834255298281689971968761!
 0143851919012898807424280528355553325232571548587561447752011946801115509440542965731019362159591875821948220747561530783348030085499433087398213402707000311285887927967396273660920712697115138195377155464106337455584919631691755255599189224089797833124273545384179602784595898647060095284180866467711094641598431500095974947022075958749369609348923513155308795226753192288751932690569926959011242800843780897580223727211128142771580921578619031438232822215843119736386797272276849581363281470182765236169987038316548057146175201779780107490052009862225386713437898798488104450302717738606821067182348566610328159840918571490847707412577372152962362895142819394934492310024755294687688142282688263381992107050031482296907812706850236096795245615631762537844390868388545471766250548688614538858940190650918410158852088336961298773167275269197562386427609513694583842618521833895705186413263202522931391348380821287964338813629845539042373128573855900623287197915909121817103349208828736572!
 5960067510345169173034840664773124728536498697032255058028512103145813
971
65500540219991258467124752296233047947620417483573396512933884625986054669020687274310798920093600862996258526495569263422443490758898712075405572391778889837474006283110359893639753683143163791553508445994998151790357191664595797264053563579622852232320999562529072956596862566647611821743688936552658420973588048382356327038462917410427463403276404424721791963389233300452352920028757301356303821117289713316943637220617508581520290849724636905566762892184262651781976519538524643036425620321295916089585335981540706502452521657088226438896955320033071238601771994269799874271196603530485283581844146085491345064443171308666656732474479432280547339137606275818904283656586598954664885617098590233571893647110221915544801416081086328652657202503734779658698028969756875969566551715729978174149125519450833779497446698060268643181523422924316776326510155053746777092041564764624751249672301142884839539706060560724653142273218895838355013985022479806163823494536612899404093559178092658682!
 3606419849478639492739255146759621855648434028716399842416564079224320499215193527094274925509720983764055479950763696237008961585314208285497806440657569461074012428301167709175408804880626657504874497001006448172817033718571687699052050431269126758942354642426321926816126071352559377998468768487666374637370848309130230318759755192524399178262640279966163670943691125300862843502978866714838773557009540850951092542672370871628508720499100146666069343525439681324227750520412084311778362086425913741403701893905849130885307671803377759779815450406004508428169265395494242417343968257979429633223312132181078012932197936027503888526310458725788790499330172493716992903363545290749651464056091275487528815748748504665647881571336432427015771206508826472570911545293554151064551035094710720178800179246413597213842994871045977552798427450697742656414883406830080923054646260389483267223960406246465945742025221084288128266889675278980243468265578962656266379745368910929346892092484109702!
 3571316275330238902076986731432584276094818388124585758734014097068671
89561813112229470021978448241581544509819889152942428906934660562607956566439433934279983588235711675751163292556214994709518352233124581091315865577359175847036941484881503863264098660524416089944214237244673185768540526164596080359046160459477472320562878910886992342019575526455549151862881037098556289818492084536281760741755782246663879072604677554834517443481890496880563765032503535926271374514988624054829562473693334496233090273911370810584071237265540394440666165466698127940161174380314425458361131387001800510642225047421267495399707590971527103141655363347732005496354914667194992566437711135196471224844213383344829914740191692970978273304820965702365744166216404138597571994011075505481383567509753677020862148022476905759312845796120520106065272215959974558956392927416101354477714866027222280787891903104933048606423488894126536509198046804726679290797077022905020257671384436845815634829002226658722453892420758678126480742598431037231448350739349163285687087989353089830!
 3553843839500797078015089931667721215355785047682448066812060081609252490055065606882005394397529404297779977739095481218233882815997862843934489379186155563845847942592989490543845037369764733322568524240216019590447240163994449258915452220947381972857356081416294420120829692342136751905692105337359237781600665668763641463665790435737824436651668510493519577657907919335490054245374836258264105168437864450295918358983964405685936888263686371050276878385312777705665995603001572358237147154721905671426014336879664684364914394999572722150580428992181009895079934494421419902144689255392867691751039824675824637343805239735083028068718734460641876299320312170407048304612916426319820862850786951729018997001434289682624417807819162644171950445075766685632424567458175518591360435999585745988250355384667413282045253701080509023511484048195305888064160408235523512941281404845448810370856942626000271639230100860372142424842912649571956987321905242756339490162246454625934745670300567283!
 7508467249825279836734956177089836516547827889426186105183276920850360
36217800339152493371484445501415791162505068909107138275802244650509860986883276779711832579391871621676788356224198867538683931575658977686520163945282738867440651787566006894982173557480744432557759069273637848180513357096270189715205890970811986200522767934991330405828456720358566472410588945530875223646183843964025960112548528766088662848307636012870066672280267000361494230261254165504582961699316384370582967507053229269109161196749361273729163120586368847905250952735154380622219327300289599240793907443857366909352949258689440107342217802437077152816124253190882271732715433823740147454362184333256802959940771301498332370451096996545320274533507021770370706113819105163588030747477081980826531951055240343461890804087728558871026191299109229595088225181920585188744198634862518824566545078032953634810263484330308372418113655627830193910161835174032238450979146875216238771442392232324557636410797470012553983247122601905304886666493332284863290538086835170964354044025686679116!
 8844434216940251772691672005423658795245864872919319419639837059108346595565457374554274722525638720491964846804561216346755578001839114580507202910409177461978829650486123555287269755200042382038183207642553640963208933924544967598152309215189473050197853510015299573530542811283648423659474359596095956980162027530239594199533446282082649792360794218868041106024158741508575194580615688808343018541253781954596974142367787418706672158427522319352770701887762803032337402862660420730505237852035421042577244255914042700874907643524826938681071637669307303727237417175424585224773575827029599664985410231151013874323704799159178790299448550168255865451538812548574254146042912012322855614889532717717240122627994410826869139972987438255681581112623873262610426424919146730313932407899673786143290414208441146741535167426897337032190690287477060200884221903212516552891171738567477731136615373439175196270795492161709378005434045787378968957940658402609222670666397470647461914851144652443!
 8074152055212868620200671723263684717967231549153359492453428928874859
31766426993620967340749774505307056843141013326328777592130576231470087437384507626030587577497873242071406651361799495694560108192843193736732841798935189595423519702289347297697710497535864995673185046950987396628013953152473360674595746536734225096595010987669623734140606839350348198382718211868440601761576560254701139537357267834526945596079177094497172723469473343678038722377574791686895552041362153801428254867377695283703841427934004400130568978355622798607136070596604468533433322470819960517276152201080667106523795019070974937418216335299386518917007788988347636092361880526906006408280797134349789427595928872026107851555411239737304609759231788346880725383510590800218660449028979118967259367552139647290685797350736757182169740366706989613457874506109712035014795653751641661531216473254416789277507245943628192382562336298103756532891328239232227250679417094691318566996226763008474933294923772482025168055066631619903457800502962160950971278313497549748497080750146928617!
 7972053920877355735426344654046917507878362978303712221263449953760458706825466567329277539722860367819247326075875375036396055575515247044790468927900741744080991621535352379551593168250391708411573389472148337705878936954153482731607170302320249290945466553120552501263225317414273729408935823231304140359670910492571838352019535775111030301893738736672956883475900280466901502804156922062794107897682809626966101213748811955631196777980468124930647837405316274760628345868471645943824367753427608269557653234427605339971298708052089898561442065934722157535135731353150964325686326997601181676887233090478473878261088300271876502608262925233194476909940416700264006555597136991814669791135677806574510572964711963826438069896023388113530721498585368708628587178926879629780160894163936301209416355230277734299630152634357751250413519834118736205833454731185380745726843372069052208562550105061009379428561404741845592117933927270859725115288005694028053614114492402092462087948741836224!
 8544537016734793590201500699089471119500954771699606451569340980957608
723
06116798593054474249458559276375426550790985078262274524142805641961957947016181410188593967029288408817507132694912645147924587138834722095701254537628711546135844710131132320149549094464014760003023763285717139536547149001355586963306925811264047920053172809211791287009678813893732959490687691623091782228643533340593396791602428932748444663155945748561132045178306464916622418132462957675091859029883332306551450236294043474054925561176422160938847117341895740719985035273669869338669851702573938066023027910628085352549353166194585293885401347619818297901927026997553976270972133207752142888313638279403779548104363968462169524948229844322968969208533555308531740953971002744873252835275736247945801278044550361060645585780357362625255636064773490568638324600588264572996728670647068819718804899591820953876986724126105812313371883281538730532406351716048837318634831944878552453402131059605432697873627899027362358152686677286484137632175406689989734882611860180029360022362615884959!
 0389381838347815021647310891383695373808683164369908798085930128373528762206005362275872876794657916805763581432409253055023886548294925725127609771043084142413271492230145550249153801165157010725991966088910334458778020184201986872557983485892794115791654898418079655981652924400286000892833089959846125154134736412475537056580724960733728968639565510344975858300171880139293408159346577407491687314019903828427712262333244605887567398385935007695131185563168457383865551229294080306842203625672459181138606350480155226167063564964286732345965669379924358729329116688498393642069797039019159319455970361259262706370837171360797222924483897365994926322185943095293445517054009459274870328435199388140267085915289496359507636380732347053462309324415095756918504808919571739191653100024157142935668690970675538485026108040743406457426342832522110207103450374538340721719272860930797090878640274037560341962032609518023331944660470439348005406358691029418314381980766263692292015196267454788!
 9054873008533422088159740328925356782478045723448555663884299365178593
81542871473470540776250407980710868325712720965952470280931298490597903061967508059944421798850698316109638043185757349320897027921443393913428290098389029276009981034971675340055350266575485135820698171894317365218737272703866524342059269683995858771658075362930491745821027533012670236222733052137092747575492754032248665363239284288788071811943447754439431574633737742190514462638401483845223060132636502788451471704790583180583489408569494249944151554838633423772040699601933580313753449760284449951541090113815606641323294310535403566334982500900534136214959747529802823984619728367006210584613977815827467657982601784729657646395894187742496331695884228391191590565640228193496801758163840139429208142088204546902994637652059988197831754480127119965562213173244271608021931664460718450670245160461201179763827239211348339438798962905840179686360943255300650628889732392513616327023907523959826534893994680658059487686462751410940649931153419873217299143125910097771886869455712444493!
 5828613812597646375511342798457376202343562568983122530420590214907099967416032154670753881650296586399155315134290551333165324830885034701954905567448410103218765899567583945582382868831081418628354731947552527471157540254348046617748038786859837871569491342785308294728873541204319023209059529543286106613269760762669266113521146625276984127734085241913826858280955075837578751829441953816699647593380581097441970408876883252573743856182591108975019643147937257207080940589605539709828580044556307859986110829784519803998823094162509868026351628228075608165070483489644168361836594632976919733266450443327026529644073326083594871297205636803629992269220555502193613130943929256168982589380953115434813289518491654287254628635197810302373003490379917930768861220453265131810138168987919567846678661443310580143812599127914158876671702906759990712229281727452785443191763775186488544690552141829475460755373456060855634642039617667095752874549490120466035196463687357729297428234750549678!
 6544592736062760898924697824189071366910300926678191303055919511695693
17831975407962403384211046644652404581868639326096463530334711292131543695714422067237270190321612831636606835353591402798852609531474419767057640109075306047213865706766549972656139956259081850853030455592840761412465221809965435307163185074886478933137159804019105801024255417135661896120601106976120338712176953627748147024046287959447965689291666561516291177369461849461776831663594528511716414008796109655867194211638165457893559437474165960191040265069965376089108849054090880766242236244525313285217856872117107507287258024370274958356646245635139772059647787347672137096977874372222228544415051625814759001600103498734216428737941520917280874385287068745299675850634623615656838065684685866591288392993987491928045097599357621915303453396402416281637564573379859690128292741879627625038064030579982239393509589219952785102916463804783293620919278040771504187300689178573817825379312653226956429848057505704338593699343393456044962325937243304357667147711664262056671619377737577018!
 2049361597820655177596044557427140159585062420861432022102794700328644097498531194933972205256017243806783980806301980330387140108237370202178023999196594847420810041624631399989387267812969837139653343697806394667642860024152824873785639412927935383607707608300750085468836684968344738138000194809994639279397254809261755712323072287991472949962782931812117999531191393368291421708003917108392039962532465712426711480762187323888663027326326051022748558768582482996273785630375020526294883169608949012916313726348858049819248754553524887326239439367504501654768934020682145856556617105077511943738058941342569604131394758191970668230263242340902445054095883410876889880583600190580085619949103323884501331396041945468828359061480627917027425505698363038681904080769860746508844236776170546226084543972221940355420265203310445526900704688277458214569663667446999428841734711480702347951794307783615275740011675423810497822651699679327017909913253596925641310212031767596026367955108692598!
 9193605152931611639993790605221621826257344736334202630750572642522552
55006962503721338053244844653771497170577712173855502140364109117838972141797635473176486099732370208765716623286273640666665252244484423704743126027019405293253920388124561167839226071478001195718475045561161525038448220826918667452950019454795547426703119533884633675047534119243051728905583063960642730093178990339713439315840591610085863938221382022717081924757782100150391638486660170908139091359533406190146269042409568052624010705647776618407365199659831201591486191247910453282084900376962357904520492814748144846581726874291601112567800981177269122209070237851486611243714459198466857630947375120942433520044650532973912516708301825542971302260674660980052603919627557983895090692431900473756401836074549348591017944755771628631505548876102867291818675864766444786596278272940399932099053354969138475743042203580266820050183524856515170342099431107260374750821643495885414321045735574198011829400651638459077831309473009929939541827181805997731995522537656235226168798804828472031!
 4958906256968944242784076171974785212111708675294460367053355570333619526994064352330819095743708046560784123500619341564951004973317383620400422734437891578965349586115919181358972444956070703223227828015791485580886632670092404234203139271646896301370562218550399034622946791769783297015241275735845801308975952586398550215463677050900703329079755832652569733099251994233523426743245262878343487803932099014786974131728112549644590427779736912668770753379381052959792195600945196472452145664478112940888425973995022893156732048900359565314881818133524884486986948006125364742775500050420404621034425555880866214425237932464586130867091526143968878163367734969512409007739167264140941242164561853646208583805219480898873774634285140004397923506702424670667069730792355322976556684570476290256322597831961833397249154695255251435143479730725058985393503441430103727693308287010755526122132379489153242485015478457009774568367395706462453231678342716059951325335038447646180452988910089257!
 6142364568920937121623357779190101698527465074331339403860558383560512
529
91146475251049740083923818804095246656978219067500774512734041374694859890324303842177375760809258836398494285249166123974213403066399683994573153145921895618542973694163929127458660214919325606290835478894538705890991028776842634490924275819538227715445507550828207848836009388575040713380643144643510663577254200107215128214873801278325521947726666964351963995138809766453243327235576842641531380978229804632131537746252354042906035801705619274468848477598491780867455498329658519534616200108125422426766724465919850037372467000945314183285138022443386726425015956759211414749624518491204720646756094059335988791797905900136748853864506869620656149908349682257856811345564839572728890376856473485870278747092443784170154003374569827482324692217767073805998507558616687137871868309680967655837021661114077220785221064026826988873072896051684378352036740225003301294220879972807335520332084982518794763661742905528375912856416497413728193651143325413215966544797508896637844058341384482455!
 7338593122367508775691745807770666376143138370336043345867465015719999493570926314983135394760109974600000537658144945733267458610633049321502973839393544273709938641506048173133810760582530943941987857532365723323047959249575058023465548576017407830040764894676825864095103880437439926955341506926095520996684963621960975419902566892730018303988411552635487584101918625856519589499175436701377526296212355626089075981447245106345316843742039269634125122549425532446603922385414921802547488287657536406695665685449904948149152805038253528556467200442522894314635745970560541321113477618345914350068040975165789396711785485165229206778357107525513953145282312224607743264857802147106967125824905495325200298011874329803856098208474987810516242573853621749468345607944013868042725973721779959761348492683692590494544728545348555476728550926269663335154395319199262090222901179165035405320535415573239628658778850100121050944836436935545656529870251042733731127036864327018539304622986390184!
 9849779085270466381007410606419934676834879214901823792623153577676004
52539830948834995312973156738110357671380950602689881032606604431764355029953307435121783536374226307308941189098334119638605515220249684439394253053142728238451977244601660403995835472791372579948769056309963892047062937605056521820542134579977355489353836803365282076081251489436246900174250148369489103249786394191146005402306216185569908610246731548646098802027810734737377704918834398152960696061717154770915580453914721379448863070275106259100795373999513948617449030229789218152339558821015764964020945919409001606116587411111980734335103381902040120299293240314432987716472194187589256763459232199092290155723933728886071369406177616450934567152280499827475092783026359931981639916855626044956799351948320384470396500989985380112658613333794775521303288916197879337327684474132831621538213505022329824795198558425306440627327567040485421579537173343830136579227169765815254227253190269172158356347906550143393222118454577433731865452718559410210622948825204347308783812222983168723!
 5778373373445155994823292339269578929447998242009493926642707394323274713200971603475707441072850307963039075727028380502095916175507000501662779242931812450523867239968585193177959038840467556513325575821494315351795949879017593995401869958616206697153893332575600180920779578501271585250132437026798381532168315105880273745589398225165079655680674055293358041645869285231652892506244103450725475174669695766475991206556847983177883862444164695419191341166383135950942698407897055494658072945983183865462177521063114551043363353661775730503740634292089127750223620941830938203794204943018325648815146217473149531227249665194033266694654817482534172522912474970511461616005428188054035419894723457255907901419851829814814599027140514326607102622963491948125934214533789872458309760486188866958513039072917339207722568960983652091279311482179747506446559761340387575922402239603473570849183378112149892582953233544437853183336101743721712707556161914380532726602449486684750343807525183922!
 4592395717830234714190223503503807941127277487289504002308047407224556
00124762073159921250457886191338649903391268514724330910608559436605624848676475330103363659857748963154641346528176374126158110078173670124954479654116012249009394603499330999402392749438135040080294489916879393667610867550354692386570894147039461647784558930701189503601696843007815886653291356205568916972515781275439554162151952105300131336221871938145719744354678463679883187413333055129221001574730478222747354362338060820098336645368558689256331574692024315168312340672977314170507985368300211465536273578120633869732468790648595875816722867648874376546504490483805651802297321117954056543794461504202156340664560806217490834492965788882953793035047260862168232015498493360658850369596066660761363412546677142657669669382533335382968667780185547637587413756149740851683629386444454372825282127596573341880697804038637562432135935333827691436403187220519444882699899867804379050317265195333242884761680065162980299075023247883443424065678288128860769637406496025630715656767505203705!
 3083913616628392164184509828446743051228444239833464130153027392175042011926614572750828139037673363576392544605297160176537577389894691397706717184212302966812872049713645325528993086401233052322605408161138788925319487861723276315274802047699701084142223997929110102895691963294280332770835352538903514318588286319374292654222129276285260042254539799810059553667839998923929180915038777361400928153081940786066474842382259576352851784924147444843684342520668215659669197697288057366703621563551249944361226689330580394804546277509788735672716123758257138391394108724319551951605337651555589253551826979714756066893173531053191521229835917302302675839274164931422439389744310087449119622244807371585249475527582841371687338856845139719357174351376651048952390290170630927122646840669278348399886285959423967936456417355871840199018757254634606762070626278962322034805371836351794691087763851991107837936690226478961426528198994989440958364692651443165658212471792078920335140593667828494!
 0177989652979815054754358031775856225586906101230234010936129553535763
58432997463079288408167023366788970128145958847428199428749866143771185970104607861183122285674946913190044825643028262007248787525394397901252203517990670108864444173332942703850477762959484381499099891262534888002247011268538660594376622270365082672212322235157255037650385409525310175758687338353119969360241660039650928072743807137547048484456886848919687212310981990987307479532054140103959736196967523052442164056190052674275993979137268686278535430551791257504715766018492371822393484939196929539449988380196572662503651757494033119695979411721257623713831651147962605579178440278188122553834089639827049789072574304430334117910810905995054171220773737974775030368125820309958441194867999857940111713933242395262703619927063772417033978111333238271568277342014790547261654340193226714421801961053370502633374273190455187948713485249862668222211111318914455762210422898347390349981259778110809013186425670889103674298030491363651421324982033989238262331145775400763163825126866684850!
 3158411111411558864267907213460409221705074598247207024552431403520119565313924583310091425363495878979074393713659709552725556666007024202839100745946246631307454467511305993777512041192805564972915123491505532781022986430608405376440989174443107699871727600381516344286065218306921009179927941709319362942477458068173353359701759893286031485320156876979156521241896700403095917277570816030186945971407998244363332875431922140735996952626830385659584520895655497781013274539434086438652695414066042052501513083780866457299749256903761709300281616225031870030327371448605125164072390070088238239068114739958043555903512412218232982743667778903853858623918147815883532581378931913051647239015905150073292582746204289143926675349521549429240927856129414258693729514689314270544422700093241610933444781762618884916441692560813590775794473862060159240401206337499895425291163409524485314231824745868679213510269662875170521064607847049746661545188141510351673498157830888050629025247278491328!
 8358585719687703163300975539049048845664489746888824842250422741076906
915
47824158619851842195790945913926945539349707417082601299136137293319908996124476112702770438892717017234886176319636850246720826698760848197526515117846839743308317260487854030332942786443609114897628797413020336753926893185945801618329179440100958324980587506458366412769529285982657703330062345826549555323166532305637373512195284921489639294238105955982270927599730329947375056874498728129347026066244776158346661704916269757179758724292911418797507487821715334199745268055732256003141704634220318975782077302373862469785041650979758445271645852204355139759287529508954652280662696943449901488020041811864203977422040427026695544603299092549594352025279648873458005434584684945297535391583792911305703761773663375795239771087393379547332118548790619268542240083953610368778991522104521065020038005180834770931615105441297268508996642282464489776423231947675602438097694631001688776057256798936928008650248744676082454595750132838100012297473056539991376611276067858345129580303840502530!
 4166311739822211379220747439396630034070496076432882198733987733380285979360982153546559100724317097157060971059686886906647906795150810115197051363575163611207596373863757385849998378645305790304439430129504109743783727473215821070222676757039661418608774439690962477761429826812572551820738210629142917928982577970023307492988858235399319356394252680619486420670833245104681706704055421341876516419219776188680295892187243673912979296702170026047079540759988069653829470682629475007992091780545010872131836710302140341239939886741014047291317644420908011091980352443211333653582852718284326236725037002411625948225597448808317606737015485628911866544655045630521377904505732818512019796654094302700497446325461212241411283293664379403219844792766561092717076355940122055359024467307073784068108916048402263161316537882261306234764932281552291952234092518396017149557062533930191906745971899007765435853945373057085876733937752255618875908626655726071481360268430480946337810894870533253!
 3469315286522818485015039938003366387897338934112884345773523321999762
57543876194782906084104923170869792726685650177178453576014440687171686900952806803431893356304270972778706508863333729703100159320223247970041018149467646133696884479094536114901744629897493230037580253191769550524162500655284261143730762265420826822134594675370336621842181656644347757209630013688515145967947203601213939946326114541444682752648661586756681602323921704745125701348659061643086005885568792084783360624630419584641747083033660653300534206204283686318888324266816035175214007464026900758761089479463515084495961700050182770896682426327475529391344648268756009627622242507296272188378746955853968086987312689237481269813501287025948529870938537227129950556301593716628582188659160520740380572603304513197216792914771867563052935572768823902922662197305804873114011753081338921701186180117337251436635308756573420894170480721933598874797364268619879410285421295294104365480616664665609535068126798608377234268522061587747745045440859724123572813629395024877213229181447460352!
 8240905004010177366269864170218167035181897467051204279605436662794521749414856486403423375959054906013609693091684106291636794689232189120912740195170618038721228430708796077311372544130605417298995054837882772704666386419113779886974063277679996081032755656287090677016148581185167152557206731092594326602485559388718412430422561677461510838972883424225891485050847290517606189977758300706565252084740820884217337391076739811488077333220165889114100515854223884063672865672508971288503845294031629188371445378786613054000917050111154718543635583103320721198133485863115342360192029371830435261690844019550048145065893768715238471241858207056441353048742051561451208666809688655364730701451711555839964583567800349094903932744514411779916379631033825445061267296629820768928347383482756376171383960793925089382875193889083742482839533422566401300588877665791783597740406707501771087193911457846825425001211040115678138129566257255109176460365967780579961308628200115012516792484947604849!
 8842037333939543468668590235457523095407381530411675919196403395008232
21212203194858219244347552933753017393518181466920530067683549832608976267360301178458554875270307322003532412239102967066481671955925453221347824974025002702748059981683762141181833876083487925809813815166160414642080752020537454958013051355297538783179556066095345275028999528430525995863149779903125995926852386759975764413602257604706511987193235262649108130193591599676247754200546833291360809332318453091032664269570273636886158684198635589869662161263694234626987065295164603659088977630943695328921497180259712631079198634234336833798542781592437536105952313676705884251472686692596225562333882544491533895148078035316009623627236262932109383812134429259616897760712961096532858126385635284069187072690950871990848758805976806154343849833078622373299505385954465287258009173848216395247618669194284409202032528586359734273652108417792406533769948709190400653628400265799102780858816942811241986780321267661190821206876943902568983185502950735813628332588132934978756119965706477032!
 3354601359330157371869985275952788401552313044666467007044570167374730294477842583797133957981023419274301141663356310472002062303466720043473633620918607406379387410837798372659102262266281668368174614508881058679402091696237070267227078556702466966215235923248906556541142321653001230668315813709501175164974741770771047867114423127030825964970280652309726522595350260937603204641810401282570297152909966301797287496716078187386434604365603126009130801990559134496982430598104481214223239198832330517487617761060380242248693360782698348799053187120193656571881137988285470003661803376461641808005621106566571354457380355721627020669870665961163026692813351285972342273474043550450301843661570597586025918972971762937820758515214366300584413754353015287363863937559202494019912296147831205339020402152495716237517713920740481216320695616878374406751427661181935704092622544281257244674793566990224000161627935699977379362229328899510966718814725472447442332450832816113588506261778134752!
 2637741668930679618906981738542620711683452020866172255402151315203014
26153635292417624887240193843284703145335685532116346032411910969004980661636537048300440101181291865610897469806955769191358515559383379158906798187857369687334916653170293483274482623496789367134407267722684084039078504473370916901619483417492844768576605582389499762665707260959172810261123708822042404896741798176105971216524341898769732540518357639068967524643049459814039960198336818628217058607337201469935697285000231851541357699941300289798454638720609259916567500425745577213855821606623818818432608559086488423057729024583754833271946592218906082255771930310244284508802380411824587454595405991187938986652434677760671624111861001010409073491303067136969073215943484812974545321465061611701587079237826776752243663566391919604273126428902144018734759285470742567034499691767523359847813886556570589998331860123461503647593817115860385697047892499359044412797604188982091303483302149530678261969030240608250991840949624111714750193668254719668444733985153038785005110697902006497!
 3535455938575707883336768892461107934627144419802729030596670946542694668000365572482505385372657003464552984375485605766436548468959198703255509085909374209804862413099267432372863561176180971636873658852587542928998684070667409131052333116913901759061177908405550410409730126750877167686004326404717317308748944579536828065166828841880976387687751677225401507003933693798837135823136755015852875240337553986870947839756157946308525991462120723856095229220102419422643655009643728162123659295649212034193108558048057925207056097073311003610872573365512443639741726877515322065422563933914249879192202992430401513532618304251639821759987994032717706306529601965946603316609193225213978517420275604532822558009110705570160851977806571014316301211880912558064986030948049146676107720745502634506956158153283070441964462644401978953041673808332923846545153725133316840331525638965894711008798811829532364680046133945376701491217704282194282850506622188463050880409783570115326654916255249526!
 3850962757967494757716034923473596280176155626743906233034700445381194
095
28697550938580679702661145684844846308991494315152488178024416974099890603908439441850253047357246937305616185379340688294601425402211423373139724085744945862377619322551855689110364637684070516003606140643570811847797770405995641200104601413000890788089377595295745047655039053183599146854554075702541944535881728230217184087340156065947706698217296638659132127716519251666291242160026082404556418182824207155593041412847921238148595144839965671505764602713610407345488817072271800832968140120396622375240917625930501196457437538992864618902187410750169415517307487965557943412213401861945711114145143476791105087385843795432281462392510321525178061022002985061171511522924684406233670927089226453241078178623493002036486152993070136846970506636958762130387191849673626286128773135307721316622088806901178452231994936532272443177479044080521012426828275776057685207211032353363551733222846585385579072592997658497868869011934529274642275255585048782417415962774392726950863003739197232432!
 8096423320985806746974551157236703879559324457584531226002395645186342413700109861502651950965012763338281967365976435594000089837050721922683756253424579642152081415381403528342327457452821886539984540277441222545229422654145010246288388525706463919904127385863747237719701816615015593065525804024490929824495350132778095325642634262634327989951686692296919787694623076382134287918534016638265861389810556650674010634208285394781800204536422696790163479917796814269701962431418370179332392082069639114568653435751789370246642695952596006543260916042709032773341248793762208978545694318474194345106203974665551472056170610194612226866815969048383942904309928316773541444293722192576392177792342237733971484881819101699820182786211318128453632639843862156550967765319885417831855867415823900430534511707373728672801882335457853069599677880674179643009793841325405448123808319030586540851532278542313542837423537587216882363220550706527064952513569636752121046320641843223935637795209989654!
 5472001696835107430770193988419787070947694987486420085547074572670602
17127409566926654314383377690240131427899977567787241795713572230606323052385635147631325572644675977337769862841750940339381216921426735638646235434020669430635075139402744288976582370030756493010657345186982126947578850411919613610460934316440741533743957724358852565023137809475431957730545187852072098638611622730433453295875474855127338327972219185035047871897884249287106896182108994171586776120838015161888651454001285859716463013644965160551493822792834449083767432819892114291043106111086869216552792079820164932937458134215076551187848927673825487935117832351611208551784108376211752815007851854778186076794286414843233233191097266850032934128914045858204431557610778785762577423838489931572373959838110607812467786358556899652736884524094252870459643592076057934668432414532559635624874882117912081839703478464175492914224861988169835836819129231902407171295700076874633450585460536189741365291148748788266701276631750412100720315781088924376640367730911755309040928171196136210!
 5392341387334225937678768526257135122434134824492437863318852768275374310490354455242143571369313856402904000656993625368177991878558718447307705825297435057486641270846544260384727445331835298489368389889780828901862307448404708449085284940303943429554638527408547590152688160003747725228117811611574237139819507406741753431841463505443424383574519248611580880039606683439401908987378192440400219832284520765154792113692550747874165836602422185462194643077515218613558151988754046355176140959054373857005250135809390485967216202160698441615690787716840681274143766140911181396310855991516614810795445153249599213668254996327123735625684147454143123120604881956549350282357979943767775718356659006902041799336909172824104906231327124424941601428516096280779063603833584141992709154227684258177499221993057258032595123771201299442484070122796867944473418067925826579349589147678883789154409326316567006088947310932561056198803086054865208774564545247485353154050111681242847495790437215941!
 5539436702907125778653689754228949640116185024437131408434630354358064
77212711435043136254843866092436155003196510855005090715833704150255688910245840041819335202521244984571676792556822180232663962315709645890796869949413734326211814954738978562488217201055827898453333313654848945088878567519040445959265319521581192448981135290221345503835659827193694931765657818676004700773169181645503419476677438018159033309930256659566680601025092653011515016062246861638971930902143214170400219145772685840786520972216809806340340974308690729882230975195198310029861267048908177882768775796117833022329018460019071608747684231522405077436077933069971420826618840794046925806327424727504156574254671472330996260395728653859055288800591122257746897621928238904065552137197494522321276833845155145768466112776688207883475885860064886573576316527556999411910834661445618670681274946339286427366151155891224086859707892700750339421987583653597343004106955922676103553305993105917631279351162971407960650125329361940136650630794157005021118804358149453379132085873254843046!
 3659635754453470236895764075477044155714931768679302277753119882184837301911786289306940111589359951274829912053068129551929824938272147795541012944377345175642511716526216166999185835646874649357924097724551332802362936675709907697852514226641191193585434501374096079376005086552834228065726478022042061307951699639533247616622891546684694096914515252563415426976727096542892366968403192535094906738450902029724318091231270182551951383460029378821762077676614701791056987095327706600308416181059206587486560051483952184824992543254856132508585197436417072553803196406928071563221322173345451876615575526390318339396568420029460701119129003740322343976701062591895494110816617775621921623121137090313971995109300060103007153333452901597889358798595884784180052537960087983471109265787548954190753861066220189959789540593437873947063842367677502183369288728660527834544522024058057113629600759746651977711112630969469503423846510531433667095110760686290587829078822087133464200364390366332!
 9809885008513378149631661885771080663125580443242076986475122165823616
20834681484140831525275396050627066696526301902593848744034126606357473771924725215165229394066955245342248129991832656594423759120559882004728642042067074222872759074097139821572379632145499167296730802864864484068322190336849026989929710200920411865787025178591835750552703347688775638585462739607509976147400572192898182966726201203114582608158553826922251013825611025429443067962436400899781005440067802134276707642549925936710102284674866225941175294051667555818626941750593997115376753996650983301615736970922700557309695955649272385182575787553417888752639788555964624474923264074821628542338036335949374899526806016754142197883509023731057687503281918259052125331849318306100702202678580527851563024324195553938565711330622522462341479711447932578993736265220222845799230346011771041574409412468197295002911413986761550352599819480735239154528581118222981815649447927563553322350629049623760218885772940818935145056394333893533977655456340866555282658136000816463334525449484505955!
 5667051631077088725052066260225605736292144516747211388601691629300542051242064155552724019455873595097526255337290938999075288085242342552687896232612745355757808171530910245963535539481476277196916419842611182758862589058043661548756206816374340800476001644198438029373414682867771761604142854126064256415809374396159129242713631367317761244589933859177730611332988466552457482834925231194587069989123810600838202270265985625763339190336729400012642906996683842381794361274698665931896190453222232936031663296014943687182809327430491523893225625519111473007531481288072064268422269811361855201544798087601072876094502692494540614879525977809863600696691013778141234900206869198389264153767225517687495152040148830312041130202278064596458948058713779967688734939187037982143916720645908696518972256916985099903102030966573633018772157910787814264457256174115841858776996356352915766115171611755619121463772138011365226362712785035214533306584240427193465708056180564286269988319327273724!
 6850808063725345867743143564713432991361084587114567017680602415639874
524
03858336379398356339349445950307144276942139216593351516100280682600186217108027589909163454624602269858671745423109772973060195045575021217866729268633665125807105050017472133692072698071927790633012919033429182201301171302068612463736153617639480556112267903595998345820736803032156050836640166915464026087260506651984907574962129633119204608642470105996627520406799085211118873939526222171718394567435843662502594075677874552068831770210182263928929333199461895562143393987537774182334907763855993540087193532155781063434926469216680197306958779347172225448079118111196392639276480012351772571927478830578397113669060645525433191903222891936095497184324910090454066272923850274056338385485901882681494358436458439802626111161717658428160979576525067876117951163239926351700326195341509297500553404886640965835191659794919350863488219261598144843692437545565112204194805526823075332476974088472778743545235927210880405262583536868919931984460989716084467426367359168005528478634062691271!
 7217317175606167717146347556161980788439031135847771642605104747457663614383208549936721974573997978665227750353980618914088883859093213743752720336230257877956104729285638608513091577846496000873633392031048977816919904548372115769326147221016937339567708656913761110869153278354055689486050710822954248091805580809585284066735287814803865380214664675714389654758086043451295539355130958693211086299311106058399394249657601065749524026449463655244424073059903652849089666480404679455176056890276317171918768727725748903365671778563823216530569212911505032641281573270750113835519789309408910748803426109088274141371194091230943716786961363607247765710462348615040606854704645771878916603821401434750973053691031108440796955045623775381198275521595213650187756339707354395801204719660195128825105450331730516216341090518192260525546312264355322592957475728820016262708082360424445903581361990459604491675403755372720618198899951477716149327607979993540532317930374352758499542681718721374!
 7300025933561536192111129261638916218469566956203356497059650933237168
85518784203330418075030665055606251741605052623316640919252238258870955218902881295750521711655979171308253404608433079774654768816669196814476897328483917921776776427103215174524479507358807632890541673160318119261024170038177565961182565415251809679876026163430172783703279617329250813470476548576560590107276735213854598276892987332975832994468536565991927202723128419689666325935947726672235001137195026467308449262860959852620522409521822359200314706982697792667225042365592919249205435035444239094088057620105046530926977313494108572799763801130492797398655841989887658332015933439610468750796352017847298731730440842726696584060961805465465631930250501495988840192508559631880923328014730387912919579582510129204377653347410891807580724712724027616662968626222223166070448752292147150714615960773351238272166915455272913078876136704003344771052077005942899727117736591924299132120809706489631255884391194426424834555020727461522672099256445652834679899490660341741368476155773134407!
 3469800379804214122671320372465321073217357376049193206275564676654903913028689978015277912027247510532924595527398642066245295718008680915733555397019651293100483231470413504942935965118265724049820443139756703147053709850613146155991545967908038206332711270539764389461306833524669156764448058479053185626495783935454683629709750886407255782366929906508127064320767425390436885713810940745855659674181134810267297801287659770581626728457561593281266064575328698356754169437335171869154494298039532809562532967176474278419217105496385341428321986214861895267914830400454230243724462494276958818851304787948051509240221847272687432602896204859856831807437521486290992133913992180695380744363471106230210202399080166428312197903931088989028681277449139877816012369634935383790483373886164973988642408564038860012173560371256630282419328441393715260355025536500684691379951253301570881693176198059576609611328145362486381437470813760997339279340713871021835604437946559576321085972638056113!
 1738627799618662828106580006360605669651605002754632000642838339900470
68610621589780135918708023883757689557911171327021871913861244609228509466217880091235664671425284581316883233438617026345453106357326861714173268252109927195832490783232192898048512298230337937859269722693195895033354126067763684519202799011294351329008525896049061348176846124481858634526732494412395033702428955285667455763776548313039154490724174469903334896301032696085126405368878222121462152194238250907818894026435367515689104488568329212836025815748009984583205487653084082425613508935972296031858838858038358185664412153867087676012483101046308447443218801447909336747468844785641481744590912453981032300885920637101563587565164309596112739640158617697813140879507371428831776043668981962641347500697194056519504550516774239794019689986252789008523744580732886706974177396357254506098542345678985204250732286070942026394841828669256606166544407204577568393932312265407812478316668801803018422504520053551868684850558453085253849754261205794305353308074775082649608852944557278500!
 3441395589379335051184030225298706162915059642259996005856489572336531798691366969944278665789125256846260414798110865685571739072133078933108525903333113718587728703492627902715673291686627166749081993182583166832828500157570780161193169221931514754937755159804654092839991094937420103717085608605881785449005704104136040435137642468998152680609255401123465329504349180537477356166667104692983095678920316482063931739221248405512034780632111316813373224063216455415588237846091942738088502838312362266549744300558099898299574258432353764298631465635055283560477090757473282636770439630979234656297949344566413960851464371303932136774212470904452721540687921542630642597260292018994655298115142612604900763867141730235727276839041559723450666693866460588292012471144178831782234821533891876058363276181819433227695553112581904847517462905620013468996440716198232054347184611020511315550930226825107491990149608178562605108859036584745150376384915134000329516399106219240557283008103521761!
 9796168322139816924083576395562116571261121929050871632552585586496166
38254193591482181876195923292056995506376458182685575221152787011802994335467415362762077497854054133303136335423682410108464763749063885279841490076464697648540094796358954975461448137636970591635699836811987525054793069353207570766780148447701424716241908166822490074207111864881547728917186535967765395799335033427282146054169649600984706979585592643042870363664713071314782330611576419913222420646099898830762685836055527409904784676107604241784215062851755735299964786255295428367429870664579433758010140740211618614484329765744263428528704778556308309631435278783041945019702946575777732816746858087453931603937253315899280579434631408735860861778826334927746151184911655130681846713677348823341085136403947939208876886336339461382358344794081569610914293877347138934237736191096460564244474779082076049660271356168954106444832136598082938909729618912118342914906163896386106937520895346883983344467189821243478072387407457697554507436846747135024858818399665568196344528811941833172!
 6368250506118649003941255205745712036035578025141904352671837219213848299058032246958424323158984432510396544353505354322921674704077861468485976255744615351188003143056995492784716745449726976128393325183819722232836070752278129281301065694126294873063426883733818174217060864754827639424239140275321804295190341163517046980742335155605785756245099925320178749963664047347703898558730650760387099773184312810989789882085435595509432539023718952168202334424557257530787926339855090164559423733966252233516487505895569421729724489599882508923211203479589415465460303787861759157166139886932687374968473054965329378214756481057938082853005324470805065692942234001095934829461453907889066162640215013073533003319207456372637707709993999228862122432488020626348508885303601072343689013606427581425283987859491799796112196379757651924521867096088092137111977500087815930430729344883930957574159241375285977797291893453850508038319867745900251865791723708085741642971538078840607130686803619824!
 1971577476389507253468404569192759531937223702229015580065607604738547
359
90447799674874996976942713766869553319512533776409858709668386326392616494560868414037456842071940595070174303546918215090046649399855174138938519757312156826162286223188109672974760601302833119371611408747270676255856777511995666748615196491297019331808499410961813929649278936090212535443327375064260624299412032736255824417498345094730945343661590728416319368307571979806823153573715557181612215678793642501388711702327555577930226678580319993081083057630765233205074001393909580790163771762925928376487479017727412567819055556218050487674699114083997791937654232062337471732470336976335792589151526031561403332127284919441843715069655208754245059895678796130331164628399634646042209010610577945815130927562832084531584652001027797235612923012605863536011649209902587455521403969791153402241589813245057229232332131045392469983661127509161341877972271870257744736124388514083465932031248728192989830756892399493819598321885103228754680176531265348959379946441039256716271373765670976190!
 0378241779526414034775926366374239012488538183785904729104693198892156107924714332756000290171862854251396340045758981746655521146070799322839961936491147312126919453014677556232618822547421749259398817667615127888878297907755343511217083990188345223321969034746579455094476892075793069119546690082595717167592631870375891663889328889418453807002953188098481029972424809255915504393827980862016983205763631025648868373336755686757514722339378639992704370599383505885905560518365479714431322159538287932782948909670174607671601080372804103484815226565648636484282454110489941301527089360788248063011809926914985159054102557478702153678847784255173468635772333438340641758901447020188042201840600012507928735343683752796933905875830688990009866762756606271358995429469308807090000582369577930211088675243026358782551205631158193738423127416802285193252239958929818448044557958007538435635544530549237871254056381423436492503917622787347124218919689138263067310285220096790864571177165312022!
 1399623743134479085504502900733349918425261109687613808162888580112718
83411541749413634513886808895678227058134385052148043769385992525788500678470933997326296029510766837555230815570484448137582132709918817040281219327226091076053748935670563252264896078151435549773848855717534831646462165193042089510780627895494908321437897375833400535589534254573711808562301854434109418528955130957596776958240218195434554454765247142668318980423668416724058642880653310486921612725505410924448628423604666639668761471058442272612748119652888115150104806682633478064529062180680565517962983818928715069267034231088336022025688323035170032176439561634050510425712258160993154751910436263387588550920484515067248387554494479285557863259774663672762465576457203194283340421030361588339338442014678672332779849222091520522477275108779736041834865833364314027639693910707237967638770808907546031919152007884161495776373548646818441103842416582396993682281640363038878164832143271534195250075515717529298633693673876694583251651911954657839364602234078986712387708866611046136!
 2640957639919655620296225771822659622911817677173943273852488446362636125648422069299840509967656664801226976925863148887795490060138494246298656870524908014301382883362081809730884634146320228781445746837567593989299292090446482599656139592628407710419921392541826216743024256480573535503181260755295068162462657195556551934687475933671778795880849638571301299366702600290205028254401101143186684718579896608518549500279117400554966044449177560972123161383279759528681651460606165070491001329550775907480344644581792257388849467331106987374086277300755104364314322382840286428932814628494129451646668272570991639671686030409889616806990615100501015735514093945990185335935030611648086858994954553660682200864666546773191947841540987210695710321071144350237223759089818666687000278406816137441506830047470409998812101510850728768591415330163221058539738262003037798199325447725538193050677527529436069455487456670389292835759987060311075354229668678976635265494847514978702374532535551517!
 3837887571126709044885899490953019297247245015141602225347270911954692
28345289773867084945073165004855246307999859375870927660472521264530313410924227364570617666376401863501013109855883578572234566278902174547966064256155068710432324331746508982741375939327951459666246263106069562338241733531495789667839414023235727687714874249985215878356517177262566127223651628521628785965136544297475171225608743258477955758481001695365239434594250762142849853184462962170639599047765471075471451182450446505583958836715200686860474768340900936386274413389351546504815799444149800395263671280549677377990138107674763256494582446302859073940700718622789615490288327208177365315381210635137386345433885697553871132360789240995274359876785129307423363141747545761075437101737051871802911759656400685830688979190440032054233809779693437041277550484212349571539105619283983807504750755255485891551297546342542805109580980390410456235730027837389659024508210171583404519906243930056102024318330106572246135885972642146233262993589794999799849549745633072618602704025519897695!
 4328697568114102694346410103040569145649549302325195907391424103852774180281241157484916825961480110088633340600972125340137378807147108482643552978717524130359717451374126395244665242250182381153256186443503028193687010515709590163506258885608650419110926648805283600197148485235034894368224801635175602794139878180975894463004014506535380369455779263708249993054025452210069419526613918364306194048777119275938581850798470680776630099907568296889455463304582170040817840947808940834029721137139622882961616518961851649416136812717359499449290179615187331515292647675294606074097945941738119841721595103442863695869237796757507184025299910766398837664823207338998624373533147175425516695999357842946222267548956769987388220242216321467884439617525111080710777248806218867936510606900027175998874184650753130175036043120382780790880828116951856129138528441792145628605961431353725785397142326297509841625285671159802649215352667458803873918522600841027544562170980641615814433117525769185!
 3031067140943776552118100559735966662087533088722479169498652464855235
51219596632236549209533208057033511662731410248240307470712760066379169780275237448478923007439482047204360195822769007904309654658811948643937207699778546846542645047253566591660361688710908417973658791335665229114280432442681375020653571221973637796122865657686886710735514325729122697598417745955219980002460011047067788729849107363465360707033770156698594353310579828190379562164226428784659171455865359157196016347543981343776443753318165489698397800119782763230773284443241450932082125217156412560540057366149951624320346826076787219396436171374198224725794421479759128386518786054802194677264926078141701617648704799472184964104895684069512896288654567042232789397033309317982483926570753537607649085267763734377127179813927869671132570696222468195339362590127422453053814413659304024468942940082227463307395618481273362849103278568503529113857682364025710722088804476696300283570300099249317638529503040891974222916479855621675706765271566277929393073197164350161379526078950593975!
 8293573235221521700010835118475205165526122523986817137416247506636699064483921812706750039161977998631821119951022715297178805342544024032186814458412375185698372169913713134477373890992882411953800170626985683412504886593043209003940894345243220305835804705299965590439164297364269872140429312904901552327595850790269245766509641500777468487888617045486921552831604955840752807092063515161632150059365517639604990036479646122086510309284041575854997955137118799338623784644865138292527834226593307777774099019516209256931994862390826203781770762703955193825178058711773738074424273943326592128136394538300455302417941563139934610191363665101714019715599570802423842130326221508437760611492688570004574719766247891960030333372552865994309419950450686285294910669483317218422115755039118389965588404786119885592091122720144101520484922179057167180514137120688412046393296112548510791197668900988192837944815466996035523492388625984536229645671594010345259606598228608184234585610471793085!
 4972475406784284588843704639739065773262867403683941139595862633458467
045
28873863969957475361530692944785088314844901222500338677612152286692760366676486056852941788509079635936355051558591450337156077403845017242990990921540971673855404937930383547519975443848348250571788081934009356035244332716969727183924935282367564157187686175259564483150040155296385999802588651983012675244686885633750296966070642258953228345172729338686281632626768063837747362751759459427216639470300397664018943721097472998185118690735624036237461046195808537789664484253961312138464042546404044165655112487934538730366472474633033297262265900974898501680926545253666257148822034282139491355002869109181942859772847243526372736781662978433804283209527921457357238001170718759348987893610817810821055012712250887792868660074899150228629702706183900630383267331338569554570448359055350060739705083715699067584755420217499508868342664771156900087785360159248287215028009701070358305404485597388227680906516930505007802752321625293529124747524077419103018936303371234121185083950865884646!
 4502285412734117145346290090744153005025854827586445529961278337782026239817117908152983077095812534533178977550733398239202563370742361013090679121025999030109029255848597442405949765949630327899159635309568832894477885552180609165010911782683220674524633216259847011110981416593062754977981733940705730642637473214924215086423336407206723048974642504555441273562690590346067393545480925566444546349939477361093625832630910123467269497392216287863936535112797072643772839452659443278347478579339402241513735483031764972305326810556887912293885879178646094703172691555603802280773868901029919273359757023781925391263659016706270860597884665085997973359348926470382865650861766953741043686806608325493204653176787330980319610512402799309530864701866886033471558324158960416705354475526090702787686609137595871544631630345437726061950903265001028302045761300468293648059977619500346167638970750626882356067252948912202197292015160258683939306779838319012046320885844777216789272669134017242!
 2803485589473613412235435785298350778500581227341470057291249348474541
89375769264019741048188010668638154063182522305782153384397722864233181458641702277018027065675896757119554399459608242654703576099658266546963955745024446403497040494339924668068603015644136801446892205200655153732393549852661337753241779327791089999312424666263179797388688249690424684731930347930361333305790389216167524210538309678212370574599651080911423894194283512207445528922777586136633496462872490611052391922839947670084309133128854318953174497340631465690791289577985975314863683592475181478646967086071255214110164716774322421637017073816414567873160130208213002403524216883886643133730689677644196348009042199682789555382474557684850693682538124490751997253798308152882516467456119880867522189843254351380069196716387142987462009572720677026654131433285590275966051728074121324068050566299124453439220599112037656661417981958014287203238829143682312224217993058006678197871646605106489623116882957382975717474588343731614066131066156298985430281480459252977597926702560732498!
 8158770817834894144661704795514098345447440219945655914181995137859862215627791347462188309949064037585705987059851635405322730900762454175627511180991504690368571677330192270436393864836392794587336632247968642510546741422361870958732997013231989208097034536332864790074516010864163909061983845715537196178811262001317865681152124660042745415077684840612227934399275950383384014606927593065019144274897846996990027805466881637628234475639270096296349610666796377423297289126734219893814436609558891554592133295518557513383114221330719992675676569204177086297646875509260100263459421217046383837104220406656165492776667448336812883122917922995076806476025186263854246578491902321309398033352504291129781105388216065344595258270184649702060322815186762980475922946452387025705736079467289559859250989994587049862048258770166735788949028933017111394529706449161259606830064521139028466966397548174082155063774185535531035946598144059441287574633857873546721529785119841140288464952314211169!
 2255280324937921582747443756892779107985908241713800514217079555040316
89778008682141831828203151550105581128891847599555566509841834835835226553309602229831546634878571085969832499288584879533947940232465870232451152746308576613237310945875440271205371986634496285314422745863797345861726295824819713451316896663758546762469995628520022544899353113183700404626296472969277275589313524934187029517411456786388044176408194619877961093164602818149119755379328084307384636377212199678120608756829950037768353239031163667899416356520569987581084303452434886310603301245329249692525326357058844863137793522396668514161566180888227170765336276758760512319597384699373032226553550204399123180689404582700299830573784058823374958420950176926334499691632741402541907638501064325254668832517899071873471958604821874378368342879006557719639457727047104722500493577163190407727868876276980188712551264270443156890707366069219609019969747552629803960983165898378922248536387758194159731806857325329250404402203436958195255984435397199285102655562383535078466639371097712807!
 4425350498045702521378692100244219067982911422677209493512827078375872029890077471924704185898280024762665765926107234844056291269664772562244638231242634329459405188323790166523618778058351037224035938802377986350174507843896619378437123775121344376308918260461808538263165249455796003778909383152756063513738269465798518555822270824195577656186010665216180009366129210408383913808947794903659889211851635118258341689907670621836985226553219275942007601579529629829329698668269163337006456290106830103397762204812239838066589787873070737489123764669791488838924062433483747970836934801963161494246091990354180808098440764924515633181348794822240219504731599366315996488297261645540702403622754628163301233022898592218305040496520065087797535255345099356454630768300441960048684990618338836414657346446768059472863391986962947699522245272960216533121184035436647582700584987119841419349096163414494307107327431492871785085542960158553550779491753636716299124327163704664914583385155390033!
 0352743306328905863990253157097679530745997736648524345306293310393270
39154560572816933372510447130338535270743132252960364087561697444054566252007842153188024471582576717944443672237535774016234894726740094350982530678563212756095741961365433838720146524614681298437734980658675787965123309040801363015553082302480279312895914304309227778344735481527709713058351544736771201611924716961278094885111586027226488312975887387941778779249556870364618401732276112526018411453181859662155234432518068293027522537791447100906630349345400081374053685654091857686936070607732388113167414820147410347390775017857163599130121207389453666261930772284292947334415035942990155081225218887139452119471359958249362850138465340291904495884986858580286110454268874892608319090843900976031873953560534360278168319076565327982658940543527630214727941539306258938916077374893031841769269656321051850566888830372101974425618623393804553559043664737677126889323480575102040886224621519196926423483005479457017694533824248350202002266135895438813745065539335913225271852426405993513!
 5481355468902380096799430574863702611804911983708888391482704362384582306065737953535391037733847697273400628515661753652537121039976843311629091005987197110302573731992230716681561572312114744792348605007199975670471049671143723615837017555982179953020238859986098250952229424836760525643276005878785935381630923973710354155707865334511806614587034464955916109730315250449789539998427483079590681882646804739287564778844706121644518518080169176224729433040725939425311897907692232442722294950128161275857598890272398182014479679838538043709093190289132449416557234198813057670375864161389944342422426487718636701431791636989357309134905767395673300452058393687305711136634982627439757139586146679713884204929499539789737619368174455927249397682753535479751218245292573242174827713651885480790233832880823291688170883673238667143882856628943885748129546170230288072999918209460774571489676246693249400449228215115151868290505742008210274360954781959510857147038656240059156670932235030588!
 9255209318786528083271709442372499917681379798289688126565037777362206
224
75856868910917594762865434460357913723354529165852927039831163898363923049205537632229966434927492262968739998344276933633958243634442973619503529566972179865208737617307309262728941385576958194805522059815902738749321712050738754887942407950715053858742276379471600879438692250613695505699682939585565783157458210220095798425287085981770991817865167097265671963040906931159951290646208554201376525787217795314280888832863262430197299854518056180584516978878159547032975273962729233522341924277805653701627728161212179978119957788945489264423904676239405810877394740303140965431122776109530384988304252552128182979476543795187690078058693501650058321150758763927039305945375113849519420811630082091336934806170202552575662297420813631040943956702764209313319710166273613161698554698955360382890495250082568698892906055102788948586087649506944368312208993529495675751976588817385710991078893435230981813272417090490578106541799842839877265802442487310812183795936327116199618652791494508105!
 5173621499774083701085666951345165077157885953809728566352157330358140637258504402699398579048079816014033374714627431167128705986400159324370721623817656046802601351509323325236021322277033660992284441277243533665992684896584936317302066274513169449964052766606666943454842231448121466228599436571584217476215335595882168791599126155228836357216673879779361707418545862548096035838844454635153788219846869552151111521708681359241122887416506060853382881131530858453812043306790789117519700466707651200284231314358559895875119918171279882051211596721401410771575775308036882422893400965517697439246008514917471688836705998719789164725451275108713122420100053506168725387718958627727765584316990896936349615590067745440758260161723788594586989339237695216214128523116086891744231497774816405552723319823457120639346736618729238488351079513814927695809122790328318737633691528256830868790178191479488906017791880596388088162091224742316596139081848455427267965907699014762341443128259070578!
 5985061223340549090189150040672660908137614353186072631849151730520651
50803692715285315138907694600923724529188772724564401249923490922693966521872025235939583746178792684963972492872572564267278327486989882374297714253425413542346022102160319700742340293826008618935566573590972263958362079249034452659533423355923559999539512820322804564557617566121781948898829681434712928319133792865711552163826025516809048850014020215505047701798712862721848083976634119573580142343979595637004282589044254336178377526527418820221060132291386365058199526099629760013173133217556313223921480920726614137384964442594402902213691132054431740592192507481699975948527988798017757138377744044895492788306747687528821517117486168099208220322848904529371279041929109400489148675171610342681441000975601293512358085532565185642520745776658114101167645364940167938799340112840486517547402478796431629087834813793705739942327554087122968721122928991364354127997921261440862831654873840860335736704648629100656936525045380946205149035826753556821245889631607404636203262746135181523!
 3311917857084758164977690587463691806828580508411400683666791306277652290119783312173213865225655004106623506580736858103928330174006587962683207334570397698126454549193145262074946209800184280530919836642620732171778541444098292293691028115751984446086900504175255483363076670159297395602093349784796731124335407916404927664033153590208744607684266907030791812204865261607919716129945508248378773927964772826862658092888444822789375151347366204033927219608958148631628141801769532920492925871330571626780298146681018146997944661095694383599597997610034288902188509798469531497439550239885566758875223172085759858484665340792683575165237631303876224024971778911674973025442369981540749734624474939336060084750047618860433531834169276784213100979381299333127718756978145788297021584166213000488101960998371876505594148364491375193053936570264280526853605497536530298336272318970636398056035421717753452994025730929970574185799777022728306364154575021083869362676390914941508964534233705146!
 4968677803801656447835940778911660758926856371998985107822901665612163
83290432773066446529074847794092518770967617925824647270625831151992477180689309342670821900616365729759890302743571190612993682208605021909247626151702225254215944310153432422843165005053592420948557562510364768952962483447792305058130108482147008992756826069655136334222855410881505878372061376348413839885340330717897194841507695774816619166702703872337316905647154404971696551741366762266195767158664979020388244106182839587108824265373041334414157407754731480687738478989708436312317959878982862288676573177553096421921294697283833728111292697676476461823091807917078257020680050019986404858228478622742747065288879350806778337192193817770129130485777816325725541486619946284478987235282012994675292555743901056005608038022658061265529953622748658473969985272252051543174738173865472418595298135295356550593999451682394195653599370431286529629130685061261466436167704355208427142913607028982994314185797243078792264178516518749885085728438484606048590961877288426085194577590003606103!
 1383545950873340972260366075620517834847395396518668602870003583179418968081431381104317818128435894073624773517133347374317032542787428958173021066248014722124996047399795180035121006868049666405577127837202228557455789319445205490461596722016021793182261814163033427265844580014092433765931409378753156802624673254221210087571381680871798509831307879655098273155225927980952727732868230640459200085966199249947552498655432347843095978585989604655403299011899247038587916811840099873881943865164871542537109858047558392294142244847616624689489615520913620289752363275074378353037386275270862741125268440733053708845149591274746417767863977636695063435452607396911398474158926480816047488882921806335801552580226762835098993069213269296290936028325939091376465952034074994835308906252889710182428327239995420981860640520349849438807197022517879577316171865851253723047622937213192801957429279480941115919166529621860483697273478199048566748426245497904439968570279524141789130117635098665!
 8970246543844749738481145709307687075860164340112169026740155105640187
96840180377540253587337957329124853489974864873713015615793697037491268862990381565062687554337109725873792388573365711988146488219605280510064279643933202247938942094342471004793850429504837657938680933281903481322129989923243685708257137115992938121452740403047964575365989537537653470914678112471195547529245122999934849431610985591533522652356250815416605057917236602163073086482642165486369856587260988090207522362242852130019753966700225137893048310376682312042374636504437204751969566352449382724291554708261465304208430858554826358902519324832899539063550831478533050080569778375485652616759741435352777571849368475925777145444324365809477317334415287190059938950329322493928986880718899245359633492318339488316846337216256124869298854732330487286194198737665360880265127830767731811039348457665389607012508988950080180934349709144567090137233749556703312349680847945680501295459297786481903569746564154197214598536781121383785970531491640310243774213998434005172008262868695677445!
 0553290322959296059965984555245347554631476516619714934983068785513618260371663646821842101149222719697066439432427610432714701324970381010818520283068775070823702882953863677442379769805958848320526129446965988947602706022957624666726264324334638638042636912552457227236944903261041435529562691217892358013700407847973781925922006930385070279013974107801421342720442777935720631761652808900321066789515443384789371269546280308647521997251450403464344298970892119990277432222612715474234944473714284553098187416541189421704252304671196178208328862466908855558347938671498425667866268406759304211617347127445136897120965950787955484251364882850847324518224499481791889014890643141250658800338551720042459873754033628848301027515076377214335953391046892248047412085170920939248281612140114883932084998465946524873357615781977518952967920856906697711228540958310945645688094464522191429549361355222768565116530291166234191314842386535610643598551531483300846357400433311914930788457793594522!
 1891170380232714570209713271166200152148437161958927671806018799561288
273
67769183049593978608290557335904023875122048545493959274602553247429589670890650503824643496111324858246306646651800600924325034306283692203352872825191027830011149146718415886253468345921869385928224035653178925733755006881107136177272104275048092888606650080357390422945008233846942227801977399485664453582000916408849073749294816352387912310199927693003160022139087146827003540257081459199111792791800129353513780343011581797776782660522582577316552917601981099238441967664682368145726177362784627572192315970521777160703619237590129803224074187431121387673993967380280780212799124656767789100567221586411628548809316169021626310072458007276358171048402571057283321611950601043568094250370703106216398699487649683104051473562242292612395872859322546169281216581833373789115355781701281398703819476488951914039285785666762823459021961134753631777640218345944471621382391383955134755441614802021793953896658050706716060762642015777033387792765121735296098765083096757731553589894309021893!
 0381759584488023022099327216142058101804468439697227969995152241558361784482319125101965050391464467693197096928390303922171623654227724931053919415964426272887874025688351780240907800270585444451083451781560676882999953503565567147132763706438716714740110890511505262488028185275081288581347723514215903242907230122854596391074443013868570938465527935662651503993181367154609398912798882113615284583533266321946613500137407907722264067254543381314914056024296285307731783007766255190001890674754615308854677733786054150148579900916511616275916083299083924509094979619621068909304446624146837101213134962906466282724981043588403173374585972995539929551272032093196667117880603069205260390567136890047643955579856620363217736295576985839251722743965545206855080038176983132599282311028482262993376819395042481940312254075831587584231027356227140236808702912418873129513041599950675687827565554901854312868757447965786517884334635501609894433070831565320921403429563369967785573561100278722!
 2231718469057225575716518225053906726863606206263851975359462380056806
70692615268938388360026508496977958022202585460209961441183283289337666787509641162419985619143871095180320447167300762060546995778924809895379596166375980398822872929658181575550579154280772952086310817492621433586535560017139826495832437830670737478392019901010909848962907587354144785041005335691668971200827278972828053393664926430261030794148596776920448167380923272946306797550060969185092686615951828464975111774209678279132161519768441487057934872279799684008584432940408003263968889531213091288254681407754373581859818489445050730731477787733960733615237094091407110359909653299222459263209524699195632772718434767824592366520044034801557634902960375858378660884782775177372692864249269552154372058175786516217846925069492795256970984036141266477189106880594513332277340852525755260455703708585771073635126486645413288614591684721913861939045265563544273067873870105273629899159346097671569346465485820206166304609676834701038493665996996503180373059110222031307156593075298284437!
 3060219323953698062338111481761422965184199183810191335133709709193398578658013007546890781793054616779825031385907036695190661052706885263667964182844578076573018943716162809843369627751696251357301752320855626039116957144089743490386501438355408263880393185502902894490287555444141916759947710384499750097758806727780314871527220038429863934778206073816242863381246151805359944833731503747923438842540365053192065040661944071655780210320107818835399781251505230864601961586105044156384382215636139147921600417212857423605106431547496876642782991204258741329366659116729649333822598931458469630242764815946177635020431329893609111151188594916989225106264850240445377352335843455423877063386896020698943250731042194214479856185542681705411406765140086488452163385736345240434411355736137869753973818223577635732990175783690719991139484911853269802367386071899201701133621421265261872851528824766362395790482723349458393787715037892712822907447099096326404224859708479492382014687521100291!
 1506719784237809877131367574032694361820955897756792973545855700029281
73494003687111479107485679107511384590334188971314193435370020492370708405273792391000174846763603292397642540995309225249841210767002871033393780985254844211989124171260039925980614212015375586270805247747695541175206907304291479523932277418998607434291335645419155702594787292704449635360238012840854268642754584341668622013040934100959022130092244912873452449734540787774040600390073123239609834103648245450750639695632400518210302946917820093539781944332478548094285779790024719353343660993831766625898872279601753215378064366963593972951125481324760598394140508445260239677876902566830580074746811627168231794357048726613492799726868877385188093643625465511957733556936470294166086810188496976820678326458864395364934026340702803123079091446605778758436416153795075656780240604127470039201064843148216207137179356336221374974692950466881155464146530509660791073414587061024231325255463701056547777301103185050086614598390686290134775939192579122679075500100395428492660257271430972094!
 1485165915552803701788751367449277691667457368013102043913632244918375917683414323612772067505595197201565667951228997365768949034373830783818150707034487777316751746188597767611349016083794109764436436218280305376953192274785565562060887133149812147643239667694809215387314794408040097743049555435542913952120799307140972287669249736096785168672128447188283451368352362264521898623275081839110462572342038754477168487608287821580082491818190404237718940639543007118198538654478263696317425635210966590404522352759613907705733059109868018470061507798409221544074928314094669401515192030302653455830712026683705072652614298223103580480008512649502473077119855815974693975203460682418184662574064482560305141678869345110618634926532256718986050633544312002956531554697614213183641424944926829575737169077844447552747420055974326034666976317574959221467233054834275333420902169192002808671338181517651346727246785601808728069857930625163918159007340191781263377206294372175843484347385673764!
 5435493676445202105519641320419090347510908955901073392685076899281876
73365901832859960770042196116153198923086688415649287322393919336877586319575388282868802432229285749062834698800318009782112783464473699430685892744593514603315540521613239180496028511094200920068108609671137169901631124957773356288814757767513379750010214828424349713144822155569448244251296517310052829330007596880320269714714305579972727024023845566932003093361534001346388226512858496049433741365136201759095500768872572379083996778771043278323618218079288644512985704722945918876390177410162154925294434044663345537960358152590844827165047142106494943390564029671203957889365208587356863848564038234012473264701575682856267631489490964863708780377365370562286324227491995329680995376011765735607066889623340654736346287530174001382893356965641419762442738806532005593571952599294161918250088559429804935625623475763876753250261768105102943789482800381819094016333853621848244778575211141902001157221548910141265746234094097604780590246929152237692070215043086599849769077258465120054!
 6230892673044230839909852836179808748821651750139476883921959619738352190253782921842740026799498683550477986708874349348778842634911357741737937896380326641216608786401510266935385392911758675398207045454009915548099405559477163022782682288199669119920777276856900425644534246615945519124698494091797131276708121635587973755054695396020199289168686901316782253269982831188117652051713142403031036190770344860068576907125682991229228904165141843541221518927092619118278907203864729890283124496371672262260794705890773015157923706650537735573678542974961412832398107256780544778455033380258229990061432900656745811313837062093345138272885095100589428436400934752582615348154934333439232027840190634061039882207240085957145478563631442770935781864687003138311506032023901381936738365823110631942351137522012593022164650677239536740108346072473606001873233595725967425779257787534746484743855833667263305797518062794817415455357663245562199067715436542876276921186539763055416677273711847125!
 5681953742987890612319779768238132231036099871107441163778245341555930
694
65287064514371451825548170938674588622599719320022012567947708034575534068559395647116603949755093689074091411408198674034297308977593195477584940320283592528368682656012853793415929581760342834661928132736009861098620532510203036543891476695814561258705285147657904483312632612612754759673706139294643446550239856349906904417168129779315604542447811815168432399733102490408612023203526259945513809199439424226442073066994223020787573721134539784091892952718836515115772843356507283396326672727736552712778351096064883491611165972964770728339788176207106423696535857600017861334574247471646754795605576043159921159961710531000078931203129165921181455977363212813100884599685965154799159673348206925725869446510484090160725430379479374399249481703540849294827167393538793091891491059402738825756344267402920436129719690035532027807460129970151677645661660866206509831490651839908134036578923307774275792888178539747842534562159485168992563154166538046086193757661011592827191626549845992844!
 1380917909345028944622269874606236912491022267635698462472987555305122807730603827231476727333923697147318274650823570649364585741650652752803365758850018679830223336153074856777018962152237772807866297099713846012456411393353523114439413631136412506303170575463867164921917781818872780499865142962369203289752132044164594823111651568070936018232574719615128398118245002857359411366899363002865197086434968015837737896070734050171102922190994235678759852991064219794252888071598268543897365101995698553713435634484449994806623871155983268000913912923052134531871093340605485288052802348009198195206408370146529805875340882775782419719096684509257273542291597339420966772162267503283801683670126832708771819744711341647404233364332417845575142917747955397326301847822378751103346784282157477199771872490788456928785591497880721527621677748783937259466769746628364636432463687008889116960306400801332122554403325990551075960130121782721673509087083036782806953561879824324975854315837024551!
 1038222955269283087687897247615175634507109322670487519583543893267268
52062510652348642989681785128034625718673657734084030317254417206056261328930674428227072781896951304271369338673253083504352362268066472362036535955152200461086854195601500985180774249137520429031883739076881451106331945943196801603423831429470117790733995188051863224936330373742898766639557300491231154254744563575122821796031493192175536215597517354177149627057866660916604012942064133205601987988647919102808257237334409780655000467608465907721327762048534428873064107521635800858604283381726995542844073600686998025463466014465865058701796662801137504819512746475513441094129754440051736361505323319561402763360504371484993550097933965755693472835807893270151761668707167850521515782422118197723059610271802211376055775650822451073394062340440352245923246713297292472959059660765849167767975817545550062928970945807116984624833363185049505413603244603712252300284036644327050268292912129801325870485545184916693717561170693157529500261180729980457387032803344642240762456575309106117!
 7342684363974742384207824933961324358878511433221439680160135550669500491595007129524097148418320524054713082666000289406977374674792357783279567686618221831164536152981043236739652109901286166797655130483366709558198145730160957319527868897617949738664731125813687331982562667229155559341762250892788702151915522317201257618794622116819631251126015128786659330839972870209589444425483857813403467475295709847983486791009529393177067779595282935586933838928401788831265834018207413113059012317875493132600386474392184202431142502717934449849109538269804121337806395730645594985291207547945343378821860367816869162464018601760989508005757040007613617583726869278889401279370879168731321041767492748146988683866933742989452900095322620623439557090365005347022096836720699559919206962310396834888855246790686617100250522735631931622916480153383634406669330611916306523322209677175050766526506928945267104663596291397570417951995407638592691435297273926525858349226001281210594341546090490896!
 6684483534794767401840916934408211214375759918449789358879811999883781
04395450582209265478153024192434287549661529872752062512421645652414433769982120575773976979255452979275548311022227497804116723290650593640701326838116937117861709365336114661791958895816380085858227273146398812507431885930628540477252197325520103315021122179520602902261508148427987160887715683048894626628110875165719315803483791380475609981192779258193816013463820567615791947688858111977946573731371412896940425858642608461356780363809590304941436012976511086995327556982120044158668042851351485946280094502680282789078366103133193981570053235773709828419626117546312776400179255663368868410146625787264487540176093362492442105565222772843270865638145258939894095286299449126389851502639968925280789714373052711703482878632549311351468566743745502638079331233890987581997446383546982888408867958361478572004108178195267273630793701973161108035513307543426319758326623125873440471849275378555505659744347641467171749341623139966841084072883691239929036817624897833842304924086916049333!
 5857208495234157463899959025559298464841685309209322394500998426093536507129610382939141783840596736013176901421922944688247703433099803826633309107613579535670316203201565299426338363899170315529671011571713866053811109876498091422532212118854978583754526735435970669119075827734271657083110558815782026577190557165552299172259251994171182071274716352202241669326272042945850076026751557223645002535798389514403065670876896402519843620476736694762472132220764893531852981348305661572610046746160902178203680927898035844346283316152968001442943834348132514944478364699710943006278717519015830549752682497066819670842400415329314267072439109192690166027012275499726259006695890636410201968031505214184000146128131514317046292893612604513992556365990870351118221700920487868341381558368600010221393171629381751614814220454397661283284895487924514892039153468735641277938028229456188264700367261381007292227892438341432891219576158468258895322444912623721043099592174856936003930728755977643!
 5927825721958517328920328937364969565481001520940677075843319610801919
15269703594497282054240992177479488551018925796738321907339554384821902139135461039572875641470097962048016790318232711296169188370558652942320282119677752110304278242853230757658575255018038727723119515407308430071004209223183789525106095101467448023077841433296539691174855263749250181365167016598131693419695168209638648809219300276492890878559065782232219644004424438455034444715027147275661532604984379964910463732987773094665524160817455277311884016608169216947235615459456398424743513107356211516122546967311337547203210666390573959454583578898111861783242612382583876294836641978436934559414738874569545551068795338941134987989905995433288256519931844892339119891024220727325033047804434824826316795383188123453643203439769410676342050740277620992504416285987380085420633094044908408746295011804387681995636809774125121478256414581096054639454835383121207411339670965757611709217015691940467030052788338501196068812854369142591051264293797635963804426144669369037414470240987079006!
 0928659145662774737070541847001412606663677725697066185399828183951838693514737030217082914386683491895573957114688224894383476801514731784208843090801465885876918771216564120483834695079910607882425853596296891164799513974190272537850463197216075753299247670201361948799107363098561524347027748328740870746213978975092298947562875731149123181919277777555684302137964362495009385085575130624494616128315806308498594205880457870407878551528971936045628264480468720456617288093146516702875228320465704749684580211198177629707409115942079149302378185841312320755823659980926525352423475698678428971031219337805960489698219075025130443122699831515645095797914381524955732103585350796626064334473398120774844698645352134394299139578401188145901672609468883885592348705503210140467295362906770080220595087382918085265511775631867359546374591584536339139380178892601912605510345935075796753398399082986482242321316517801147047953340095408680342079569541641311313550566611792435082263851486519280!
 2958371094626166967342952888209695927144313382761321007621497855663453
697
59884637652081064039283865914358829710499072424146118996711710346786630616969050373154315338504144144443857751928121208210251952609025698571278291938140301420620261068335039849945835622115915578356079576351529961060405154827333661767738340649685644925242332798264200981421894329173443574786681031630253844207655672219010059280730909007858044919184500382956029191538344890796446157112001822217342752150584642775137451467788523498681830251369238269629517702177269252870094403594057793411291506144947525882363904148618573414183329022012968783615917652399063989099157115955935567645903307681641441984512994186091071552617321947029535925682083110895481748873289159476087459481709888831019006508820422218668822910632737036085447107471080489254733089705230753833338415110897307630203273590578988048210780693086380536188557964576105762301884463372446961159796969993247663508404660592034432171442571277392303411504250570863049572511987677019386637092064561089793815422439773833602862228823647975876!
 1741488277700962489510182397714125693022200631359251922488938193736190554035615770084653297526555503049938525731285403824614959879327056558531969324783521876282827748273693948065961564891925347719840553874804427669092596855956020727898300261155209277910428226631010454188865270353166747292907085642544172223309105163560882086109904820627869701036948655891645399219118345402280331042182748410590567150586091536669232563402988633518464432952007768643087419675280937643264326672223112216556883679826461784773799624030049157803060204202615615506942744707751415699612697991889112020018520257531724731667342763016248578103288925588957286530967032275530583655334625146189699577629252114532121101739056503886949727673609383610760161600140322746096019444999594979560584505532465867268155161409925883559627385207077637152976810910648347980716144087277808789726535124904062481660472197728303827874893466324517286119254819946483638414932048962869598306068733566963690589365710036075371832280900465003!
 3325494518954530499043221201885163642176733533804936988983510792427388
23401116782204369273267897176289052900722793913491300733621360460004716889166283482916451595575378539270614526965115028268661827758959898122661607881751724267012794003829724580908863980581200684691912473047962433350282049942906298689379734617033549819695545939434973471194757379757075609834103180496921651060009701890479059375973618113106497769154523557929449927850465326579260730807671345765865029635193009323862107225338768892375712210477835546187503180074726798105326172855576086282078706151858108607723302186836796716173007939855760038996928378655583021998119832697537073423903902551709537909981777451373543552410778301137715106908354935724496520163885696393828331150882836185011203512192635905462087400913420032908867884573358610322762654808555613827089977500553907338886543813407467982328583622007743023980791242463509493662347447637899454502049465865105148224418487140692473393504624165585734481743992819138230905721084882235926205995688996691483769193218487552882331045688426971807!
 9068972064120112589483964159531559105140400061348636898033004100779137187362290318097750809568592440434365421699295725172841905944432741337339542963032237830731915153007085422644453318865773407527733093008153017565103875985611326649674277794041255264544702666169092836314406466664459024249868970930424613753180747376554494572218962554311473668333665486112619490451730293575567671982841295744805857914710238263735442527074154727467592067538013354718424340586628927623905870315036910695787922156195296617359425966960878194005700448519761498080113135796865292992573072660805131631384337508662018267050266161705174896958074541393053660564289783735831074208257181576256422573948855865419424553332708360216799604770831957723489946130329886724013738156181464174199335828881258518510035734523806900841088516703848225975733584537598243322733712426374790717382658724353832175905484140391613490764122258542137412492845023443577827562930924048292178832591821586839156375781993360781328798232464411953!
 2661547668733796742182821495911164148220320691807326874966564762201709
78358792279100589008945287152947382509345071395759066563691858736199816680033033088359427045476912956386755166413536854664683872819415244932380321354227705612736377686330015465533121777030610994491781628759414966208217496168914581409401005188413736831797758691611173769981833475481933436438972304668316198940913193443767128330058462681486605460738882948403538739755319023161358890333803306673789641814701927990271976746101468746788692272031023216376036787451986914002587910800253545038949165118517718793899608314465164053308952808759362152833639534821028788919348898168471212364418348364469295878263271121716758668171530750386015749677745105188095791326279231444623449616542104834342739166665110354440051346213915530465150062607396490204446652024145346464351870226723819153119898806885013107679665535004103832541837286888765091019861647004187306830145240647261275790260586935594517410365560304570561382211533167019903303580723907292310612183461687990951081556409036260237779306012512703657!
 8182863698145726670498754887007507754589634676019838447558494046947841205782241045799013303911220063754143728009954837944907943869565552839543563007214516732568488366956564042161507114229360244900783628082572460079304945286859888197827807645173161751341605220871727964712829347318818148557535215042532655805446924131028208124974639019013010620842404740269733793931084838337858182508026721904912542394494086555869855708992835325574725204408931833572694104579463866349582424015299966961629576094705809269269183385364189579179843725193468885150103519313123300697356788320164160960937559978190513427884689504438139235894900130757067510738217884996947463610424565818054231358136513432504058116783502677030101841741398867614634767141417854256574913205124820122690689635796027016321289165910400738323087798646224990261039165192404179847929612901441884898578212523500219538250514043447739605546759338317414094099410265409760523700669826143402074950211368732716441124673456486378643719309322933392!
 8546973857484350573781499362266905313731758394375432403764197910050284
48524774758652852159428694638607929722462280542864421029482597815512365148839285420105043384907013376790449582065461237314170172691998405028691005327774349574637527863131774003094652619616936552669137863413285781168634698644596882463743753620620324329767649513949781544774901170686073413798752474496658297790072809895000353295008103546155816161365305406778262940369556810481939522562420423290431303534381273188422921121849733848808029348918592960621991808985255875889504556407491750405448170133507138970203664351170303417784556628617157261830875759864052978825838969374616183436375651122068492743861068854409311767787660439578688484648034607154319538920918763014542862851921229319939209529603013558355495291958565242609225300859675636717790170084457139114431384310059157681675094581097104696600092625026990015096991869959466590247284103548378823322216720817938074201190433940477425920741931877374968046193309055548928929770822295763200540037271738836494743120898543392350210927915802957370!
 1222607082746086411747813641207884302948260065528145650326770273572224742108321901408449937697167398966420857148455973993020255201375227919616847688187287458154432379061124298220048334159679612584812052493812019234890009912129201683308959841087188558486771164536532182453655469963180200326776799924683682771542964390450933301733302016217819286366157171159940567089513898345339961863939706385945282106949066340750610427091309861673000159096157673025016682884261527323750266320844863921490521780705427626415987513939402330880934131950442690653526130339849628439841428332796169141335502767220160899263902674258756209539193601205046492861721777760655962753742168222146790958800567414347251586012178567866128396878666544409837388466154594613138961394355448455434038873399298528783634274810253752492061152645830623541728855023202862278248207258484440550875513270616752701509826185636600132325348177165802903681818009995109008071915302638510584809258324694548989723996546412321640092142681919007!
 0939622211864603324121491191668362594440769623558841439278057536439205
307
05846574316291035178552825881779642021477748156838234255650019990707530429547653902111560969392280410162474907353317099459163742920415458888251533395394580610474393326620155783207376805627912451239039872550793706766315108318053071957479392370250025465363971094169792129443088852320426421051707588022327005911736986490814799936134747277603590522697704012168576618749998022067609317483057344841308601388447314869705006468091940256971076836315553242551683545280065448929387357356764948601682859754109565227203848735121244503115316277121710583696565009618729318033699170200103526468534925074328475974536720474205703594513375110438395920981904270213077713064487687895444301430706672015821907028003495863515099282457670410349559746569594337109460411680740298361030358924023753533279060843264313868059430291605488748157620322862700927676884957363875443384608736909628371011476528369696788361064971755249923205409809829954674257917733373833220867748679553702694504219511559724435074234080913377388!
 0659133752583545800378356335614295899622208638868950300632379946591828694517752755052414114930264497792514631711951329016946678868573871430761511506023155864191689957642981172790596427207294498150247518725837861210901518743401988100699181899482383363837767973923937175802730203531434381032770044741585322027477659093928362541988355312071760548423435339263600747742211106144756226581638905803061512294579020578125548201732071662663605686608222385162581350483709472117531634370239757659808906083031296973759963471054577786909167542695963462511552767453884311466885887305040073444604326480050029505149408644982831292774399159954006878236069502982401281283707507367922389283595339448345797580597742844221285965476107857332295572440994308353674943923382884866220315426553444945604240095737005319381115558302771753328425797445324260534722324051709765398847335785570624202007542940996638747038605439038581484587148780460608386508945332228903050567729758295373617510796579188124418329079273278516!
 4859667841672476465482633761893388230500296856063172150643520671310679
31811666321630627178134780697205040629617328699500635583391368291020578470357353182408475368205644948652997173410503535573461935035925037330594670409294688468829370027268738988850093950286655346610611772581507204269583198270241295117652979838742662535557285277554802321863911984903844104515440418662772743778782648385294391457091033225232946588026771192833977167938819672312127811517379207836849011520028237375959365617350589532496791138816214275958210219030910934916555101452774989671758416416793212159750849869158854892208561611783228659575590646254647381649976652193950392950627687664135196903714619889911687653104680343824660463079390197056818799849381530648425135831388593589232089659420083659242308462758601527297968945475960070101936051913873696705865901738010809055437167506365954351746535523008356953584806235831378625099007339832954623958473533053034455418993538418029439733034920466514243519485986413489343610208091029720888188877697277289284043174338318217615668415499336633126!
 4404902404101529718726530125352514780497544647265911394423091253289207909721358309817779828178149441225688698204166764613953412976526402629672122539180030166281242295198050064750161462851249543965705117789948627961394484093361754571581899755603703080278537943032505013639504733197373662941121564817007508560444806315137063552584291766186712229301990646303053060461487004505358926862382503170497298987957729334235461988049633391377727018145500914967033623084124385409983843705812481020257565506479983551304123987965489691888509216160317664927602140803755057076389894605923933023407565505713052913670577253166875124908920627388438457578135027547891135670714351527289621724023236911075659954418027188436980738649851301547954814726934882726750189151082358637398170132799092918179506454698925152564367720486441769353820704407216185336871092957019213698206551769205679903021627162051936528039387593925174101543365098303255246030127780871882556831611332118009671295095040609324962552761006924175!
 4897401277327025221713905391595015566103649787776968101057764559521700
42828369560295935006704456505158319330730176565696852999526101660391068654998927129732994023656477573303600630814799137457407399241132359171231362573147321157416109819932467981175650051598274043546299608667739171770734822104143513462023454956722593190917867911538700690403075685062935057087822947167091562009083097045556888624047504799651681090422230823888932091467491286383460594082803337865913190839401068297948614759098801655365202987250982404071967376656623490667681246689477946371129675755192321066434374087000103699485459852810352154720460368442291051996701478786783092671391425223481619622903832668392866058225121737480311378697356044740440702595281983952320379832900446659804139384125474288052111427038713915639198984117716083093382952729758762224144768885209886646123735001084211985268628863430500061416333460071298272047432612534719521191181261259302621870992544122272708181294606068788878773286196175337066278803708702225816653309932801611476704801300656985277195872945727068477!
 4805530381810347054250330021015755132978864811191129616907252415500287732148904812945086865530478656758783990938090833160588000405847229856266302058853903119377734348131304924636646815975583608696350253786073078028308002782218058118889701978152687291729997324563566964723387989642643189062366467398778349328248713761253106111330630099794270442219666112410377729946358810406976595426015206337374199510555803939999401356327638893669116205795131452572711266243633422990100254689093765047839042295505094259871500757969095390508672551726184863664277155360481255744431419815457700758535241515326488880461400690381868707207587684824285940202492564149546868065463029815711285285334295236312337279148583675819981074608558780374987922462487551687448706772959662670988740424556482972939687135845612312791647132078806287708566941946513019120533056032078877789644151577442395379793283783939873701586104359816211423182073703190901617186109849767131833784373920628896342308709302298126462262719632795907!
 8225639761473096157419976317735092105126961457049899583779218070998658
72882483398480964740455613796745741176360055310437363491560101350353710990685916765719113963493888277751466045375479403691770206414271535614373705500837731487210798980810767460010489608707693572219010973989790363481512113745640877762799639338243824341729237189919732164926465522279293574481247460590826621566691837670053266721713211669955826578590027553343316214098789524492406720380830403406828331548958264190712142713578726502354033952141149439711816034018866732483155516786735328237599838219957252064370391890178535765835047645029612349277391651789475440109749633046492293808309889727325518467230846021752929288377880776937390669448882953273823048019182423611740854253311914793154896959236116217361348960977554625760217144505228388471996009160306371032111236802838366872629113322911670070783031956048871543720057429449277558680493212331937094998298897967023215299343769827963777310681527991973818973983562070559732648872236103301140201288772875533441597404185493239638862809433105492815!
 5790519489597621498435808172775960068957391063531112569547440583265278294777092339799871933829462705538448541860334462383093641719979685544558200674693775350661607908186217405984750455371833580544345089567167232480006281471542994459004411657271304042780647924787727819476075884965431458675224720815151791449733935082380995494334634926460072219198962958450796510720100602635533955496129453894113376188701505238180624914944707273194844938086088861281292914139518376036978708016526099451775078996324381967533168821388950356499308919431399822647993805362871351402626560347166878141327355914820764919226734392014458839645204329529016019201214529513355566078274372379711481674182059411497058280716229915097787042490681138675852508768385875411793387076996356739866058123115622861065602045799568187674720787838444836699977863461138068494958413777764466151567526975088654908087814781468209376480563869881520693453394136102036998798255546053644067954328148630987648262676942011706553996419152373345!
 1253218217721713783416348784730842683063904144603770307901102796197451
354
91970316681653146327039363186451701974586536213900181030477897864645376802219529897436190351446763240118913438276406785286368172351601604845192845763053534185041817369408418855942854094364069487472893499498387008463399838839654828714959440603919788468704524438729085113732948928432336422232831382997503524254271478194298391207895010911646909239159962602936737610886319525477902068394191925820593612042846056021195120168931584529357767047962095233581982717065623719085335372834847534525798398547303460837447530796296024777732340226976068538821768417080168303794630516832234451567552229170515345143426819110026328353193737575886855579924782462325748112494401999912740274429257614751896814622642659880995098791934450994922372492933786614655144606173950271432279932978487584483319293644695872167282537237886844571539660566415310711951642092171341693159415723786230562947512763767230819715256057602348267843840156164249987836403212716645330205786699191423008591879323764028872864656097146112894!
 5796348558603137945140181145740532564853505595250143273796790417881696948139116434789090156741607874624447677249641634074641440163324584803632113878673713747153793589620012688079639424932106281795881211964712472407864461780363403945933549379824279289921143970402642130502468480320192445988200508187751649026450927003334648383238174928443907381453486218104058584370774226386717866008055947973911132887091774866345367748560957716035092323754030306846788179821042147431437251131292744417409768337743735930817107876615319939906523610842489789540733167518772296274308430005998149326944719566656561496953646158434861242940872164627704045223627058913574711936528850048081721093652891550329827986745123017952017472059149747051638019660899290534212792607354826517966215744144449407238917175962801967234352284014966808465587026445254123316527457845885459014528197037211850280100897125755289168670592339432471368130205258003730044518921545543969798677260260636658171793422330143297948397510697424326!
 0817477929329239455466140030707808797042411612311092813010001474609529
10720411470588935709026552837315728566999511197694029860626405273606221725601059858356671150332505759490677756268278407429255231355553306435257814663006975712155276875517556949990729215467380369080963561465548692200874846597273843755791136455409943925348318961229052598779021666730263807510100889308520784143290351592816069443385360822273066083089011316985903028065402316288623207329175328419453218759420590971924746180746084635158055392177777868581771318090068527175818175714261954674019458220953331935809364741112659953412727194685267816529461021247856238627448444737933851937744896625300997623375223159202548655606059371034743854178123958228710460022069533242924448249954456349870028630245979688022143360334674530438453935141724089518115089469420161972507517099076810613951366924121132974859959234626628857187868975187315038277786195214626931828432431212223058701680442695101127322986381095813869224281175272739524627277677550218088202160275199965923813659349375883948502465540657961765!
 4249724570013399229197112273820085920845945195048513885571515191494549351769632530192856944472219388750872583693912914675809575807948536273617337134439084669214886493982674775995260088258821664194262619301691062823437368473906700909181276543919702706386863506340771091777216945708715199149573680921962652024317406744739831782148894735493124509300136919145032681042026521092767945254661413097940916453815417366479861336663334118090776675208938849478955849721878934221443937471629579921624809730561602603136085661044003359123038478580230741280199657487528041842940804214671428049246486471615534734480073984988177181094347383701227222552909126126591232187710210935886136960371047141018117389970845883826472016047475769243033882288004013455840428317756452761524099746936969152354534678950389853525036319120098069603354267511273039559276311565221081223762500178741045406832021137668267472038841852986803553109878783897562720067642395417637648097092288312907719475718671413646598652824130461261!
 4834061822760008350705017155782656607523312228905142522240695898570940
78730972653643793193594607607644834461736641910401115956854757901755784765940276183863145589646608901681420812247265113423925585736543927826097356536922420129440266182188695417224700695935045490970942051866900676168946533708136822316677836807377873275676668075315835911196418537531734418070060550680199649197319099828618224839488590349172345080528799981704137031400123844033496910522611555342743208101358743829168093106061059588161797729074795656471736366154357046992313131956326419097134300593404733115190424818895784177094814433312924282325872555783973268512526626365950188507431682437732163097915953712374211251951463783130399122116398464789766993004536603554381415286507593066485804864123277408394140241530282842631498219655395586802776878246625296789588752024658439309958178182893651022233992055827013593368020611139172256812090940839439018291718864252208537288902534587984370643374398714998623940855239841755430722958212250983060263444905477443214846747126751348939588454455063646289!
 2956545634672545957749934629641662246010847675575804964860638666894734557460693368315603285846111980272255818909510992530355620425747406762243812720440129413472303498470007614701000729922713643610078218149374607401162693254190297178015984487144831951930416647192440152809046310253753106758965938912207820180655383590310704187385639982673743993289335979057616303243561477403999260348961379789563297535162496564276463739445406219237608078591366328838200292938221008221795616077723670872115628779660167515629317147595592853915539768579160944138985124176833955157202249251681275198847409398704413861679548861224244603287354532624550445467977576218006169305221887648101379640001759083124529730445570663889464909067653071358480308063472482239598726874592291427404960372281724540306479942900321993888509483763622082307511202899423760598515745831184283176512347687611982757693241608038529173363959302219245172156874455449744910361926395169637471640173461185512661216957915139231201531638030927748!
 9557653174966440476789275216048173396331008523902516396633766260793429
11920411225065372617787559647900137459779862323353968877945768717799796021809552915812331885383998313614064653346095356894882448148337698707853771824478666198050090850937905021863532820748765808766634070380026770013958763556617585887460956151507878644374894259555645348749049975288318589058031552659615398755985199450742136697182319822279907038371656449075265377678416130204469767531810257290496359810242963433407586930535325038828297008064482630778601506704264021011792839802372791691538585993339946090205690942913309789815803996731691374711917085444150206211612845792859724715351273549083880180860193717631873747209827886835596112623217587514073603711587613389437423907470606310206073955459925323082240438506450937366421687404711907223496281258914576269314178583085345786809358257596775158110201425567101916501342866068891461789865913381916896254876100527175537924697794959830015158820956064359447956872652471478300021050800765919050691368710660275739368196238746369603653561804487923367!
 1196361096443590367780386975698700066128600908972763784170681011023878327509556049863437825040729398711012419062681184758871778219575668716391096285613114851310262988018445483983563346369858961601638832451643833773992517561538214192538309284727574179353157974060772489854342438438245355877388064368436434962046220856817708429698234402047119136181368221567731203353161945410545298915549684475400595892053057027081236264377096347119504281136338780474294140106627187176646143400995420670355613336273253448831942522352664609751787167622528333281713424199112922596165413918546758746978960629104560960760869857851640050788361893312892630359673135798811322815470134970321372910569118863527433798746400098719084919810817758424896377131490061087102550736364479908230863220851692910781105822458070098009379303459424803490695549739993764147143292485181574852938571142292149809031778628090584719380515643896723150913789153034847192599958028005079997989768263164180670999083299620957579935579167406966!
 4451150549259994834149897951354376443615073878495970237311993240526764
724
51739825933648791552161619866553880411650567163737374087247037543793903661769519295729546061317761846064750293180187565555503390488255014671129752492960425004469365785497078804890437734786099942612121224691200346572833706086840769917324610697894910664654319506888958520697191426844146713025679690991790816184334395382157635932317359006047601837402827138791231193066521735638255297444185546158376187321568157553594310256684655923832024758835925595156630144833873346802877254115172365180643918454260329006228278003793850868686188460059083710586916494443454565066868331714465469448942349195852048187817858186418665262824511578600700034677796781152810887347307034073809162120623103790706858265263880509896005945715119097798781546198568394022454274371976904824828976886804026243257850407846044648404184535100517018786923619844449612215206290669204913751608729773225419991042818097226240319857219147396750139380296713390537414189131182614878343796938783470719135669128056336016756530683171634021!
 1946181202188998478234958154166682407577319765731900329568741580149128223293609928807855328924205287605062011826251197066362795080659757421326269879340926926428884695565957505962325130984536031532306445792555666055739549734918975207884764401952215093377418261105878027766306575323339240415793901200053330746689770490718955358184510673399867614686421760473134074559626643769676892192679088676378709757458562077951038556837810737304860143483249014829257669750989327827179755087313598536537306866016968165132389832157282266174767709782269046759050494659137413863367386395493417601910809384333524884677096548681040709864057500834779190326711629914415764558863978276000403848287428424438614935465158867157312719217620481738577578321941015646812333082742889505193499577296569017803125827128598708198180200186426405294086375940413881854720874887907438357580102215705375121078705356029312117031516024309631319026540753547826878251230520973920926587461039092753300386855055820939189946694708727128!
 9465953701137728783515543084507660418712543551006786270413748291583395
74500601953400360215643624388818318923400263909244859268150550334726194238998749766926960001209655375782390621057005919784207705057310478568380069315479085201755944173155973470918365810434270916340942240606825712555855011729631042009856670150738541387628608348441090397994900631076865259626287746969497707163288826878287650057276006039939527486837006811516841954237948114406304811626746914327413021918202763722488888668107509182776598933938856876638249141831178001954440842196270702506708338523563651420162928555559700486728259023209876665133554382247699378109797376722404539201626500625597190560021991174937026626367175777192266507145965072522863464184343231710755108558046662172009308028251594362753183029353462788441331527523515948765598879950461703388560950548843052867372861737699961975296634764437923340661402740837229969515103126211310889489954605889054597640607449202764244493424176663134597059558483552492214452671779097213676107943780163081806791999511214238423048865784593722745!
 0677869242055546095839385512881727623676115977821772219678987500130135875735087392879013989402749898134307206843798075458451169245996995237223319161937104505824383310405902495001090418034019707788459213873346939370408824226735342408403002406703294622699399547302683397404743615418092749528400911436367890945352704211868751690397363536795173548055241543480420844085372147835584425478301365861106240221814614292417857407679950819707061179575612760678875441316102702634382172000974073015834421697899813829394941696731693412281143216360304967927461324755791555796940213740141210149416696398245265960406349282064535046476367526500141260748891877174281474403099123270480539878920439587635814395581650317062585490707855858524765969809443777294308590867934248108350086699035929209839511457216353259777703601112957141123648801678658625969934605439498033403370857150637097214660636035379224182831982577004609235948000760364762098204801701596798816117493068599171017136858325714206394466288114694612!
 3488022028274665524407979362085232558179666018227016554929919141776451
64743112944844260248778147840967215091080823985714954525587975727466251027772925519048729075179647052492881803361545405264438094324523882509102240937056951560795446523023867429727272111152337762764444077656254443833125017241457853671885865739963122418132765151467670140685078733292588399790721623369538194283216604203010417999461940402596388192568506535981585251820983250293754688556505553397756265244514784729869557079686760558472638783588244689447260063574277971150231840594905974763100779843045950657175266521024124657826888000994374731141287585465042023627946348582933804954775847023333778750304304909295945164458139971286032334134858152616178950303101764851290318278155107204461600893467310096625365823767336800081633651581316878081911698529964130715229808992685141188187840183577543171037049748760776158756141932007768745140685600934802389839089484566094691557296353130844187375471606640069643321032717083527614480305391349722220351947688543470940409705037663376576354950161509224242!
 9857701617895118827724370753979020310031399436317825013009178738423672220723593036078578096900768339959803816693350007481986001412908850692889696635149670912210555284013929884518337747244442804550130685078335842132240909023183112937309893263224509968084903600924287929173084369688408666907818840812509051401974124025843605812537519492798710532516981340641771380661380117193494478611233079937205839995199869238264477952843846598190424271918660981408426499157746058205263484658647446181594245306607911404908596600872160507442825865427311540597867705964990595159312949083760920247678150808879147302364187228922196644043390395395999381489642669022394088598287035971042776153065200186457889045850067849172792388542153028924745696893457404202830329265521776037609522652754348686338717261615421275480184163072227968865970299063635792994778873978197634395837425395020588545304498756288732523815433715433283372579001894720828519820697346145488541118622190112069898499585929071219059387499150066228!
 0270813947905380923280399576835856803482898537026288825489985435884695
14688053188175440985077562809243821181791362720550609427419404356531708785619547111006489092905050442576861317703067553925332322054338859533362080300806211134084566507369509673647710526308149037568836023555707825510124247058618487671937304302464034509994963373705507621763253948180925704599463379323379637367036393030264619036219486165542950215451427369006302908360164689918584264311936458743638163947906271225307500609318770694729948526502778488467870332300739109482109419448219563706466818339754840137177488484584509024651959458307752108442458327710439385345290027326669556817399204147698680146028165307210992285249035578237503360757698120301173632024289765228329259111555675497741153798752139325047753087007747424387247210216427850628387163803261943237613560986936969237450051080535913307759833147723018751752934075582215826597470889069839584815965211756789245816503566688335450379788406236977268040720112155415819678417500591907469346485459657820948043704575829006909626242630413028207!
 4048392244642285052545831563484870407320159499382410502440041096775706839892289125674956900330247610998805847536660567459041717374159725065692011958233214891558409082330616548237934359020327289346596128786845529691741134063226614073812165860233723459173905915701580730071742002311432489745020104318611728654669557683489034331318478627329298031603224073095561132904767460096717781987313166004799195610118432893486935514843449665095873708517947001944570396567160733717524805926067264481610018727551807113125752732704785480353771980712392263203229692000912354735315447339338378052994844776008582475886406543548842527449103741086770249024323776155948000975692165809016863653835092609288682352591275053427456244942157292507295391494678908879641723769718361755615564541453819318783879959296775411046020348017240331405876412258087222204360631404906157988327619114728980025663352650333917461223684312993018290374547961613523204081461763624108624690549949923890336160314577127804758707249981409466!
 6340619812308639660245055405683311052791949117227721260613644169691955
643
79212364118307886798665875625074452658685568184146990184516138488949677403302955077407052620795725202052212425070316615295607435635314327500294186785467827200935167432204894016513687830382205351689595374975869330807072718923564435675833170046110783818195225581437021210675246336878320767451119633747955191289391386259776451649186247337169777209410851521399533625675605603678868825865495861220932682913931506170241954108587744639060796669488597004203457405461194209707854074227828435579539056659294200808078210818153497478844179496583861850499500952296799504041918881098676445225041294017461033355498590769241759257015066870627704090147518341518545827824421683838318252508697343988548835031994059550705434759964122728435446401258494679434586955694594709868219217651163487824578137224224009201934427034798212504814928585269223467143732007966707615229738445206621605783257264786614292417445616670573314507005034065017383042471053580279329844018203549946334240854457327026499247086354802167024!
 3523349053052719303606199599595778466292916417276071359503824391452785121845713116007340729916128743867302614479549097910161389224509190748049969276859120022834431253364854010063434973047225720836275375954381111237057196861338511533383986825535069975782004271494929359481799566222540626900423294713886947124351618210212332413121753247699551722811035178979140137753538729271368617563839049707045400312211880460896526647882549165479922392162805908153154347113037500198306155061180392218561112640893515634728588907092288294019652028164469389560396413019101808637100337488241486468032942876871991427740706874777715780481764835291005157318105678924131441894389232268706760651477620693043114772305855958339060113989605341346382930257358324265585502444876526212260229398065256177790159153198805222692846026414579178791662473416577816028930044808384786619984253644349963812393015105868141864765572948352737367390245820439934074119537494817765707985672478577803067649173641342322510955009427032790!
 5308881768269175643058816279374639217917404440541362086187026808459454
98487083372148623781214585493072579741549984620564178067920449078730991381177055880119139687829886593607027023695408197071503915144985541291398769956681785656533562697752075815819159575946303773476826589073133701616131907867109757257361053180963428869463388028377172481735305482523341397359634096746286022474884391771929844913807503598813952125722649701948476960232735246864393101863338815113934247383426348526035806727022962664350671706026804391321571392953820453109977572000881059343615604115952449926478656967028216322871255635342273199150504698851101056466441350587373909672456510318462858403944819011901548034441285910237787499217449698014625868952028132446349593385497672273929998297830759724821244430518803831913202634409262305209989755950680971387124906577308629219766255267321182825759339880101778660590117805977030526918862433234762346439638424789957792847642975805045664916904994191336057592359678037956244021586305224932983652716638809772866037386159508222419897633231763707314!
 6651963133506707996302772579877225391242138624578678749165475265816816150912921022318571775316476072022797630181544973841836160073551975965387085959753959032462906029093775411765510633468307573650651907805251169538273558309680357074839108954781343790592414397652176811155110039779587967196131994727764152130035624824392389278376596871845484602321864715044699950175357675231490660530668211077635784053519178967331779856314521308363302462061622556960418507079325604596531841521746854264077397477182040995200761452300322608981764834536773402188673980083718706377930026750587239981215643837859949480948223056484522156705245076336895650722404138463323018577686142041155619239469224850692566990364501150976786733947889326066598156554942258859364756337478020955381173179891688047353782263734688123659272041575810441365379873138441407549360573104507650554522816516598256441712111224778008406730482881668438756166508582633017204979177622941783582755202059209293751671094623562713124622038998962293!
 2783108773372057205150306860187125571549727918786119067043356905074515
46236165999956276482631187669913193111293782208957566405537537149184335356560477969600753756150101143035465447621143135472539915308504918508835421799210989234671010775545906915682169219957911639896513551485324883339750294971424983298164229797425330986727823398505707075827798267755173856314342678324026716110518894818385047943730726884880261937813074062084497845286413558584082267985348536473146792778038448316271459496664877246278180326073812808648539252857245891559681179999202140140480653427963774451872056433693326331881803736547114562832564506516563100461903293468317705924516764241863691818400281288993225340458910690662560104527369865446472825454019351023332568443703317978556019379061451847088137302813877812153798025893451173912549256534319043307742551012967282350719347483724308032686663585540288837953541235926333347689626597481793565542059996218490310675674030841672663346247274059428112120677721976931630137875245937660734420417290833412190879872725663063428685805693590479279!
 0376402796627442671248282056581024160868135549421640662351163846046622098173009213501362255251587918230562104541860996727484765445606502552317744258013786108298813279690500054858930190265429265485530813503536842527647951957856974949470510097160909266088264378507055073138222227186202488136108001182207374190121475591202426558065800022649306896139575034856622456345535408525481248447025626234817909735144052817544928668356365776918512647344172368247637070389739122484199771269733429266119537109588449991637898331251775986874272908150093361669624155350761829392917338072044522241864942284616781777404614208068859723926347221833376822462834604028634437112321798021770416358201167961521780436740911891062798154038452740975948872605787896115074630255240414813665013783330027942409972524008009302531018027863190105582816615741112171835699318671448447953622512704805234125459039991730123399929226739649895524772163846220617387644131984159953289044040516401998378978632395769945639259570842479740!
 3360306888585181566186079407562143320023722439545860210201788861625413
42837073610809493330524284225998038151921469998403034757589022148112433377773461758492754308368104834972583640976744421773102853247683909562945053205194186136989035212501636503389264285242693116202992910360286494131506085658384759581779783237523287406455554374786868363961650079322158066792734274024741515600558381541358232215469184449737940564500947914881100557502030550412272448071151222955950652506078275887230268021205141800667074318165559735842043613422585492800940300440941657580398194328888161750761664263588292490067567004346674018005185183588127437866968943698654366884340235884494313891188048259623134591586754860004620433234247487444744940147826903902126838762649638679047471277539553546992377398867171948424635863575200940534238133999061197160622045129033547966300315945425136980881108910940111346738243809894095215366069635786103631632133762017381708480037324650323700508465850556005966930999989485233917617456472810062374682911002147070625324454703378241619126339419601160043!
 0192510726092264467479094438009019916717353484792860684906456726004753775089012551246984585730733018457233001289582598707319792102160874691054484304171360111511135631828141466689068312804455309154690006729042100207070158310255119652293257301410082035892791472855532455413934658829417681307965735879523173691480286276836657565590490494630000593448240154152349271196473693816835659725581418895273278895392343211686429979592169596513074281764734736235477215118854718669978535770711431905188607926848099987776395088574008990685706496414622858752358727997449387566454567160026905394708631615513924288575781293679939835174835526103390594543125390351289574215386777444963846400670408415290886345447509812071506457258117103542305165353845050451838601487722476284996828622529402827709124595009061289383677732523375673932594527901135028710851047775341011026225782367261485211061759790561455668258728710214149732362208837091097619088329429567500122276591119514784757213194872916242507842350633285167!
 6045179588018786648916185269345068459432095411174723326037841819358203
924
18503705164987813241039307488403924222702248338437185363436053333773022945675041209367706797789893454427349821321449988383656673709512188132291304764388980670501738430811357760862539052555760350620704131588907782001136684499922348007048307033395655697170466944248788632468409127601817020613795215125845664117959334354406310335185913449572325936756454768403007140013856208166079163004007625615668732781817765178432937443364531700076041095491845678700594384555348816817684433117223053809091637570696289419796751432722876426331891550860423821754302880788365587085065450968692519105735791456368503854646026534157507779101898555261291620025318195195584941532513184978394985998993539008267580606635633138132401073451696526483253443649381003720804166176916871616444275746114737214921855460343131818451724116848321186631962423328655215888544337389236624779529519544797229355819219533122765113945764863960522276430403572778728859671736339920062264669273576921423953372917384373924161350497225358106!
 5941791921917893335540837048849955909871226940571826957658602361729883504210482776895475868777353615346904919758986076064702565475048605352100549139104889825661809073779837337249511518627073736136689983232857487408209001521945533334111084427388832474524568180541180992795812416190053788809226041184924763559953638524020070910844905404246622870489353326682699462912149648780108791483407296653013223653303011900623594623082303632781949766423405898317402254309657311701805471115702135628252893301120590307818548335135357903182409031875051960535600947318850066069174378606704656147034034795182738005282758965504200276402167341920519576567123117366419753170002776711012495366732167143189746155484193230168383961159857734756261336509556783655357391120778557456830420097966862002589428682250045915418242358931541436850217093941803132907088995685318068774530212723575643929353536045784458023981010535281311548371894601915368974886549785287161521853637100964893902232064437962855745655496208729841!
 8321713442038307528406420050943777461291252508960643092598128602464898
84224923348607475996437257410065832349231576843180785246022543334950547482773472633558673970258767509349767215616266314404375954073356487037713464962833419307129474269294538385465970021636295074800165138939798027269455868539114956147862078812593769859980757337173500029854815280256020331879335354130587389744122891152117726424420019422383166059453832227603036249616046662599576196473409198892058089590274584619985219209326110678430105305453201191464754276208440176443855365479813725251165864461897763451968408223738988904430611966567039435747680764685975305895222540830331553247102949087686461550482503110152283610074358169144014642496472806882049524014945618142084856317625512103875314200949124693044273430394880730722910939709119400750934960189628850476142457455050981380656524653014399102308153136654846947334726387651600611386544467157075075019877624437545401326899411111900335571338786948713226543658912798973034600831795409659949595237765288686972547460484795404832683268076290899130!
 2250828067732582719795769910062578543682447891660063452395365797476712156016183318713501338700399471821648939272893675695883750754969420390225037991573757906975723271072899914403164051798426068537942992925680607768996410142791296479975002381720466248710175833688892946227917342792841874429382506708662901371774955754908044591047985340695518122105515118159930970277298259864542762212555158756211815553698925477407891703215158956513062366238793368519249140682326223002075691012783680085740121009921897833572455780786197097471756122087858094238478242725487668865243513358597428552656914861919603823728873711780043113006058635398858340759679837769853218271937789424944230079226565591316817169367780309789778493097353890443622255666651111935039289738748557939046953742910407659773955426854263241117116055707650405831492727093401780786732697487224684906306225753489081976321310171043271069964418901295833823904500671319990294531057920468624600042190533954240268284069132041432062865764069803300!
 5955475902600533098264270068023278875255774363463151246922472238341596
01015300834002214453661973435888019584219644415954603201398344188020539941416842731601187180635249134474341225965203045319889171623247512540219956482614363497312683934452049856751419230205114353978499166475430921600481590520793866795357885785196655555178257836263449775361078785449062457161017997104955107952596185229181461896142235901219726259634759833851236384806443157522133798549150262109129173844052081154768403405301692538592835863686521190375113657977956362218266751213141735591822388807301039211673698888172161113641049006158052725149655483209766152564555689271681834214289096383672917758115208305270974720904432126072200085398053204797699256460833859262306084576997329838724821430458488831216490717985973407413135087279229125316695796653375852745273633559533996948019502878141003354291160479572398587939033988333706687843304278413787009503429482674239849030163945923193484729079144079082048410260508099691700690564903115315183723194645662831639309453967062269777469938942692752397!
 6821243372564526255203891196039665440302344443384580376790453799928166899913090302982405731761256028275632539167518859818074583448324246426984739755332964817981023045968935913689153194834869765159797078322584439983405132391679325178099608395538498385059934620755590916638231416091853000890907029483339852744991449746027638119416256903469470230076301308443961565004167492333497092482491965313048539872223028663524648739733242503052370653238076725759991869521980928493009713074859442055400885448266574116628533855152272675925602701956098516145006718320003581961910623496283643127150254061015565384663747214737167422682924088365723224683670396544700593670208178572739530441532758474489095223988514965841080167037857143583295229460817325283824907962384491139766519650755022056405407945069868748679314054463009092436833829315369389075214781081104752896416079151331708642959720095654431943472996671315172253239743954303619833512587513091214103845576168736273014331389575323717917143026704260200!
 4454665337561719295723990616348042202021852723870439562918415675823993
04975039472401369115174806429416489018811969148646910962510142263020759883258973313998243536748619935921804071277549624998942206612630829612860646857338239179724932481341791608768271940955639995147908283189485229371542556090017843691099545014654063368686239519970565168451923241886061285326689347521540326054625513262203959692322165854783879308245152196818815064731593300784233583096027341424685947410888691372090855180982483400420512488018261118455262485595659274322134571710677257706355597023240410913420651764225756914627061296919303514569439726438781619388811847116064669827996560869801629475838651070279315447601478042451589123253078872915046415873275210230919862481535285990149161806375888734373695841277807381049509919351375680058641846199518354062984583061296529849659527953554817276997259319496993960698295066273696877641880659945905303165802929041358041129036769357663624678999706133797132457578593359634041379093908881783366809695024558895010381395714658553593406534502789805528!
 2436205522764754030857890197765491470163799395675767956387529451916370187601642377655690078646696420274976462382190175471355324398200457049768959606215155772850415695725783797117884506430932521515706198481135338215220511533172327619119864389565202306340473488322284022086861952367603743606583435121501183854439871156375895367101441146087139878557238473936571002693228397267532234830895519598776689569041025968733657189144277973855372538083890272761573858503150286960670037859372330614221294791494890892840963427235229953511090578721389235098393809840860992850587671631532945702266328475086329909791947312472050201321627839671540997613496410139428317743808455968160445115689151391623623283693774092663020436704716230180435575746645710310627710072570048387215900021555569656513254055821122338077739492846956685953251742594683179175263690889296635584763058507486199388267820738977395926764229238756294268773227056667259152711331739047887505814730772018441788962317925727298284850681800601216!
 3424706334560551500428273133486858190131169234070546061605372807490114
722
23890262383687990916766879293170332362577327235492145609393055205665929078629018589792521266955596907345864251743246030412153837630803986145777713575388051180211843397938033830389748231273326058428742401838938620048204258177212853270939376636482260096367780718049290195672447920519120015776728837797629832883759037776561215879369810896442649664274295644944442443731866807308616916657240836856962812423029504513547697192598873325063560426893428410559268621928651791341585354797514011391045493069179491226113669719628815807047543003397616135552220589451734694895352317329149410890596003362947544284588135947913424171927409837270181558511565105721930943491775668101098833407349905463522200516255476178525844855993891662055627675824841559303266381122694528787399784482670584277230708708340974011995013806787237681427583612422105782555407903763431371200369036781213404573162773865073484842806034924714672832938452853626348298244809133541860959034380928241896263296892555672935914088284584679586!
 5921104573133763566044294990268099043409538493305691851123345065920192196818565468360243016393171623701091610501127548381053040082205793177066064022445106067925876751078209822826462977467825171732380495539910754943941597631214204382284864528819188457174453602486842895688833777450011323927190850053065432740917128086981380030173023266553322037207069507936505258926350318572702581723310456191025656280491868097710006894171127688939974058984092570211687135814945626263789824985209661327978391196531832048441535301608337064995931183344072671903512344298475109264921074490746830497148566750472575037859782182680788712731425385622908571276306465644530733294303935873363769654054225169297208129718344184880198945872212835296504296027466871564631372364742512649236779631431994145827983999443378350696501507755354709452081493436717703224113226461402018429889395331149912334193662379020322647862640756062216817289912997398297073887574255719997083932308575787031464934733603375123385816101978346216!
 2980865296237126769874894908981732342003361379294866472518478857046388
64463065707428393804192645479177960974929186331038786226817663790791244250898907025441492737246986362784840881046223220895267317559916472568378944302547461614947586921367763516401739713761544886713823265700752642791611859117891515598137020584447571060466297886108664532370840320852970544040931170706478053907040033430996561148623906950986443300830309398092366662510361263377617770553644586125191136968087935594643136189132097460664557354624495154461199627357636141663083751498965046860596210791474151377762433736938467610682882561718494062377420884453511039345186440563381145980544389098882730236057582587526810954554022740271786734073951532110726545325286695715309376570548884489540012507075355169202268037891338227559186049625015968745046922388164226758238199150716707933202557453329709100112646345215980918427443086236276795013569188238584321328494659250409049603203537897122666395443390287899823255960484693289642286268554458617382057900171152816292464779439611307755831585512272594298!
 4114257216393071857419348993025350506655641315322994382057045235997700809829659617566399128264468189221361167864726747301211519738480346672185514002226733514542447312826471403641279429854625507512643707108344403668874901291695869836786733237506021571912332757283159773725994509194990913539891199818461302201522454603990134728090315930290670792425453934702595110308939348889148612573429689293527649118790961334901495843450173690774742797855140227205927394464832830433012895387505809397262504572921669659082736596792636501237150932110343050384843211117413403306851287539660287996718751675897479686071143237159491763820275053534879478098095954652297867201348209261454309279408950659289224239135707770423346009404469899456055327952469901233311655484791848507189578821424309044141477076361750635179827864764848440639909121022797499364241490167278201348115617929225680538083424482485934011100769174175437602395440562780773105023621117472169123875471618130997835137014637923065049304025281167012!
 8722708933804164559400119459385941454287467113935173894884384555944324
57029608625324632698412879453108170357247253535049734649662025054505871264089207911563515336916328909245244469994592904239217423416398323498557173250354685899897353683546735862413516684529092360477103165029245941179490909029886469725619809373376727926485088684817445132131713786271228062193480599676845416569871489193798738678666078081816722471491098560480543713127774333681543843382977120090013126477255840128766335580677483457688108729350359219682120069763319795362435089011887697942024921732719614053380380040848582719104478753572704037452070750942765099560712370964723750629663134029300277155114811754934450488206987786441027769539820804777449952244834353217697952630649733857783336740341273188169470502857169497374107677775094397778590564012531873600581925449136144397798442466270642957492958337209892030775656785268605374789878823802548384569059205608648892445459994098132891098809235856021566224173779410489515092337001554461492122179492957067954398808623143998449628648416800588202!
 4475425533085961663869575424692466566844693534103251314498322196151040303797212276857769806546610658540378119784727810256676207161153674946376270450704051170699432035188941553268743803931827128275233536791242771246633203553596237242548764934077788520190964574152826103006783494606365420641364524814710391583961699369245512145527364176150829026812373162899875629053719599243791934769021418321954677603624575721022835849529844802424463844007167531600235205733312516980394047232239882307245725957861925465275177259207327218175591468855593656008331487733160714443043487581311895517341242241699521676093408944815315560532313655440717666329969025166917501092182743488367081246999323077902860532367882873503778941048354385438790205063211187492306206952073886808429471993943027224630766834685248346175447453392048488048182088860688396893551239566415935439241472560314066919572864252470414380821569848407460626212217817404897551493484938802426787059800809154632604670013469684103282318244916093038!
 5709446031532167343856655091997393275256557331661296708349475169378174
96353185505501816147789774866797411253849689748359805159089086613892500508467261487388991957389062631704737047620986260489992036390220863441401183377323139800805102411062019782384222165341329474449535804638513095327074892195070813413119390555636276640603152782117199124922865119192560943566827285916393609696070196896346869617052799713508851621846099579373477874960364790413137895497374711995181074398461289950012065034806733057989523952737166311117364004837019252279194315299919668655256901972856866611271507241818083481877855639334906888889574541667424503230975959084775484391811908094939020036268100420530389123443695395040579234840066312829522866386090586973484459091792411662773015941048982114705670106502357467342678014826888381191980963860038699833588959602492670762088514237184037477738655950633174884714525777207347644586473789719581682726409525513315965924684544580109793012641439567603276293631260169837604570602782813975266079762337530364034623990601791958563267195803242426100!
 5169473354029425051981489100593502184603081212278874202951827561828778036638962642004195982127404280416279722823286531612716764473708806377159518150846956152258703584196945501195023499667402770810027124057472948681220280126083429477503765580557807837555701611149473616759206134223757433697199575798810429283853378741905713286108357702643756829305748162633889969023351137871929261637950117232660444383317822546233371202391232055488993881247533701332862114672294207729329323830576445577530636970098234629231997005108864755707017175590992697449358277744923985062822509163695662012081445574216165447784077647507215861139522786174074846685500048491183095332236183514585538744644305576461285228690020625520855516885215413226281833643901136834907350346256321834315142150109054674031977356430634321824519726894097949625787151236524228970744345717533945075786104726389673051967766265906354928929365943847821888168136863016246692340172166661618732069016150381196599364717894138225625445736050485786!
 9504532569649087378197616710389280114116552682736084027587473918749759
060
03455368967169107023174682350173089635298686946319826953365612936821558043520411263534705397533676188442752197027727673154475008726192242315923955863834032381082304435149206642941982961446624108993858742443077443208223958380492852026508215598752872371657051097921098867914571821338333584679052932446919964404538011861418407664423881133929611923953274196328608267238487830290791763654357503723401965213298894873037364239757338754668260353231035813673361323888751753170650998611072661968845780926334312196574235115952811082902792453590309016244184966400748253413288334577202457787580678519210094075172814044242122341941901514115922979920083221764545596080969682952768345766386735760741270405782607954705869742063707587039720723103497441683903113467514469969161006605953456117906193203147464740897886878302934292506021465982568854963537607357105173632037176664576414338591026534494437601613720574177980885696455404038877222799434218036520188893744073314476573450932453901834400144480389525925!
 3926186184814641577741950059578485669325961138804765416674369016085518374290689812087611229412758935932116338994446293671948834301553640258378514745142945948066721512805752355762699186211846967270001277211321054995780906555763100561214015660054470935287340427232893614350545742826966094072344768259288346380007505112022459338852300466267536469608901295715849277931131248758173451768831839093592510046726125170596009583397619287779212844055689957843418298507915104781389675654942021338859128575447418638410945083946359702319356425364274623619033740761152986825899779950576149510716264707541150736050210687875101109243152297611775817859576602250264055378416402613571580001038237403190824906625505305212057347844600419109081331583821651144659611667161963258147061182762187879454392570310514451297912982931021184719677512628193721326625282412996800012306842441527931714358598891741439697247285063303968574647866367259918139125746016822354841310790720631814388206077308543215873724686704153723!
 0435234218487133342626462328583884291491094537281092980255074772413136
09023812264864105515137091621438909398449231728932381973654344397726768992185145509738293322678829564806985043624703191964837558339144536863853425530176406538628206767721685385562650836155902737257514177102559911821987844801679907456830790968510380579850822519940106161641754175389989134692091846791909280598176462348124455506804899449401345151869446721949123983645753021579590078068766890343668176279418748572800218344985698731335442542933776420906000653366005172199600338947579199304845316358141048641892269343259036669726464104272301038829997656346673798054557472238393213988896232233198155891124525379410999751923175350984185709697880264153352116705825058871712411965160816019073379256082766746268870613231825549375105441626224769635067472743001779421223984212107703502783962030364303721132789435911410248800919965925007609655336997353457124204811485816702541639270804432302110123686160349672850028923861479982148606810209466980167372295870839561860703028315006899497676830406687045750!
 6529385656482656212941223186103720168377360711947139463651387069051759198387686093484022711421334770037878292532009358812638021208771369660656552452334663922059329937710039956545367653064907245653932371282359006511616682776226882616479021570780941998189919104127232336461047423457207114954592141472217512181893670412604881151427223632743064362934260682892892025172030673312301763210872303777653264405063535023736660980959764592578748584950422360789089405744233154896178442959338813884863369860072427755285526594257624099330926162926532948462085954232581493136140513163790317995967516849645300820358954133568440232237727318761460033038797395153412581944333472010596297504639395941346322836769367960351408405697272070841122129845233902929785770838823599651881495977370443152926242160581396011417060546845775211016503389846104702327495400963827751825908106434024017464158017183306399122130928152037805890687011975029124205350192381982837572251998663827355488552854109295784342673484535638739!
 5190931003694331900560759337542632599334737631609941264115586694111196
75987309906097202475597181930824334821987066731754502221634661522538673944678968859030902208271421148974523577471554529052349319028217886821924076175949976113124665970802237183620435432155791496412778663097880080383713889420913071916844439425293920711528535805430507608192444525776989381547733718653369189114005595052646116412752356832032602823829921383290327578780781115421082634433634294125469548883143699426183053149774116016808194421222201569961920834228647117730046864405140271755272464044656826767172934942232529069344473725883037355445654695762960675839759540982478676199448093341705784412491206422089383074740888599066742133043516807809964002771490889919268300279056521926531108311610669516371201362879465032015148027796850733735316273746877416934300843891065210994908190055466954400019909891895566797976029040446971668681256692920314800032973286579865358897624339605271951756786198230284344481511508597798100142813824222983296225520695244894175181447202466514706180197051655317344!
 3124564324206999865464291823590140804636949067663452689945320618663487557511517014970976564571283736813195299622506181990259498776315013794184612401351330093362387053965653535479893198123321411982161549791261969187883391566951064638150365647937915888638264648502310118446073879199642971683002324635700562235499030151784748570824578233432149993333578173522088753855765388806034944646022413198353420272425810978037270601693126644612228382980158542316860383409414721191944066400620261529963698102373569865421979819453962713429151668366631478176916440979157736189936732084127701424844518721288226802065071786137297767049917704161670334228925768536130099874493513675949011369756162992944305780746531739679021919603472620193690851460733289950446797755916772545224683309418971583790681803972695974872104844155971359024602179515083934062401359457672560917471712010467739530075913659973536994141061917213126947773809109216880328882701049374868530280210363563159197990461385540422162753248452397878!
 6440578071162944967127086910545059140689323298546916912904717960116875
43635825721147970056428988781773400342073849531462571788788080085836323568737603972941336591357180330637540168015375439411151945039474025062365476641661657903689786479286355291796052203106065811045046992410573907893430672989738531551305400054280850683585998598680808515397270518279766043375804691638495689554212839432531338072261818584614685316615413439220358101885858332283668865954038370046067294963198085372041109694174004482059771538001434970092475005920047941764990257279605782169644690809298703768186647442914593632961425420122241558528176841790627781703375876389494452121064828851510403656618445753695388719183993600110698702738613112536834417650437417935370003917046708865000858156845394789767894525528462269887210321667943144877599678574364631999991905007904466971280532223748470195839035098822049479463819140999969432703020600958072478670619668070693104064030645176462099596943946305242073777986342437751691091401565088431980980698110700851320455086246395957581740102095241884495!
 7977369970321587194368442720511279039815514333709738229189607100944935292098261884197502258182568891644092161859270775783970937047136367460652334090077403970347406989100815197554658326549166195418856767495043038875031327256401681872721988801284638458352822249927837846836534942547890107247073192977104539222350719151419241211307168688364341885777178892161434255023866248898569430944942323552676445171331583409932493790308597777260443724640965091808041720679516081811788850437313657128099863491940472772848220542008172110383933772734446253254181807807326250069087876573898742816669094152913291623252193536815896754462837176950807568521729036301465726353918549899170409469580910965252852713035144672771710624382121453216616907736602810557566024360615652092531716824713536840781200043408756420059161832224744347048259008950132529460684705938993927743787319132197044930649993657597872481125739401858337653283293368698694654607078209490369348421046610198525084353012566919756508479570405275418!
 2942133743746065775956302386296498486406153703833435487327722120529060
193
21878259363921795825573326713408258580093177010965044923968405292042302766548861869779507326228955226865595137512964678364562681639196908717485250581564757078323718148627411673783999756490942778277977256618830516202706861531513926925038230835615422220289617137909206208692455378907527880716997796175780373732265145141483863624133569772760153692887537057182239997564364654678381275147726683816559716618880080468765491175200648391172262085627221575817813849066280935173582185840974988032004790639585132691441878988957754297802268396739747822201500717934475104551982297575706392871760314285277460668769197591474978904369863575729247262034225123566850427123178117658660040178299867363656524489322932214893245608274123236868845329816498226010189841155352077820881418490039145326830187869194758504778184662598522382194431871602321859680228963756377287865844039724289784338644144647387584734654258333258319235049525438229115406470475152443656438821042187942682226604529287927280475497894828230001!
 7476194445753505115080070595713597053512330440573370957764245881807767917469238205893082481564153492887314455755097075512197815017583264959023734409284787237365270006485070401596911573104639447010405782279903167983827653344077760676534950662693952663074311172179179930995718459379330452898967943601276754184357059261317989637443306550066982021415548050820393439222609359607956571774597616662246682420152116866039869791478489163219330691989868576077730187618489169650938366222966177176883246206390645288850616598937555451790616204570594035423146208287271682347416296188560942289376483296792035141946077772827568669689016616155219867565016480930135050976879956784912058428693410426814626611816919631219226077369553345573565655766268501860078432233375262925909571271621340879380857147287415764721439265636658007722249607078156066778020735271704501627977527120631025860212677315901872858144820761709073077231598327236469841136492532904858824178792236510987810421868621244963386083658418801418!
 5114588648402763330011586915227636661487900053435927708039262321544499
29268775314541219574916278523457813798728476785847942973528711729246876364740149230208737304532485090662281670610908795030010172799808478614796874122168618367482336325027328427571788448852254231664481871331801979075897916757041258626398832507722743024695086541329559289338003386216248869141645115737088482183224642614484458114346474001706007898390099220642686999166089373705533476689878872793033311469047599857157295335764660354020155966068686696142706077267018947094691238713342116640586612934510939726747219391436586509924389214054130548467047583928391434163800593975309962783333383671351882740918605114337502908151526753065371718490406220637766033997145331734317574407579322228793023365858359638819825194432795712493373427528533356351169641819753827335872127899844759079113969296592251641294544492033508766919261779393470946457923156936314217147837430569770720466294319462205019313744830846711327066677292117460351632063190647519065349725671417435734602393793844798399891509240280304866!
 3812005298340991184904192230628254206902866414036770450322377131890375411752523539994246625563318656324843212023978407362647132422481438485654919106636040278397671136534397767327465993022433651856186364922133214259621123917768061412617543336223657525038240248790001170522298791079198403064287800994939994455294184751587312419070525806007063669394988606628272410138615534525861211600049697448251612995631068697764668492275140836134162973695387932044617636583073096796666606964117497695239771648695835449124116435295054730515377777115106457138908751053628780515067054030910931434748983314004631423994849764221389801457991095399470339468653282367951147012087259207105232093056609069596433321256111080982238419634174939043974027376789048147886509549026748342562707643102692794116681660467902717486163835392703699516947106745446544623211294570472881157715453721838617323675231473945100468202060801459272225584948795651466667633153997279944158624558456310634023834325999831023178268011840099564!
 1332206663777979065537969604881106919718876137941543824315213805899313
00510216407225370358824723748792099648959705582242626444117612510549148219684869324749621292136358699159105676898806487204287544415049758459884214454736725156862910812869712723439973260272868183623458363129283903744815355973640681255815034364659834802769347103175671475988076683349678976222541258770138737144400422518409600699741585504983699213959432926613343799976759243868935836026374721155789769933007548047711869275420627592195301590709275903981638679448476493852272976018742577512513871889059481032099882135820816750401096609670903398212090804989646481643264930345144220100171089551812647257644334814451922937132030786520941883492609252027962657365702379971271658498395386284890982014651634039851475488513817382111389591247455265470576965786483374231769282232214215797988359857779783156701429212992283073506656062161265342427416596771378277747631499009849255409904492072472722970448938160125726434444976372173393323704617252659454345417082381782182896745522732049224481287316390393203!
 6828261687979361939905519638345478601977222520570576942031074944185618775631942786588819938437067556309190085112672000089624235220574827011529398457320391490884954572302089416214735787436517387286226014558372241028638028323745676142224516470892216242376609532258337095878349174972488694673114012314418537532685049820324612183809286752662869835429765941899897873038239002253638682592986329988285992514248204322638437781518611532294033747170646279233552837676002999738979710345793244862917676238125309601222246624681798338786223113030268118952693603163854278011421535883746771602797277853478956059443642872343346396955373675045706930880289937325385838410438169633885730813705216475393314202438843694716420435128428084114179334520578779083827194436062880493831760613294884055579852636263412996649822435283260452805187843574353059206612333610249583305618976931842555814654690493153018817630164322905414367861792887598171123180074317938973661900982813879863739133575731592830224790305777139864!
 2089129483849844223452806734701365261328860412851886063688840207215880
51898112989881721306965567735353378695494934364820375613265551560091680062783817106837468681306549811483801262056371275920917217908230104651973629855143377736524337948407140952100465467468199087324482541330453697735600035497721983956774195205262155449300559316666456700596793755913184614098790449972624343965605482896202402922535577436812248366731259319323627577855190628292091875325273656770297928714520002967519657879792342411261859810563078896921455337128178317444384829383088727359836516793607279567919598711924558060173568759897123355020795889814318551136784181895153463043740841601978705355684249686579711135626822713075044469835047374486952953233693572372080589280787002398508225694575366836440023311797918479349236349201636434455517780112139457685413107630825718760239549559892524388948127082553686513328942039342671331217032279549583938410457946378548431703970250372339797770675999728123886479446179714707031482630753420190200834006922045570579673145162523436653998766472544608428!
 9266422601855178615009901893247340550471063566845711857961119940326020188584087604626215477974546566456985822501762483270867521125412835070247951712100079339543880018875814357265668449995834694053211488128376231697927682543848858134933775135620069553107026042663231300293850015586417224971992563999857379949393749896881175335365788908591380706851507551981039767469343432686432885976813075617534096632555327672688711171253249320242812397574885409559625072050734659587651762057595146490218310733362832124340043990382453073206569652466009029396223681113659971755205145631769844840869365995673263033686623661661339723217665678371249856796869826782124966784774537506063565703903362128910633048652642120660391961896114203822197294437262661833494522952275767906171474703271290385690653255144748834814646107651596864310982890334437247971269372556881358404159708524538774829954070050164942792836606900443102443654440785454831436897908246406533932803153723475721921364949433012891263131470059494878!
 9614664893647198615050083740958181883426788002161033447116057525590572
262
28673721623944502048763698041778041634793376795508287565507168183813114801514697847520576989423364409119602917373897884678426370848164242193288350496329997441750376057604382689382106890727876673815120453581030038338053017859215962119472172743637900032628923228969473765945774107926344483426569670983368625339392791774681546193478221688355810510182259843305930937080808015925059580891572853436598198029588533964012827377896433318629139836920039598946999201291240238461537635727642116110388900170847726969458542637347941383509980670969872061712098484480129554134952281077122288647273686451285854219641544396926948486606511627408887272873093197912673508509981280670030864894510055060267898557824490210462105782618499527966043518603031959846250807462298478166741754211964299468898329107262374767941115936681673628843202946248796128334905286698135629524886115535190983867356218174593629532212087237820612504285618347321431541000299461390028219385494000576754220287503082213293485414947697665078!
 6047450004223170224741941219267483533238672288724740982931147696391227782288671572911947994235995199298833361933464902471124014668054181468727050365840808586413358866592685710480863100894295759044995728232920005530952080546352969594240858994789323811512171334252261118875921047013754081787926726274192928790974770284786993316327987609728570169479250892306074898016317807250836797938391537727942351454295608841057131697598158149777910189524731404827332545354517162780204238104235431228600118446139946980656755511604466958865716277111481939440230611290700997677563424596014544226208594974572937909444310019785938111360362575267143782153912246888624716728784619741325322973754295262780038830929240200573953917340977418587971789021334593819280093318515575972126525523686571661910931835791209948094257836523562116442469649064567619565850058761818485218348989373070525457709038878335836979496453435071016342250058237282318515516068809521451163728844345582194591380985339450220902211741201005175!
 6951107451710769101136087779357331288355237057597617441420754093155947
99906633634896922659243539123114373290877581168261537621217089086789384027768584981043764636915274476679119586186728031444517610702615154002970448177190450261499520472235183873777685689033038969803349582149759065659588036245337496645675873245990200157923923760087553428901845745681339691239527713053010083274063307446070742224685930661761229947104162206239258439882148108195895849159067122131994077968464911477675015558529902305831414657541809637138328646448978049343987456828181194848842232906209745250490054898580627412060076974126504194412945205245851930051883955441860398702655158251737205452513693157134207615270642573282564981554241006017920578959952881347135991584345879730116099507607074496768735820717881434914528406321400684399407145349049926352572351363400079978643874009751045233222746294206610031373035614072215741300719808133839133902707656434365416747267256131564337329684199569180939735108473008783284038293001699781892687778114642923913093850880879205275851001984863410022!
 6518574165161453283729284678643381260818454476902457914538594373585047378827853297417851420512190800174950555967091841939241065763372262303281428304786591990836753417408423570451333029098908058014406789844094612207716118791328578232234459651736264147249775192766170413154473001180738546198015422010468779492351746647248942404914922939955142760026684430254919149703775060575658631176292217156526573812106158273697440196177479498181113174200989349725828234789106982526404467186205833705229001184665599650101266874816072466244832902213937754235124612162988125254310316965560129514959643966789397677912319003161803287244661320910930928205319712474701030267791024371948168875484301003343273926866937194021554978302283754137126881141230860970411069159044082067436527431931418796178360740471927827444797749816813393527828816486685489611800177206040140514859266008924538912035635808382226626541267695649186869609967676234188564582450422255843016688398464487562525695283394043731542966230739763496!
 1679874167512414806988381932263103979018410885956161201340729165821236
73901373763694083548193359114275756256561307062566355774737920436746772320984319955939964693339544559253494680504255873315083211379348854719001500695081178504867728729377469275478452989697621552627443259335741379109001733775151494871455094481496181563574664086145822140029177144813365523382265974705006723828021997452143606663170463016743930485773920162237251474973048507619440582313759318777933398464160425040162577266611529981522159000852962485737939334587929190229168423237134692511023709355954025174249970336068911550451772025120239284820169124876943425618693692819082734553492297223342586873228527757745251951654652373553514349588813726914842398114121881646031928242953612540543973751809932008510464515159463422670189888064048270192767577812345991809659390522840465367568231490856793986225370814053515115704880907548347326132166993213674103698342725177483614238990422399297852356203980988993604136962425489280421034808148004117169674123137242880857557091609289260030645279073079894038!
 7703218020014753918790086240254962319482886592328039079131537926130272057549961515023474075360247146608532146875799132438348573202779573083101183126607544719577497983846031238889979606978462303913980261848057992019731363920724594780809344865676425948654632273078078592062030447808154021294350661834167238164650153901539564193088099447809774943997436578756715776591859906045842682686685643581862100781831859422358698418929671107436566092613652691458698126158883134890943503242841752861812706006501424342004735299133821943774067072639177105715848288333479639605287413004909872854406504734511077282011342471138584349387427810977180915209028420439515770311283555499355548626125876237384125164412126984955713204387104037058775489030899283559112063306936036502203219578324357426271010581618899743111792252966080668329374978072192311374566164833924276049661138129043406625706829872056218081029585983390201040092435162234676257654152026618913477668005053374023266520480310418568568537824779472288!
 8320291363778990295576192209371767917639438522160940136981231966145570
50880795504701401590377055667735680065202623848559863767593759718883290478347967698997726824647894571798249498339666907436527595418590852506952193381122609117555525552238761706741252697828836888775477480758659377062537311303120328300213363616403016297611815306301515317766604565590368986921058340919528552328613341353288822371746637188363229623098196436166170749678866620843125736817312732880164673097637212372435655297853621936831149674253053073468081762024942417155129928558195541482062749422856520760111901557787290731107492975898371061706707047389361070477418371562745205753621739415308773815944643697670736941143471883793870995970167289063907616271435406963551565690817605408991393415472749057505925568468345900366773403648611629730006110937776249061064980117125413804957349155046480841145624882258113790886130371155112654469810458798679901971740334317650079709383440098496390493115429479542530553350344642621803663288500225051341668950999127761245378082236282893227347540859903688004!
 8383611587284561336661615825371246814543387858723047390157907514963164098204859655911728526719707626246213764464332404728838855753452634565449797011825727359202844975293563251208510126061700444012020215385053850584516562890494772220182417069122413080851429147987928248480927812595732692807878179183997436299946140486731605488466790068865330146567998661708220056800010544921103890377831253674663164612924619173510967493158742807049606015200447119372359068261115043387564259030177467913920997464922973321408271030068758715919168374692922961675617399879936483511221166309310006731609422989089484949081811907939367907613334931787627877125124997313762457588568634937095603126830333767885267014148444525662539976069941904378641572978275271875041331436555997608337482045642199423046997630234779601577101998747369482671686111232707205272055880526295876149629086939255629267415046973221504488624436000271640267553623452614829411728682320101752361772469091155170325040190888226760984837279876080307!
 1026834476797995128452958976942909441307781876496471594156447637715295
126
65905295245386917677045553716122689703529007260280535346512362936337733834858680578127099883807825752128196009294267381324799738560175665834814540448639224578250000300838183500602929502949057904038087271070317061683495969852132590990867424038017131693562481251013175479236963471895741990125065383842151629777300300044776109535988508722977268409326212475244093801323774818757995515122255219049149375411810954325930411075546047774708196110365680878966695174787110138403672219938908626123306519255078024962725120424862367086335577968713393906212649863307349666650541662218553151352451533730761780916053915188048628421544993197804278452160336012076779670571519979345069461164538978596122134763535117416081505717970610464026406795512793439559195969205878566187404508477997109779881700518712224401856899170118992157746986316872709344905186832264140145933409574561145280674398776019687405271306090685859906298779818221800781448224056322463782462456355658852132274772568310714623728852201302127097!
 0694919567697872854037391720532630236080073181793728357244066301998030987532298577700903427119304873085626436930917247501100308841019099320185162381427568409596955295626039260107811885301990702549207999255743506054993193463947755889867438103146103421457587679059203254273205133237620965479754529499406664322774308750397259791009309091254061538453965481541807275590407289470605673222213595289953489162252134796003003453411914094467997123350278284308106840592690276735764491854015698114803566210066967750621073215573148488449441725211227970769703105395114836116710644897513050946182598457191645255316626093815904383625156029987703751818989809786316413736766254275074334546486885887149933510723118964875109630948901956192718833672315583278239366505818010884423960329652676749183840875007620264596558667262757709652206904700452254805942282068416517112147975447522112581199302003677679821358428266767854499793321188322617142878676561276672668842090884743632606275947623595282393910936345928559!
 0255060608249993112849955555797086861947091549207193780441487469981182
08622292105886581928375647513634505009671083027765190819651075229926510858945583431456769201182556249516682331421846250788155317631359217601617441843315829207180620659095286982106926468919170690677006378885255043048469143875139990356590902922011822268527858916718427421852039639419249198713547013325613179317783465779065451817550067456813390641826944622944031535026620746520471772712354611852310940968544272383416109032474869188820683694389049186168518063234736877687667026254132292855770169879858476655132201364361034499852829139140687530679648383369564932399063706244241992732566292934577969307760425286622874549336242187956158599411178253109785027765373439787817938254091808203724533565220515844824771387974368127825486982863568177259870709420103528263018153154036873280425329512409327445376541561983821069711708492079259712090637017670840681439616597861773890104748324881648313048621125273250467785835015173931947220019996931271018641560950587959754378447944580962920709818584057556077!
 8504340093088954026193385543563063943672752766670293037990050862709464411668094027860060939439605814304348747929025836308094997283219126134147526874742721721901047799351890538808638180950695142100461370667479991921394224134917377341785631504282583039639514865294343004796289884158584288719697703523594510583506376115141890123958977694155572020683490288132630242254983391431641564575174750924551363642845426527844131310455296025624985195460452703135145135397254214817131479089929523741709165162886324301719890037368026770798049445187555554874831297951491520236210783034321650914073255191550745637201495458714307440011636084114966390623458003888552089120876750651740577331191337211707022545638883117390965339576768595075348965955723594049252050410575707466265689259251240092625617495989974551514862524994754137817051816047469796533413912941712285602478468676939490216142568312125098254104681960641879262193803424312998553497692713941682102196385756794713612294986934711363342001045930698426!
 8814809227248912872386169761736297477419813586778052518018628098205747
38865745845117559508770519752654859625080327012586547892872555565544669295961427417761701761974029645392850849603812666181250577984306632990660434604875828528216405169467915589848192849330630348785688644002544846642221725149921826035172718009704805123935237213569301259927386196339437695759585026905728297588392948209902620786754731230236274354259410692193885626482243787582701953221160243799366589434677474602644288554746477081555485310670245562819821504842895334930752991361725029554287164771418574114175134773153339812838755681279938678059650203716312078220160802772126619097868382633013213772147663292843591202802039459084357206745913934468248099549947429918069530365689472840141926161822832865771607453752741343300805179565811976961347907963741912005064960669646255790586840580001273204351786528625398149490103311512432831866179915689880476085091947915540908433561958533317639254856145095579771523669854549346028637611925438948010979541081896480755051325040134588543377007159015174941!
 5932495304558904244672628745004055325742710029463234336378435965384673088834319825365080315213368368782897977755682656476885502586410302168387558835733148789492392545233927782833070177981389615196302531086160276812079093943074039991544616109692549511136063285761108895940200992586769051262016001392186086519663071505852979663077794421599380819462119847909959301185167774901946436787749892019656235956721284698667584615592412314969975655745285206374429753700033134867525106172809635044661233917421689460790862035791767665431484463586182367447851803685693021201109693898452594558332461326639044216477454399872990537332439828870431988597911967349148559773977490511921696688536539572406399560657170539305293156744164078106179189000926613314085891084206605523242584322751723625299232220412767884434272668290763959982948886999402214490072426500919113267876868941086237736179726612655321107119223534686870222314886743719705567909895793330649727054861789444019072947434983344895581690728397073947!
 8930865271511090679782161428745812418262858963839925128054370541825537
04776655991536708537995355010910737402719150704798086303723577839759475955055407528641314642819284902671760342727181552815846188815806265693697294791818761506940260292918542005844340416104898248993676978357564432316754823339687142741601379182234530126730596080643562458014525034279518081949622264616630024851771380743617141445055899904229034274344606886031686747182958999005116617103996718680915622355361144391773939186906950255231304390724359851762567636432215412885185589490983210588934995137010562767500384766852473503203351672316438309610953701566752815577389249277992012681740775379008716225790774821019051126267126767881233486684293608882558282736161613033894574962936454591330502271903174055156359406794094633333386260721006684146971348257978520434157777859406881567445707018053119118473608097381557755775001569568523183939423447586430283117293467132091761673757514655474753197085894493826778830808070073881754117820084608326590991949325188495413389818361032713500332681873104638640!
 9338922933761380553646106495897799799438930095743072236110044135887314986599727078658970757425294791418275118595628345193331278437997096060670260489778810660769519740913860288600779889958469230622989592312185580407370525381731485546556540200965725235931626370581446127415224331402497877364255650523117115734776225645040538306838131170678184493609676419720759151685858096018032001237988603957841593165618182828362927229872529278392842930011201684674273028241164668693610520446398823207604085077963101176415989535995514816052886754795069682799172344482219153602114648569238148747535558821896460177192179437595712297236415369509281363947474970314218727837494540953158518965108083617748453351677255576232747290658482078815716673009815251958017035970339400510895920249446491799740389647267528929409310871567714977826563855802329625224313182921340649842664722957964215966229082720004443716067531344617152876523962653534579380297733735632507577201898897186334199614307964326631256602668907344288!
 2180028607372589775509647269090537812750776504814047312900613759995926
731
62632933556212038499814164383221221931184746936543242694084760134636495340723340801103651831824289088157114783898168054884177514993340445724969610032896047341821328158416527759720451839819146022398645053567093566134651294915458233197561794758626398247555984672902920718839095235931335279134627358791571330033270197930248945056709119654702865477004872274068869700963788426906957257094046344272731653910205377787020654654344252111616939859320789979124801023567992095319311960274257593311582955243726517252307778287079523048511980065293453133396309955803112376701293943069380851989579311813737916037259156070151876601884214598454398690884431696113119401116353108540183257049035471680167568543829149353323425089670220853830421893495470898089448245649652256730303830635257165893207804357670721651255632085182941122766026091716938807067562556008441345810731395316901851091103744957952598073909561925919936851415587304458769182084366363682817705882571917409796958226060223918014252381839958743486!
 2231166576998754949082813026691127006850142790766252754772376104068672599736390622427358764724778539845884669497573528763963381519470411381704560445081756372706971712316167624551261850194009713305714021288668540836573053611379413975385397411664026163627083038859530693125004798488425791182819376863148864846668348124963003086538413630854560633283123204991004835593017428420695151603473423927859010345249822333458274194222826373013380288503441122204230593278563147940289935675566141184802759950375415992764782424416621603479969297166775084878374965811028414231446649719531233202841117520801832124603798471334681091470028162735595720192627111031840564741515201260778806582880736483370017393087476767770512738684287156639732683766384627414029420122137979639367219213499706985879318820083117608262081855610435023348441678913723826070053108636184354917319016423601068779278232008429785561561441996284592534360480663583824537059076925688002011580168546680299196091595144319391952413826285553362!
 1674333259322770432312012386186849395294140424727608976556337862681005
26089635398293621265822036925066841542752230864850929439928181931848032063310453311398560920769751170616782549361757700259254534393213666514257412901491817526260379666750149542659543742549790004838779558284076650583553420768900636023605523485457943542161065047060842943300107630767401054203528673330792583913895802480241277771042415109446557398944270419499386488585213941443058700193925814119894599221144597171482636289181547050090152585805708676555227458827238057846757276242955054003736188155182603036526813842435072153347460661185642725969987970181955102939385113075461940895498773683556634704717231479793411311944672414055919874596209281318045442409089063719507926132422902116306909088259601728982758342481747627944835254446928972079118080759529381092127502243015935914775326868743792150586655153264711373059425848020397632299435093746945059034672499436687716815052364901907066203353869371840728797560060393900197089969540039015919948723331817906008655348377226012586852671894524718635!
 4272017648464056303913392875733329887378100761080790764299591671514908073136747987370196087379514138682745129354167570128872183095135840057252251412949279554729227540788994411536810179364501775815394730933046303807294688704428368311871924168920018833467530213694422030584216911870075820774087111885749461581299403673955301897758801825927272291718788769954908855742551097723145521760146517054269555831146358256814262863951488130074792069822268092269691089469701865684490277048312993918954564987819444928533764466049909884480772319842772794084097493048073657757883435652983675712844768744354409400642785267356111054980473601816271319929822508142785704234579807756914765012844632023955300988294699463054881292057791939922088724826598914102904562402456911251248137484178566555204328005073695621031892012739415706782329198437736474606802980749150750226938532442291933896864310146644303758985478213636144284846886692213752356690855092520049860919999669625192055357456114255592650628254964996403!
 1580230678952545391574718244939644602562794294063888023869862935319268
61753077880058292709045096717562410120063261918322176918512510615424238683844712541667956637417437355923142162538725376248635842521976504289309938191312458364849600880777733144859391314699288099502597887837660226106237120651109436758445761972880376479100104447673261015740617128547624825396095087796201265680395660108687830516790508695899592578569814036998878651306866685594971190993299775193264261379992487086442584415568065666122863769258378714304846349504179527995128491771923861807028047450525955842120451376843584385926461005889172409780114054978843142865569175289319844710762301342299695112060106076769917506216106240400178671700009507478727448659605557945584619545175811499130650488461106755521206987897137860139053873879137657848154552436773263776395009079610197149561555143800736563527576783285549268154304229849516385502001789484592278412061354586630790723104129729522457082177199639970924726896334133344630539724509247869781670854138268345919934395639131776393985750004131568157!
 2335694642545600414617245401651298231742692927695642456803968590328411905166583072684922956735723480252026194711545113088075062159159922338748647403460140316854029366391560077486718453943929914867821248591831779197451494197619210622919957866099908160780623608879891232492554346858518882677295464592488616495628044618999222033928333331824759510617235688708318179523154835356777178014350063108524077168217836097519448706209010322139776032076320717304010694730193187467711204868721656366316038128472842278976766336673326175176620073314727778061508968270984353522831239327497401691679057990182394444143082383047250971643185753084245503548272785581116342492287143351051931815411300154639003717300348744288494327043903585852713716244407440279778569474162366163958161465426447452106173561418850701880839635991169065880326664697487069616258790831657393554525374052654119249976547969827702577834208907113171757620541600810368372093963536623828561175766575327019662444273549818339751787437290716868!
 6817472593773709215453036997150127161880430352556491933450438766518469
20407133266908007250396463399379596613203368223803793794824572573564916079853547968328767891356112714221071892685700453581076252054679596910685652883271634117291591396573898391237342788264492396344733086028008983947096588598652623535713268065665410587266383914299824855642727057878969352132309938095288757098605998890116668094779594095886870526454621078797583914820815680501917636374492618693316525997546730046959304536242694084021505394677148386402201488646669449889888098005463828311963423915759889411451342285189589296402822767959031376927324302935356732564293555195488244366639716377680183010899362147956788817017698383243166614339066340503632978937924876126649733656509266806313040694108390369135912529357309576970547107916824395410887324028434516221272845943764906068485388747899266501056748922155205301516741731755044920406934137418402790645744560898065772660742737902007409125675041087374447188026934496325186022152542573120402665825241909888982584772721524033411864680890121499367!
 0884349550810438692911044458963112112142336862226927066390465874191249215847355004695096875524830148004760111041631426900838658623078103396092406798086046423467457760201167877784882293474292752698997203220474061827613682357282843196034580826527796311097584005586043482092158765072672281652559411040779362709848272410206653129979885949201221789359463139486524280267536071164909145121728593724776111418759574201280611620384614334802044832567241703434179702658280159477918272055679983833449767051383977605961209370900343220127805958713119405803345689642027873886987315055379451445942618496287374186004664109922790629325815786707153350859175300195339871115326580042936351143373001857681497173865295973441809952420394045660641965761337138425551149639835399814867765770082437398631983287791406380933502309794391516114603013011895585897179460628175352035274839344830393118258538199968003058733928109573862088877202317843534746361685259630306488432025192214358728952425458009681938424333872451802!
 5193452535488772803005997046212419619618470096175770454392620334735890
006
99733764853384836290225192611995941165470081830463312658496808704905118040416871720273173320026713140145983958668202300803103066439740162311819384303531739832606318503624487693786693301090431946988758390120980315395234441540510449330799408230848036112702803403301238137623334805142304337697608803949450646553172411527783104626069766686800044134508958134044403010583049881416914393154982024638486425954125069785387422750319306800238100704721678760166641617516761430437719688189832618239988862896103728826024759345226686072015409592959810577782914314545897394467550714827739528883773905267587292720685483867673107738083797404345232127063355780109326523775998374392081778947409450863458737790776269062125303301847165994367139710975363419356083931695583188524164153060566429897172043248590929689116851264752354745123650360219611534307975603514478042428904527631006482505113607516115763221765594701531307731266309735264339679904490706086668693954674301810543352352971890552933108461193469054204!
 5288993327873942758030131139599481853994150150773346544318204883625098145197609443432669016883136555112478585293153007123931670939890117869001584738587367381700930709003262083702613153527349743277353426001788956527897126831249855141213885250692694331181773632874171816851768598741140939526771237852596994680029344302644382960545599985315950032612203077421077492802422308323313336891787642011181198129749298856029233009679882137319159007159710642163476480783494106907508818629578465390714862236506849034511482382236217897640643126920600866514110928290677952130080586392880854339856994422989721298373703372664044098759187298470029488498038468350292838500323293605304599877488193371687813474892900087399839707662356652596456239263173858761046505827550280682785044914410868346037356888055502193330879293458150935598987408982162204300967724505319329456203917408601276495076452116545057317176619459050941680224544719673922659429517810243184528203169499820648309394672403513801630708799554180772!
 1291715517569524097191970688660462012365910882452992653203151049224494
97459492042081604903182645908081477268305570265310954583147443951258580855214903895379463647026686074086055288664181427681974135788206887932437303884651834547566564803527538729838811414483084748403077792660320027802883964568990801406255839258963562267340738625981089880778642793927635260239321600268397585443329625129255586296608526858341367202564944528122892110679232029874590318092523312097192397463223122980926456553827466881462403889415471397944477286416279747492219806384872509817339275312305630057322078185090875724557590061076161901562185638824633602279325784168451086359777253212226868593555951089943375986626240071490966972519360294371013999249522919188689134011339848619592983162291736960611697848752615483783936829712645405746060948822948194910309088259839699221643722894174374873806607355871696820724997624039632939479060514786917117654518503106457479026611882906793919558274058746292220749519754037558343727509839431581177527746305912946512776754249896817710555475914133963059!
 9038680421544945810159959878334781792342566956236084483508341753977188928250025316734347767791124747346088906513479648038672903911850604667237327568893685800052512220396441046117276744246162056830456875187301667248884547086280384376567577917562906551908501947424390346048555542321350824898448736291810381082517385266248680991716035544803393330518461373716727356208698653162506124254153931589753458483341431904471015595562150698897416508373317450827688734283984242838945449820675784639861502984799024652283293022772596502112225050605399364999735641071012435256246313048118379587373971572411354479635301123574841881984662267398258010107302154697036563434137430438520563146546593458783409814882442626072510375273480723593171303004185264824290626995092772432854555332639424259836360164407226858530310112441220783260429055307623184318103936177055678272380948982154386150786791130063188898354704610519953566489722711039887210717933191502620320464275898102480065482347735597194208022636458097277!
 9339119568830539811018990636112771526680464605866863209443377045337878
78131246158662674219666881190915923849990880223081196988581277943433086551986287352645067271767691484405641695265939841222778343607989827488614528497242004371922257270824686402540819513165603850602989274319067575066267855411409378917600384527167072572443371112195684213951592429320765362524084608257630544679508747036064244158286589116133464567372962379332167771835936398282237384439850214141229181835457007174391397308636575637721948724713146186173665243579448063400217903495092675744682239648718646295607682660390437622849821539550344999992803947853807275553724249143895539296255210237738618557516520305960271220812314239828966360768089078944967231826651380365558397995534022646306884107092249387809640016993257019012504135358147696675226208651519487411823362684427679042607682061328433467530421383540984402132591739661378103564055366041681576169088912861268688523023144960029322873850887711515275791976184286675787936765791868762879241575093527020980493546111605609867484771206385821925!
 0468923543061142008298190843994590616895892675017901989986820402727445815423327219050782239765925247281840774636860053473932292674650963230646597238476002018994806281449207777767966416696352792127337791364231258991414150849256104059719286058417676865030673808548675888222251576353994369118410071654248920928767771239331092885888082838562219950961332074994080237804125225123140879328581480479976974447885027546041863489792041224909016008967400247890292470489672610106370913528496647605094161322512165932923355526518660407029793803217625007563208381547684132422713874998277503186179181679924252869833673257045957334824280884879509367096738903904601170850681391876921619805398790915506034540730567996897226017068832765792170117283110843615725326861058855003514167733937305831580748140091412522579299107230446499256917749886642232252897560372487307087151046910200443873680174292493253268623425936971486753129097433311759294743697770997577705976888330829110497720426767484703941325776362067079!
 5237007321439507021847587842009696161889983829693891494442615519089287
65410898686641167449867019470490854546066194210131343878013138144958270111789981322050685916697174350175170756752456877482337468946820975665207596016651008160357063832368406299597447448178896032819359964863518557583321481883442791408099390108635409892526628305752584764014065327452652664569451979984748087483835038849965495890373237305305742260724357636711556667470619509257936108936977358969194176554616806150269557592980703034328771740839003754638113576271916734764833541144730043903130966504260189473422035187544597751723192303210929475296952053297259172752411475262875180979347006555624666573848600309344981413039827890930404121418870384480132888501567995505340965316137962615700924126565127670585868170278117123888248553247619760662943080915587361948780426377525416777921595678285815380770683969530843879556551601994120237661565317927451772058563931036040617002995078064984481929134312961648435627281743209085090681993924814273953258989593916764061320296985206130869605294925464474430!
 9811089491163105341939410401339303395972600927804794783578801586109126821488146927325200625005102405930949463354051079353830051194116474249747229702374577803149984372093088272259943080975588101888121249030229569214319823524700407861956181090799480630446880466430507851519577181146931780673168578259090039883934393155706373229612059635770253044490531043902853314635742440336984327158906460878404638696083141422753990754749296462145975319845068416213983725227016598300130685163398798885018105329120523524639924750194330354671402045251510265569514597024369087789914974154691865749181557421157475563325073677630838013746417635998012004983915053677724905421730122939059478918878311294639523357174421212081455960320058527531646155895969966686772794556073356422744281829303441441405750514191659791544522323569033533633811754398934152344503953175775833825221876999691396261970610350660572982958447632250622319165371933809037226279961001840318658495972979317875962142003970307689850279930425951986!
 4083802262785773093082086737299450789297104038317491349357087338903399
266
99524323103626213033478853372540635730049441548908615485595065348163044455409206998294276989006064262475122191010571350877527485952620091300014945519181699260842523942575625740291427781566065967276618812280183207131646156660591008059711317836247652215697596884116229484685007040863990216249089211142357975449368064682411887250556303888211065457264777980414995982234038288243421506889335739742662443041532689147232035421857226914897690678852331940356727933243750159304090345716793631341944886155304164483512683341475948385438354396094014511344122714131648499932919999134457412755351700525217216042917496287843501560110696470186944818521117926959888905159733870393225153126323022522546319269723122343559341686950055977415042952633957658542861501233433029854137546942393058120138385956824888237538447761998394490010846527954564760773948405470656199191527050304012300138718585305597316326036998038479635160033838241229638832617566988182569202240124346114122752387523500526166929771166720733755!
 8370388247159817963693475756171656712707513541793143446967512486677699921238849971006175217984852165399227462137317305905154583489268058510344536478886524209716066689088936082043593512662849315481914424290985437581597474699220199435577222264685314122604361214985170979871405041342094452236598694665669710661416898504105279743064957379922592283831379896817607827095914028812698793807304871809180226288954123417637657030501406781576097811166804457307671373007229988787828381440919989428643091215626721171587509429580312390109613478744179056646375326481676931341973026393823630401993296009941042753120960524210242914565426047832242716811102094541677147064328648124800595824916932192175378615993318673020912122063996178125047760557490605307841168846297283192228662204697376157237627171679229836038029269536251424265455571447598996665442205279154293781853245478669163161699123627067264945121675310688301313042512321459125409439841579551191173986179376302312143827092453404428173216971095213932!
 7405044597073628442081058597859107711752826604920519017725747174615928
89292407073010659129096748289270787872768762934755936578837340647256807407199605323935407497367424259716577466941119887529120704188562792504949152127157118688451447331136028769961922467187634912717502108246068876549727065441230096275125813138714704611217944938089195551322480200329152991613900402565162784459868032321701963320828167514842441792258123537326706118555942935336923536122624703804449852737925464146113336596659618259082135306166547461045310957816263244911894840520276462587451333483567765577072854515758822737909122704473003354700900597442719587846544489285852917118988002515710322280722995654503456303823763883660626599385949902023522656439545034396760242651140508718707436915021239506728324143356432628554461483173641332085080384004694686761901951378525544206377202682728275458749637778320529379391713368859607241151926900963853315122987224412759160814155754092610571108084851484282945915540877820171515415873294210277922815848472762112817007215196889636787219282983913937999!
 7067878672852212696570046375557882021154440317612265862677342435408838687973203786577653149422944699198503660246890455442737184324963858277471261260968808209879622138723159613541798687837682603469982695789569341836471169505183776424507627237659818906059227750016529409558212927840224979119100026759437807880799914725555201059318799142320301834396854224721486249060413297198226360047778385758904275679943681443680489561214182871869491760367479582201261466568228218722244581514619797733334770123463232588530513931885768854262052902809519811837746792044708204893624746003915982985552358887556536663820059713958053484911225450867480102664023010078182891908073731434665009672332492848401521099886319060764065977039009233111986130773781593130661868607653450683501718112839221666265364192576097420514944234280463493378519069009448325666229574551721383804257030834092349399427437640192960488991098052040244332873094744978643403498976768951836506165019910133945173790306588003855234300167346515653!
 5085302715349667842254603176061864038355370391553137585514863807706891
58491062829331895291501579075594257668827094127725155048623650078130273971182340529329416094181464243279619142925635443307381238912623753564935886877355747316224409143819106403641009720567353395863161326352726791522248197028815182860147480795531448860610550784325451490856782987133404517647767103488863488680842620737641302708109784454069876101428214460038298400817938560217603182599731973417144149535189268131029722774652375530138851696429068273020430261167817814388711438213104450661447706783931365998318654893396753744628800487051452147154911626800688310233057361233104199136709290798265306864464979406505580219665317697194381126303813658800956352705287901549756799332366454508039152476759834553102352605973820052678208677420689458501351590074244872489015056983380432454486205828834552519628846203768626330775331609058965771099494867154017295964960341900891725334053039445385325909735407499855406320703046979675007214674966793837366076942146258645941509627475605773673767000971176988701!
 2145178902797897957691472192575517012380996780346062607599619391712410489068620239709414360387531739799883185239835639754347539004094203409180618709690004048528124332184277077710022620196801163685925035993617713398335576695268762863886877738012669790542188764448502526083018121018257791573465553383616907085859134814753810617737901744601369367976880667826205099376258750787125410243341157896709049548503283148726551059792163497903715777325136992490013983461267177855653125770772528712089030119671227700961873741072453614395683073205840776189690457652794113313197946579259779532693669509010600301594769035116396269885338668721028316958706327584873016596465807036913729839296393910977273740192999964863472112227259963880097686747530993132628051648558579702029056778255253648262719008763183443263936396105814048748073248987080652979210778844299043317210896244710358338779515211816982432903633226653281060208785330959375494286331540031618842492764849607951607737073578787248934038854774338788!
 9885676522962718754987536053686008745464434613152642676878098315489685
44915988705241148845548169889641537408620273969151335484336162930917353911076623626829091798926406661855424619966744700526171972246929972807178672185009569363502759541747219330511265643373958604765709420264469483643602311600403862033207708715552520658394853563869458666453997852379646762484866497528561840523744148199927505104568239795257761428947633152198012953807319817237695720431830651983757004701227675342054169347005515409234239116259353918003129019247070400696244767634366427797597916450217311792873902483381727677665550033018780307553994855286636947921548081263391761484558148047658946030105615216447093891834098739909838534861923892482813797911947155755577293208335455227577402156046925269938050165435244638489355574544913929682656171324529446378718863786625006109553936647731670867773128060431839290195211590038400172006436095725901073824946135324197031420860823112447152103850445990585962383992586913373745239362534355678557273453909775062580802763223732803767843760848513794393!
 9250136616386589308582619854609206709273165270890445521244884994082771977867997582181217443255592776178900550485953860549865403801926455560048659311113521861760737684085733742989526447312451945956004881341199298370650018830554420141512369054963337017613098029039446309003081267661437907222399182278175711756755297306895925265852231359974727155139913879560947641026473211835328312145701961098801105401222875394947763648598887532450546903780688405152301584014443362266571758544659073600115700936321910258879526559509785526561078639376816565856807022509770167910180267938287108673359793230897059351294212840205459484656604634789004261070428377056491576617778686888676003675018017185813814011169965792062288472348581429502969314419351072457109320817169040874315241512887797722079439694371463351001133986812790790479423181845387500600418564363110909761952789252241192494637134078013640099488112501195254594535460719665334030592797755902897724972541236451160969010859070474539241169058861467714!
 2295023351960952124311434997096529849563828552754143743772834126102619
326
46298605483927082708210765236660265245284129878178690111231854121865630303941473590423090829008491921981851535628601547217389260583227266607968229529271190770563021424958261379824277351579235037990752901828667185716141664766115348180474428849385209089177305106239499750115247774995416934670449743664498497599031135874258435487170003946001214420606073167126915226078810655416383881255669442336766181299322463879778354459825993406362916108277258970535035367908685437768473034064670842177962277426905682847440314523942839786164476518899913122523191119242117719974761055324028733583628312181065403392121199870479541172301560311582593921001375722720569165294408529793705226929558322801740297636879097502979287009200914165670865257770047024691131565581787001235167301817002220095785097866055092904726447860357258738044745011686018615039732532941647499265847880841777350948635743039222880032814106515474943360879429054802740565971755786798104978349766073528781238929021991147952236322158929274705!
 8930364613617347015065457378894845145803420516616356688086116320673506143161368129022380754193348725454031940482350776926849804956572310719321572107714543144167287813767226772926713215980470474983808068062761130939280900459776797285512363894640133268496484386673233642989414005820877389380550380750077690320776615783449048603268726419455760771616561275110011422490697370837324694141111609748421585056990743420619715916544719180004055961248140290642996622849288751056517932258214873934637435656184528578321534302155942519795790351202929175339188756151986413402546560441715240028839372014257394072412103854423193767550360984399556348767691227738152045062634020568063048215990269640260130381224731114738752378077940354728477520578014118581876076566930138771312048451265047525288909185681854919928164307169719490313932473580306799678101308606252382537545073319120035172551501406227280213105790773768361275515593916620996853184541088796365358321231959430249011977141762448663373751149970509727!
 6000792512387981777304001821703276045629944010390174792679966724014069
90830476534926552711821558512776072758980174330126619069018210566926467047091733345221501559360361505161150047883436352682888406644350997951080208344220860257828437081761693101848171566035786879295813860746968039339873154585695939805105280125841927566802449601840649665611263515091112690877265873759360567561868955432679288058356809717048474541084977580078909283507240862511280400124386630260929461706206696365823120091911923705122329289450347395664568066960210673258928108408454748445831699368794262853094775161511486758976038663990603339824720322811470053902425785735038402361628265851337877345124236791274462295467981047465353847450116465388968649405963509944383999120932825602925698729666544857094858290451526833937526676362912159069556167286023438650977739116715383220155217856746760972471999226587686811861459360383703794894240079275380529969814723802348816779799831854974696356343236496285455030132440104347640417267660941690737623154324148392167869420910904464494658665884485876678!
 1618865594871389561861467925456547873069944534059702439520819491881410264897320190217478810709950736372540439181843675265471722620734245567731568753090595600023826777308952318876022137592749866453475442965577447941514303197754263284993843092538485756059714656909919584320218510279571059284084411213157080579737717087706002092983590632915049044566413613639540794042833519033001616776922708604188574403730073780469113225542266132316414805625234830408471829763842345092496753160350130787905872186421699704073657516776259539764882409204471178065488625359506762621694186655188928800818280644622650617042705643707877823425393848754809149737849419654945230536468488429257523506141085586087643257737275957095545675555362234620907935244217222413368672137310542319555552318223180983585845574246527187140010018840162083876983599592786035629199316877654930436165715907121175039148158865117322988618146033127926813224079700313408388942281100334000769653744654902291669962248941496036669250450400832525!
 2031074595409129326134957000258418939782967016438998579544399082857163
75710758036360126985915142038038874139039830551115028684600443181669397160798631730306195504443186870719247257563159174322699210235062684465523760074515448287847916639684402548213133856696669078618655011822434856001817718931639603010116734891289250712822283689580330171386610533080457933775080185083471214296848978125335446262151961417790148238066506738656776121378985303768881000986421196999762048641209886034238946609165204146912653135830007779551171341805557662784338844444258398982203623542412720754155122664878293083462312293311920382886824465352665570423162721953282842923436608370006125131740081557691962672637131367291723826980321449995647323498937408106918389385620446798564117487670797197676697588823289457169647485441803506317273025415104647752236735436941702550187233777213753802762747563974840348502533584552222528472723854577729481584263152797869673775430071088198049933322804587862954119990857757396619966736646794808392458440401920787532628030473352867985577798912614262577!
 0984898208755388698482281679089109841704159820494227856867540296728558902170470581529343705207030900537561532124301641588670042395669235417760146264945273805668089995631856709037049206845118799450070319627274243261677180288923431157915206100480243967748273505617588787073146456562139768568616187495424979930653094318173270164497807430995321207616651387593509232831334828841292998946771785776765942375453540254557250031008139781839090525075975518008413498436694390758341348824517559848415005833821202382226099035623799550887561700990078125412701683720861526741859309513906738595210670345891155695683772495819090356920194131974323520862038906149495962527198107107857861027799372291385660434401539397325302488440592914049636120963139289181015402359658618306696310038992575568125011034881204624121752489669525127259390371153777162989561614131372450819312249435876208637388684606398430700244444386531040438555557608173510784215039447835624715972529846729851594263806434765031570643609120186720!
 4822194720699789919077139241580915477283393030903269314974442626137748
97623330643141225387695137253497873188674335991776573006944046370435841741040406422301315899354271243092600898602552597793716314998900129036783000597996988469425584708596972428142592181558286204439972164183749849887896163620836659105923867104158575412279971015598970512953094790120020716763991077026514986514066580860256998725144384508416294026480703060805139528932752642056073999560228358014651042748659630426330226683054698769806234017629562664330225471149050743114403572711669388814311754902263985954587478408280017966204727621052554865041807228167092144824329689514371182052080806655192033151049130747170283830960706378024558958953619284737542374623058986842334635137925517362899709563059089683955866562755069691493680943428311355647333386854288759999207771673906523894791186769679716566434490524047100424290870480335183611083713202793250493847551069251864540045254982263878897741683989574342628424112249598180915439081437257628861434494083282832363353332390401224010343145144664225926!
 2335060063605340859020624276570325112578559912951305725778711846063258988735169802447432954165847446469244089159625656213117466818005116896592219609792952808200754159324224244972623680457872546928367238146520113282645779337165481410066844860148676028466463364060697677919989866059738470430135124520889642880264978884159296434262115926318065390830973044585424083491137938929537584542209824406669940941652125911974428694838639921660196662809760051443054787930384441029221686259795969292530514148892556099426691649957914786518271625439386490930633078584525367008005660227898568322438137690478702889748880538147971064966728740817445218556110823423212166011676681770224488956588102741927951492040713680838289563920580887114877064769312656949088416234770852586707216308115217997393313391201964345041384892965021980584619503446406692759457371874916315275405187455055989969008359825911322153651887109812527912703652108474209801346461296977384737805209233428927227351006793038171921760587595926832!
 0740488240614590823891381254897164790377548438060282704456355412202521
473
71916898467230741924610468533363106991278185079521269390525950825279357464736874299203438846248666791524218769387049678066234834208041968265984318395702782388661429819831463610091309031617673422998839104795679577410648974631962042186624211334861957185868722984366394280505946796197763387108954458294939835076482988330780107879151839094759383857035725906330256206187194640823612511959475050442061086528313991298032761319925578086777075841883252546076861644031083611646065433208686525687207900894718094356112471480332647968333477092451343401850225088860484369179352539703953368338265742186244913131463409632771927478840729576331519584503554346811290461769649453596885783717130090602897072498284535122009184085285003026014125414185756973174063618501256706387126133907366277691786368384058533139099226817159483173776131045296645491729090910507597174060164516032989264059233676956926316124395692390367062490942759498710041084674453605771607130422661775260944380237048602447503471204748239237055!
 9144072373040672882951378156918866031687790756938433017225236054633529125018462021204395330701300108215926127084324099614954018646167218872397996888954365580955063598689961121537322766025132571538457106611685966007828015542788019906876938680209800193976164437422357377267054677282737530079223182619331428457496304014764001557426650225044878909797968400034205756561675603290064811804247237887515243228706786089086227404204834484182464103594673674971499469500655077261245721827690739320525403447990422750121557570703802545554418726180389975843035048850492621022945582610518356316736986595370052922074944756148685795187624126174555233796027560076261917007326122526192295637722642284966771794441620889954047558570961604165466677227869727806059121630202202340872685642746455191928720867952593768995373630368253209090105476627783790107262275879940674959665172317307820885623158498832158759515422882175831240011568353698635127159726283672294195419719454174178365509763811573413963704123947716097!
 4464248912397338232332148532618354712686733817441767767198146023689586
66483219596528986457882020151564690970135909182750695159847033628874589190586613237849790881631004009486377429375429913553753937252392860927508654709758364415153110224251622331461195067688449674846040434288294530556863055705141272073441421187144519180865228685751335524551090708557631672754274618333390460484800922130315902061314868233155198202074707365939871754583130116264551632940590730621181412871970737053520933877226537208377084406759915958091846012855912356408741737762440287791733507769331930400204207684059752995896063256639627938522485833238855650429155750290658415829056529348306949988238697984362158345617504298241722153855827576253614585402766476707751956289814682965822886191221529079785990976852144046003338267715102881547743773932564184854538944665000083249748365554500594436338988819081701468147687077434943742534862532464038144174174180921572045473596377405015623674302558606391443390932990188264671194199309152991314144928874135691744133163938300204892793321128505853909!
 4022662340212124846756467208824422162856597680208650485374172319637848818520253089142852160598212798541288009797697273674261549397838223630414673124859990414540205723918578663635643253400679958754902048927008571987595314514367005285163858496049798077354930758119260938906887171579451307178773329872038936068713186885320831569225913004128549863908822339837491363024319939634324623633870706028770060249714489645296807370692466235191315992309688759878156639185787806858018210215712825587293097031252369865825186640045704443361696140932120945380796242536042664806813494065926313759363688242925222810070287301466303071895831350372915820974445915482010962809647072932725802256970528524537686309791557974942575414985127522473216914646402288777627928229761892013357887298668947159431267884070720945822249914574083053378754570516287941494283992676268066829408202279792407481364900133746291030250984868987297860750007720893891429400035385200361843457725985375507092160666996168934336436341134216011!
 4848458304145267118059472028984540258733674713840781068423758912496533
75325142147973541221877546569352383979815608575362788772486327807928818403995046535011894795318042837039563677338213656049551663587454365369386822289898532325175576266818819141730978611066167148550268473370929396598221328285089669340608239687737317318756219037204970498174405833417910086082970112620968523456176192483000884469856110561598462175799203089263466480150689949206561768626596154784805202570184428471276758688480742014845934267508147679496552063216898701392693697331546747797800664375006087239838691053687893371529002153653310957008254853109183395764014614424988765017716247508390589253625410942100184384153084886958312249360835038624279858962464936060198375011319160217808935179888071354720479884465166495179224813150052988288178947555454589299425396299825744862260614669625575514813051882799733506726720201977365309194490136024698525836178917490957971992032704592180331527169209221185411024036482732395629602492699738647957720260627642665983457596099901680965361952641750998898!
 4410906696117928420704766639376030240124431728159961609901552657208999809865435587260187976926461613776736371763110433606586937154075972341494175649437870284574935324137573987599184926108151270519090033971259743051430570297523951776099583708208716198851099447445306142656395637961828534214888678191931648715097320778590509098824919727945988520622126543827404897029466054737550366236762508243277810275775468828530786088843113276039499642345224417506029306326409996819911655702804142307784132238126953198850883949876834734718298134553816901566080257191530432292891711291189934986495429507742755737527443830965983732604958568562172278013578261235637615530952274620193820821938619974538931407657003872841268419411103456736523449579910174591210255157070627515841269018145418659193332080137519221494391311390322164307810398345490984097789912671027305749583358884110460762474028662813671706308591895511945386434989943065729606727446887524552019759310660042571795411224735030235786929471911361641!
 4087694746528466904133519737144682863718762041360707878091496778540382
22379031325933707416713376670300074174297889810942077917603705239432210746250536561210893912063748003777852982810399961982366744888654858962175855103379602689038290443620117930662614103968573857757329466187920416717398710326247875543226747079766098661328829907681159356563964633273204741739784265369199190646712778194691142976960118511471239916246438581746961620165320380690418516622834351648532800087527289125465685629701201490423918431288488389663226033266490504625424514215347584116081980944438373488836186965881706169576409427254428138926942347770515747622285386000212947858872097964162848784823402978623645157658953918944950241291951379627932033037232242176326155841484954516904150481594884532645326553653281584852361499117017491452565020673881465567418367766013622884181398544575838175149216798753623630224986650429880939102699718848802597021704485903020255281376143367273000239314876299433294208753934637510479521663759369485928545296692388206119609240108921940593703503900889489567!
 5543620436512238135046122323723828668560770121470819934006325005040159444761373302931130726487374288653430191356626356098555176481574205853240609158894553688338012597063829271785958791348728751465702781750624114462327616535564288076138555466953496487670492598263900479023985157001129735104227349803979305948932177313778358946427421490828189607575316635304741329167667260958198813667519385608007083445979694485411874596378795705186883884100245753006979020674702218952467330629653303426474252506437703665357961799272351401680882572309331949322358776974720808316323550323053728765675197449912433107347871022832515434686531448915700185727147135713952818705744039990354952928219841943121751076012396068516715598009592481132330960972775272904089193230451381921405954869095986361563949787005209994004537373431567354908127037045102005813944075001957983981534123792549544126830335101009832940686931676314865221842126297503546963188038372296932731963697435520649355414328396057577614968768432550718!
 2025989669001214739663412119016114515920887272250823050793294949407998
303
51174391399835614995283176987410530091916463711576080335115178235447528909516696686772056010749497280038598968896901759596516320835992496579187153166517655496123305313223004903798028925815658853469055920473202204485821573914942454425600768748759631963833719548921803484257821514674327983246267139011509554735038451227067441681587953146836799009688503526722891303705034803725516475105139501120694303261888448360129314145132674227744902058435661357202297602569243708324414736426416862463644112821486682308327881884947625752314759759146019118302647032653643510486287233085030137298713130546568167197168909055879919792392367836076610691397291501702853670705691743297916734970062823912095821419327332733613270463849789711694368636317428759894417959700051502659484028115533678448928909871112742700145569771860376836625789101295632494217393242321683565994137149706344639312103084265173478194607634807686670878022560608339981968527039139188862490396768846201364756184245301094117954282789506609627!
 8671598416033383556051710663685639995451592029489790900201637036193913366872011588722735360170065696065146447112034009430955193877936892857165797994570266175980675065858431200709785880439522089931561072558219037389043825212085589340529626870603946308386296435704822473151198882326496512339260018745058722155842006289564195572363463233173613353963598882815416324582086828205177181267423000996714555693996321100979208927939120619892522787251770626356739067691507503627904959061701902639885384824227979359566008446664620811785965292002397001725732129538122295857247548029962280452480315147364447607005840147011161575833015879860256705328696025037668589468895502325739606311335079006232681465896006105918344498176269468436062087463726002342873104877750971997372976122204844883615329681410408419152731530290984810606591052412794720672167785763850341333535295376861634764939398220611335116701808593374892009856260216375364576378087307987944163031329331689543608548188271827910802764982430917005!
 1899256377720671901282595644396814549721198775362462428587348366727741
38854707427898811393103671007402604580950937400893191455037159643002207987099020306577794806331507827894038849602768786750115035265999596539119038509957541361864607763827610000130467442037558484194107547431362832174749969140172562745801909830730814598956426371070744929318593359949677845463975298668233006626051970529583965549347879340768927298238650997283368873094251447752933255301092938890950596216635006458516826456544784518042152710266414547255724357646741259150035097344200414013779642530276559580032779210917233890693802308357000745720207750705132076853676727266929825727880655807739181938652629879512717484870231133907881487970756629773976688674559502682113872485067326530876962603263797788381703916922596707028928610723469550137089222737241574735214631186061683329642808942710932564521785775727041741046337092149047755098929158365623669635871700225474067206709319291129850498409011874970825565505136312767619511823739310178894051955268073831573270199847314082301012598679864024931!
 2652998698370675174619761290586419715101691903811305389962591544058977983188111848636733518061096425229334202379950798747141179724133194970352120390227690761693998661539247323087743933199384739346554960246748514595610893832143463804437642967447806044542861177235622881235455493854936747031830938630059948081007775522664098580690978871378998953777268055931062615837683270227356952548162868397754059831321881072095957348925727333607100177373732221572506245554076368125818209945643331566441688211124082029632424927154040257558438562079972481372543147979164509345891752823037794163366234595408270359566741034205830065125966067610571237001968882883335782652565408580060812476178346121343470426599076471885291788165598760336660595722972060467641459384056050985003866257202499991628345347601214095757561311377201422225379992258192630947647380824921053667270233756952747512467574585656475437187370293203808164716184881757492845639807036059299858141720705239145558163312398386041648372208155081340!
 8384898901083665842259270273186495887301491547504577986560157949609869
25857407280916123745761202808037828969730368470554068069623149508576585780179457693095467489289107241726997087828710790670221214053753348991612709489247267572344210192995716317251677202681645119541166379138729020266989452202267016878474342065359295371655476871469752207308654175307695502877479965694422846207438005525935426234468118729661835447521732595472403599115499033810989292538332301108126011194582913247891826145659005709191480498898106410926531986415491543906371153226168013913692077903113441179044933330532860222488114011183121690798555552765277012968970799415293440757744481215215833914807326588549027739291894694430223060336436124352701765988697804072997295130502643362922997685978827880727384238664341055561867323340524330442126542258092202612807937786831680936909650393071851886957554053551924474010188943418513036377102371916542473855697723434544164292942818412135505616030340415197305170567200415254841430480032671364932915510047527288635743156272212124828080394804923399414!
 8331688168488561142463985627721248998010469252465098429768002819887389179671615997562994908103180945776549930033533727660289860413051372088167496557989385646493125493052617941543579324399672646382231279930438250274570461566122280211602252971111914726047906791143346105329162911399418142705859569412093487053298595773324501523567449733143059780347075981181049962648346584989429083137028824246407670486581945540112226166400672097493477354322366078909827936291801786597529669160491331805864544186490197005312721109486728921611045049992850339238238734277274981710686396625516505450077772976335228391909363416626867302838597762854881190637657141567485229002764130072284646247766040719996946130087123096981696117764024588024040122774187119038281453640878770214050634920456880386635063758276521482872528409166759588368951256147440112438105841481692969689423082697724588266279687970065412237491137136835182738167865499499087896670694422370878594470372287431615091095966314464662011640709456097479!
 8490233636899800643991772845807016680685505090136287236869231137521753
19591326036854910792708522832260794133428448438696455382340435073675175527928457599938970840653424134033300596542258451977435493156525253949040769054975535759742832707392614050290255313570590327766024728733093759232781801218057548701548456323215488188217482201759332595484512386428545698524379400556433592407757392438540423436702536630969342978657425267029908573234521675617101232614490595100892202344011910176219338255348554145176949234041678504948130811080374215250832981663150344058782068405081079763511477872031404917793340569962455700051006930361755386798621059221137496017416478595814599384727211793391023362889874671002884360210521700308921463828346420172493377514594618451718646938424487510770480331058573627422255689810783595056813440781257672764677591126616171714054786826922213350711592775711180936216356400703198861527915497158153186202558161036022088331406223343754021279442398911151482617614567598284941291843503814374404066721320273696559094656887718675576468959379984034284!
 3924364283138499936106455899573082175240957519804075632248172783719391203193352009579679885408662885841715865402475319461984784491563623794227800848251900034218297250036807797328296538273826827096457788306290732576969659258502247883479900089277375332337973919948498007945620162683435293070826113915081540157386358747910876868193306223403398361840971289598187756260232050900908302327612607842385604762399411611431991823285572303502563299623098798698137219873839534950880051105650255198307663100161926979341137799650871699842950607343859928742669282132580622656104270929855532353319048429705759791802868591124267813327892000130663733085016374578996392684184324487917504059660568134347300211521273649038146014660175280495123235652332300882293156231890747249051812031716773402131424782038610674754918456813017593633682325956294151085066373324134586526263304427789203299630116647843105578867496556019363454066610798043443310176040536965878782070117783536645957977065009110513467180619645626804!
 5892855313927988654488718292361747895538135482243227886132438874537573
063
92553505610802203556061801658011311046665551683362501539697327948333920319912234227331816191361739479097173520972544418739761616799544915740666422638836210825865482466700004660304503176908034609680389374942128972446250737237880118564504954371774793059010541330915463276228206017617772683571994994721000858886777529485146183283002216053160745028622713940622575227153615311794832539529555274244322201853841213070608839943729003032416962236465006267920699801174507415138856917224988122869452188670036554614878401809190596846415174099738386440357230697641652588892465013332801059577087437813056262691743389766337468528759902518227169800667136664670836163527267628164912540054473243423600326693091089939376831314424219738229932297889950926214542760314239625427123009270513125684963446486998649133688494363908972312642698566276251119595330901585602433898243060622094212689895503334746867930681967559614985279733168893112386392815970487214631178489894111677299411215355659556460225492363602976749!
 7358206868245320519582507730379363207582534854244796943684323958300229664803194516068861469246983068428373136376435257635957350148686021954365414064201558168884496826588112346578630251592084439687290937301123018832008241085506946274755850721881988176641625353285219936784509184182428655803081514319124717065152153768560754252963760776766790355340420681950971436961093717825001040346833890047236835797188718171866901601416549973181593902753404297029478246885715803080708271595273198839570827244320729419541477376160496369054079066248569819214941742723336708611922624396286500454742100377481547483680701662129709692506903003943401395314388437285136146794894202202440990456468490128084942230059632100179967311469204503257922153562548371953645571305199770032984963931022431021180511979176412110170676120373178870189983365634887019288887530215727875646836504202114486565320041827358101052483179031323330999480349305949980910359087330683426208375330508051534731571048365541101858028938714764639!
 7286797086481755119674442027062310288533446028400980642736313901151882
57354508704401278803203088045899940139285783137032014631169008275408416316137011378228175894830757274318712663013695540649705124014514793856161607269587551618897759220093725494342263026666980219056424941329713649058451446070935457705336461927026351091734441874165996058050721762322370670527694064598828269651738596744318504935088709778844538955509746429914941415741063308802091460270719921816981821848327678140565798031917860610615469014750739181327737402257584650193362927178684413597620946794413405609798352525324749547488537619645521287202144933951857167797183240136151680833948120338647768328115354036761880487119525767514184498817143299528951896302121924404678378057413972164676150352183581754195988015587818389877976475267585748818331264167501749810815143956777800430391656241421262183012497813989961269749311366312453454316541231370246544678922138633261672210957095956775874781360274393282525867880943190187831786885162815506666593489901119484204008654954306003803917832796210697202!
 2619173101394711841352382624398082038044725604293968888608047661814854427924355022617604338303799875324936338443379639305106457290147033504844251508294100298857176022094360304026895452539022641565547229674440698160995704897061857594830661245396861533548551445973314158488230645087290627474616916126938112272403245599778850235676564210425635282243293782278413374539063268417248112947477730303743302845461431272614632310540053534268742950745160711682113258945047377998525906280889706008419943257243535659915956718441953266723635695426037513401604302917390596881641390046488744619877047138953501720887829300569345883294351862364410505204728507958090822774526283793096212452475950455166123614389213213036327245839947785520103581781175469105111085624843978132712264257381830658248814921133451601187586782182236898768715108552343084383567291462242105743861733256661741960999369518703480299056647746589471083782738489439311337575309274218922336238702412781374746994393067173792589616662082326818!
 4859429937200672204249666572830176611725177047424383887356095306307719
92302807016573157109237226340202533645661421172102504983400822458632583416950677974907621573373220845747715167283702165152572726906324207310811266755111169475431139342496252258865632055943336433200425193801686622369612079720805807408423669323592226845180555327820709234989761967121716779791624257801814465205156233999357071380001865432511399524061571396278600427487610222747036056300866489818556368512883809784031645130156569345453938673434284770685138722357292881400581667792774383039499142457190528757357218154481546820977692300397019315888533448318345887097841660833222948177642962698624400189562630801058556951873430032304591293135903898244892788175807765259826617204314842674062284220693580529569020966338370166053163585148248029248083532133338663365526558462065426472081380042288661164155538597994344077718568151087555231264485459645256821081013635433817960457186863962819124972811141554662949543549349146804957448302719698789083693224957924798264490284687299072837075201278284177012!
 9603800804373136042350144754349082325546017075724729053317602600716857853490447693088445560240800182475538163293099904705957957701935015157746603307972570037376232559029064133938250127556264910051061660267358226001675792680422771256304208896308239495870332588181590114835775885313120067597489732148487380135547333682228958437716973324359686706147417421482419849171531444456864410307377782788963365917573478598583089604892378886499574485843323719079056387181017789704894141304397953961930475513696689091738163374020284180591892636263493235895796123348339761283575330216931105395096372949595796323790625702440379175429551523346260811473545161728319151700001447489919521877647691779661952568721195007228799695303048536967576363739907944306812485441194346876976488405834661663221425439246778329525291262990787626422760633017716949891901583354519093196971055514254380463454478833729585079524816909820866887294900137627493602761004590356806604586890905843125869236389738150787848391324473062098!
 2187600698931976648193331380052981213588470461356389427927750975444271
36155741424126712134361443145769359431850753974015563450430072147733803601591564423151526668081632565007265449173709074223609978850175286048308790697764337802440143836917576582349960023328399802426143230305164711505246133869229559619835901852698923720616276672223918296866222996901283683721070457997382325955339199427301520158632903108662360890287431151145188936444167275058578236392047850730691490801507742138326134560976835047032064808690069926661685875568655729713085488684850305592742226645648955217523425339441150553472511264687430112250692050293658839346937774273574881893054763054568545441850877833440271649529676435765455423760868313855012846179341056413251536001101162313248669890378322767052544062968966439016446624269768737127790259484867230504188351273877149995832292720105690817647720365745383062632121287823446828571267740216131994237674596902634438027581896547333421607619589991071359330460800636011434078590222301381443167561894161008386668461306729787998160269919845016090!
 3644503543006885749180789117498869185855912088927342856240750598637464206718268858410438991569960048600167802922715540433478128168320697425259008189993852431294865490970147090348901658048570591023809840230292095484580270313579975506082780061492870342061018970592855562503690666603519135105061273768315360391598296544096119848260379215369282152317537330450074594560265041649063874521712882164977966308965320357792770559757387890470897607282272861556133365541746541733325319504614471596125613447283876079497920347277890260645594036838939830512804310689788320922552674030990727666325563098291433773362487639009803746799583633167074909560157767806252841815856088281251037304566516783812329202644333428924799895376370028470882057317814802861566947067176088301797629574365703863766543046743001822177521707979011378132020917101225944593947603263352210034409607288891180582302988000139210576990206104119422259014412676393754756585523326364613691909630559005238784905808585472189314329512565509891!
 1185457909047430986724519821564840929112356704704471581654122420948489
526
02395442514968969986468927865337205038152583553395259594977924503735072336029292568166440317544720933502346993573428041628057585312310210403470741055394794662342247219765418606633075609383928430245561876321522936953094967261453911550427797429139462348116389099455719879805891080940522085663477364025185331579289422226129519671014878689533990411656262361099307862774431260985791519865108219376344239750924444318888327216723144731398927565393874690848378599983903019284755990844803139757226257799580238371821182610778254632805016627569293348171019992136884912579741783441246362148079932630317896300773162287411001414744682958710964094360165114643704044042410280223715486434163126869710296745723799303787091192660226885434933928846977833183377275536002360452697553331207405219443841871317065004062303142578963962462550805346231951577272160682467971323982350711214667903334253166105009268282697832051707970606477094753322191130031634327466649212585334869826284993336490749757627177624238424575!
 2937603637369306656985808132424571842319165984435248363839147236770911254287974928409167148410560617349525553038080254890897989983399744196881644358115996354194454682443001877393448515678629937141246420255427628034645281943196998515677594280158901172429911474923244963629665361122564620817780841937367174174869303198653923145104203420878749446383420074236946741673791377185417293021106725290049850589395001576446525784267850500412815051411016761090241799811636736511733436305204217188346973344096075506189228320800206823218825520931668268224055250678533267273935446279535445034693467088689978296597666801558685554392805496916001538246441547296342643462474423380956166974864326785105374048715307832852486092147929389040061919407758541257721829740311111668457519433771546660593149632260576395795066723792480455662674495901609904457170074768530182583591118470271817383992206591146973869040710668891914404781839401525549843098417404296297100375889026679800375423520077891886893206588256735921!
 6337489932190743330776323680630676603133058099365039278499663305834410
58395584235470613925830296256059372949699177865370073582595672916556375753338237946506670281331633677877857765403844507622370281560026646876008330083477694106522423132196281717170517457473158031468377944229920625843914516306421928076234721173733905412416898122211627447460479742515349515614487846451905980558527492770651104696899879122692095436329187565984975816004981782653422680617557997788709829039794776921498971388294412989921906111009727334464422545870811256275160768956041869526381765629725352532046547322321411273494490007070709995343823704310299549318990729038940393600846457924780974770689377792360934824065290804468238738675355043214380336072212290228590015216874744186876802189742358281150586845563682198271868382822712022953559526409811922062625661817453862043789764774736740130114106191782005477288908821348907136348279155939588984311141468449293179595876873104619946621724299405533634560437264288314927165898433580145809725762776274800868304148766120407151948274950978760628!
 5430526060917403041585619477104240215631761276250378908264233094832129276903108133096335536446099811346865826291938503063364668838528045204391206509665993437612097210356618344914206329750935911055338381996286376111221459831002886387775225388987107169307729482896828388180087890557589628702822034955559219196428207026601669747045075882412364924679308283604404779920255678081009708270739639258982372399031501697368780738550537280660070339359029894058550710155582039519294527557634161056024268451173194709386600564722099644970005797116286838788480686457545212988762120113323078359944557962427516190616612086592228844399937136916133774776479675464044752223651987918906668694615363403049785042705632697368897176781696358912147945088560324920359105000527029125066174457109024882318523087384733757609629623003231631931770512418855188740089144522758387203039334634137039883747500370004130303237461681052822789630240657195428474395613630596066367276616370762438615179317685637821816707263665263727!
 4942966882649642156690987657556395389815173715391903738736617810851143
73549171826915166465879543143669165745599145091346983005543469739468151849128526743682163323350024004153475633665554367478534356638434923082664101186379463682427414763213308555860891159915980692993333587379992117098776101000863512269661085823779600772982529916422452453775790786376770017620421698012012064777881681228532297015826515375910472798208581025447164389092145988599305873899806181444371246796092789601699593056731147787651645460418280680813730564113947700339551059296711792135735614221334977010355578903931203679507797267855206913096101330579957365565989842140801108957774963524903058672144033212266339457776033667073989866375655505668375901954111704002404173174191943945958741009491279189358322050960751544565831076463220207415567300734929839223758860243633021935876027023538348508090309724047230674833834275654193901756633053435905729253629066662924429884918889749301804633682740604187972644552879091037459015279629986419112064127663416654672601031014394648254273194082605192525!
 2551470778065053819397034148333188388624454468587502835136793106925926554234554314028772700964462593259362048415099761861355931150537433205957617181753937237683494896588055619710338460567651780607714378117511985495815026595404789716057114274816704335430798362768085737520359804547071898744462755156865065289903442705242266329006737706140738453314554636962039851463484540503624520515544809019044499277919701946340520402164922587968547709646591896052550802043743563249955278875640185485688090466172664721930353980257689554075607094508921639275173362484872746063445774606143001504714806638023075078467186626866548062874953343812650852986179360627305411608775132065067076009515969692284706002510591898168605636747228483403662313128400278349650264207429464809871958179891982342267801099136726586977957271563708382060384675085125037853686890500029292459138144967610368015650494006450172028100844074982488433633837738945146423499807434875419495706534048759930629686574017722989220704171237938036!
 8689301950471408053163679244276114987282434977973451896553103515163001
92841073985195246807211364384786874646878389054668587014682004042476626691197850527702329950255237592021823976131403013182078110942434189403502878184833569987541954914249076492818501276969258450798230992456397400749002204140040814982716177223278597182320744436096387298396961769523263044226671403564480136950111512736195952338954246697996090297111772949798526018120959498553479360399587022603538684446006003645587837208173448481728984962334331616852328962817476865669477744784117666778555040540203287723129129612007175618218574966072128601155009432483206606717083733843924471749765065065395869480652749851096435044131366631171614909274800894797155128038089060266123387702102460871260236923627820427206321488569558386924455619295439798282458631291559701611213933766704160478146545373984820479320623054588918302366359110708613236136202530060581680116956767791721865838986110641028446669353951289078736735883788090729393355689242298092189993758565251999683035395720430381542383232155894813487!
 9730334986225669486094404523710963112042947370999832775237590287943510148079602410853182822727206520917140527163995570068548889930713270444263811713616137842164926708454473601533715351403225226693993156469392548886092771946950951027205658982085161141693758918584977673395810739552055411361167474588940005579265012516802256429132904645122461016116377589586003551963308462636809484298685578212459237860644910862614952838673857484606243294769755650601734470232245169325819594204801744386182779009979102699794363773861023435990197290266572176934905312421082014790107623442211764049817109404564671479648318500364607065243737991495754907464379355660866873504706880288802273716915066796162272636779142044531138129657889219079893067928079519634385544299305266711818831693181515330008198341370336333781165136447844956432026304478905688325391327568550064988743645297240190393219423619468581860924819914471822312563503610709908143816820094888145747918340074208805492824346482202018090066089312184871!
 1422023890596148129570789868706730963283507728003584664725263332609254
679
88315628147216653104290355106381867239459262249189718574662275644819232079120334629404623716455086820747807921200224810448240894376772964570375052148843238334778442365762659625774764216633838696810515560040511665892942265564305067431960663214938326852324112410309829261839656672653757096227270816376522222612795703789130273622424542802357769496697979160378060206119982965376686414860573724378570868569536717430528588672794150486971707923068099196355970906670860867044395694929890349846096408355212432082158722098569426394420680861525393226385146418582255088724356407610075557986030430061902939977503652924496276806301619395868967484282296966828716007054121885360112526214726199193457011249413604007313710356012354491414456113262081479722024456292008554596767107745262944640369871156673705233042276920606892199721228765159234917270882505266047849195844456959149545052034397221960570224287059634771994874534230358497345554348357522590050013267928952996834528300292496787153256950895599473560!
 0877161478673589070242230345256770926418613065262240266559302379610890865402852363543257010950385703592251672413370307745952829868199594531618109970861779043195214945408699800192844178340441757574754984172343224395254218772147191428779462270424551103840410229963218214867244785141700432390765820507441743339139025493722600519178055288668359278359686130484480547652070110387054567905066713326861469179320974154304370059005751402453038113508597623204988350037521901073172423913206120845341636425420901990839789516974919080198257075469538717604355503102935456031882542412341538026023579984861271027261945946173025015062720178271834750795375461428232240204800353477130873585543865838089865579029017208992152362602854413456664421007557131741153618813643596833917836685303955197897931833440266576395817763844150204746383916943494037547188963595665388378781758008529433105156478063167559763968462845486851761307849235219287584385717421153727426624754946007498294646891131320260498242666606178236!
 2167521162446765571852014277072651705457698952689158654863836532657746
61247828758616395510569079375790474680024148084617300235006511594375995047226279535583095656852905524124332606591239655661629751599246785697672860957838708297268881862477642824608890913102771680923341732181863894130299128017857681004118453317054878072993539224164708465927676959600861338467258917922246840196523600404519226688050229138252542744272966866868443469993646449538503029644314181683306795660659192242268642337258970297498677982237986970350915672882501189728505436696999118229276432013466142620966740346989188123349128498786094585083085411602679187495638399726587938540493758893762651752143134009156297676634840393405971138958961117792372719731200871190283872385042099513650208959965023869238743112300764938954587045374039132767427546585691432492234424879549785431942177295510329043666950971229057941054222971384983331845681678004716527430344621509373745689088342772654997958974002771586972817567162177471606239356251321321833770630812361990667620689126110335839976685279402280069!
 3326230427643632008046027945439821856926895760882981052034704162890615142695566326024123584568477402216153317507949045061899427754164876681283060876768034280137061515175936542004066434433426496963013597695711095384413054751373806515114656704272808787921116188386702583261483520335952489799880059843268521422166101213864234444740355415361812545123272541790375243284652613400156403407802950831738706863385821890430943726825197783543414044146312250502899850956296472199898959957027601716108002639004542806670193688700868737609635517053961091586488522475225982760850986863931908657157051464794306498079474003599356783157531697864016412102767359274484082147931616872014630736832680755323555072337845196658339596199008857560532046490439871878000387765344984827912729759792678589323883519784359774519933790605004783574741301134385776701277467765584964365349920729112750524478067990024763808133608376915934307344709990872461246951158499905693894581929968315256934346560165049073654345616899244178!
 5418309627877468642564733090801771234738274986537042768589418353870662
49694535897512976364921662022519559782048820112202452063180174318531405357149398858353520725336059281656473662228037512543318119068635804501106000884894872519903861157068600129173394913291999098969965204028647974786711411264149735235506028280563867318913520620182265447423753075914797277834548519658095711767037248911322187418488420537545664304860548417143542098122079034390146824643080476309399999880943640362379049566908306658934411667123307190876886902228908245509439357653700881395446857595822159242377133759289049456699134195775694872099345523487974255495973472566824570327524856342058030051906633322261472984466356644139474153616390319636890970189293421841296547064212044157983092821127551232309411970468703667558586291468665816011469075818145323886259946881306110085865524313303888523617875416245193185488543052047658769717818718606032450922670502356233075286540063445374747739810330175301063928587670660068366242391593447479238935868447466881343976841289522085262808015247811580908!
 7282720910682707148879262220018872071335834731160493875032024713505110973415142718851074543943863599825168938672783207606565843299641926687729117880553063987707589284665465017568713885097853054377475608159818905381285975975872902764191458768046930395798940250280628449443997726788334603498714471591118640875088480118250466062694928132550585446066807219280767226318541970608997272793288356308679665821656376621268700062086139857953368721832976694352586585218102197112799988523286014542438864921063962550811291452452556165662517453982107916583229482739198907226638085938777066692017984543733382575833561654414822741349366889946275662300582348641637489129257434542653687209861633471954725605376490261109861602206371517203173107223352777902356230116122158872190683184769671215454477771891976364767563598836504853738681471118971719168094424532016562646584241532046095219750813874943627273911539703898102205020721137964289816784565719998320957828675482461992552416895064756244587568047657982710!
 4206491828004961141789963265349383697099618656335625251912795274661164
52893243942502605394991297678948685545138364629861387059300848639514482754280925425826592818116234558573696435121661127570786587873891004750949502074143285562475323406880694603658663822415920594770116272455350770188320341275061651643409892427663619490660405147590189818284704145406798633774958971593303210863967948024522360219047075408495243809362207420421644466590941861151612542143978530353147142204276050991099958425827065342806551699533764135405683985905403911441118107931792354792978041774003118902834014205913178601761814010139067839451607973409333145292883356826676108730896556866634147469799092012916395177656476041001359230846407781118577017147547093052279610780512922592213796676795242302547778686909869863959328301752671349257394247665703796719965490579103464517210563161116284757616050280274147344205937987385709393659976458406436347102341051386856098154364194620709348749556571515258764739863874662911205252188619786447193534012187708564430494976466327211173129663074014742885!
 3388071395548396661511643583279632707149703664720455482390752417048737110902035688878426271432845968294859010991205632800677817281955948083595886373800602033125812040474116195100557076637513918520635019377566890879122262552915115417161159431123229748480794600084273617836945265365686389089223792191488894151341276438128672535439438366587649893511734595465822104620701569462496298296865869460329716429610583027362946640786695480471606876740129309838827011269417457672849653894996777001354970717587397698853570160996887192439801257537788630045299606038942452532981276883797532829434784747172736948389784430315445572332719258195677957520176840594910394510248704052977754613241395747370249580695219061193552465613007606081703660639863690919687796732698742069841021540413587743499442484539873662899793704931992012433108717715889083314593694975134441503089698884833670488953351734383666137504988667885018978762488960418919565621349255995794695821512718736022294434576031234116162221187830626301!
 6002561513060089617958809133778599382757389116617492200048019466539716
725
31999967878246465207042025528958061293487922157070323505107887338103561324690589125428016731452226105109752688445817395852867497008732817370265039114188086362578600686770953570945418627203718295923293942900732045689085384676928076767060783627314546613574645118614192699684003635524578668252860552360878392633720949556865730588853552427317183035555766195601813206969705231472859160365741528193794803907805701776624967767708305453399644104114907444809189354423715875131637120690928497188186526517956962506087680863799299275143819175513141285698380499058383246640718435335730319777192340217335512524754028959464519349789418782111652442071964796335402808427682587455051430754091288697033827579829172527012505174857251865676052968575717104398517758634654927363349783745785577517598231188879635606429288261069152211387730469072911784396879571799691908767474462689390104383893089359068150550625180428342498482854745373909119655005787485236194426736533892035293381796879434588513096544808259521653!
 3488533142585906605270100209981304986906610698677234145150216180332181725178026163803550800611514851650187034813864966232298355047474814032213413711133904201565046862958632573380327318893633782129763123240816594658125293560698325945482097271872385586401208542652793657843708612131900849444631669227680474991809781634470515081160305546845477727121603537840550710447517401778915850144033399711975439333719021937161199593217216504348598606859907581486633851593522539828386365787049426792462482206465907637116079911666922700483457738349505076745617132967741574193605423046510863904707430966830213531313738391540186005483158199947853684079243886303894244866672916246547492520575545499832899550524654939646411067247024618161519868529574083506627144849297627610327661507954674098048556480451992670006754105146168240371336646870739180576224596451211251721492844607838729506552655624078233202163428422744973406670605785481312841617000682794165240861605304976414153531076247585161143189632664121541!
 7647883980573951816708275462640191334272469434064546092333107500561374
88584560105870764280551049156832299217771877111422882139914235138999780480907419667504293426884405876930973969884921265740650738424132590499513328074891848631251366005168909867576618930641860145076889966436459847824247637921894682052933286181607285862549019360639659721734597424668534891907715096959471598414958835749940794307637165075871308430350659656327614249689170270472511828931530116351364012323319484777355643225618088550726863361566702774766513168447304589233046845035827341392155205655955505440270077095711891235370032893938471907130123006149485000977330419016297408129412131007436521696769473711944650430267528745652642711757677298510022731815314791218667823176381430013321357233316408367630482863502462292951039446419729011777230673981708549428213168548786358442315756515126424619713863569864264862557007288328497746525656989358881220656154327435235054226430476307017596203998944569375407760427720642856615642749640623182258091376046133355409258109348656833959259597723292629928!
 3940707102662050696026191475071454672953791936057733951421585773670258125547777805618183848629235782904863041169675947595731092163648745128732060989775157444360628320107517560505898637739464267237256633132915147636294596529573750455603308507170218653864979703998269119572356546639664878836705324991760547624637368838647432393680307112408140098413134187190232461398167284743485685843324906763226807882989699853205500159545642584642953957832967136840868605551376134831638199710691041124877229308565596116289251943272895673579308548825346218805978303619673143472244736074019048825436693838594986438967158443464978194846087046684244058850581329094867528103508941891768736013456703984025409539983912926163964011975850402830598747519890383637633604795218009056399940711149016348811608797558286887112371978411312774047497747160299039098629320119434195326130687558687004791150584278118927360189884553794280093835596003055564249057493383113158126893580917182167939384608913110009137821696025696194!
 3915638570977210852948534084022252631538075764814352111017860607966202
15364574519804287924921559609178514675534716283451480976984781066794695258043862789330728544307551867467403178992059623253069684985062225645379801933240714701053883124572159752937376641446000243334746342161564710908006844857331009969795675086132295621539489661290707608705945773211096139595720683769817333217722722945230201171495827462461423008792456391539977587988893436051928092805342757289772298270410825265060322474743465539712444582110094180852882766428721553037320730305369998331909546446013490580027726873360909675283536989869152991883777944708673208051172958828522346346613521178777082202451523309869472048802369839037472245069452923338166809156021611945380712720856939944271125470567703391660685041883392112071020579718959740295371913788508239541844729720512583014502236399845888188480795321109613607068185762270372222467367863298882619535077488482192580101028167734878013651737085975159686350692761148681867915433063310728405287263296042746501674512098057246159835312497965083360!
 9628984651792485086549850176579267483683031402372511605190482004923756886970481323567013871221403485259757169823149392103504453812493438547540428771629260787159659710003242535081800679850478467043410713802300023558422927624418809831210278498456882819056214861168838292138076955902385959888827184271412983153574659483835088636755687250723700578820808065164308513057539071480812519819727544060428607213072331125134354735122823726369020592334684089529039441817472221808088024203745429228195051560209032570665666751355222110838932344330131092267456090896489284716009001684342568603024065183871253644479108448228634572342863004477715356767920051268015832068451454846205377240831702307511858269588278196832806293181415796292302914590092389219105024003301715985360210689816573095970547087543049153507572834710213673659078298898898591882585063838705823236104013427368021457727978126503514471300766851988988994881251132407123112254236553741093057137767646630889808197466734401948539674274646485836!
 6303858292683316324747585607341129560442350481513665036436982413065211
64873213617278153790011184387647921473060248599696626459768959996166721141576787427163145743421919661254382486806379506567078379305664548749715081712649922745877070514017840325202583743067239793875194073834782135424926448045941693601237784155756838021932245156719814683131935171768767675429368087429323032533190057761153037784880767179158737182418962923496335773088713301420658240647201843686664771101950822565441850414104859509233151641756683533590356805977748826286039216305114284401477112276773597800556996856451569815444049730956561820814107234555077094889316466387158797826990967201047700486620415774364185100889775122940133862157255979667303003333560896504571299486045088010300699570811832741220140288467318761211472150760828645008049335060583412440053499241007918978971569429290601945961666395357390057408281897958656106302142509405780260038780667470257278504231026792552686641647837572391926574083353101091994605868912629692897227996956161837965862539514577656513899156059691192570!
 1426776971953622126921492479330132225341796733804545690690022448631454369928050895902879853639911649610456934163523738167270079824864959372543294414750174225348800746053668527410735814214048138192609577485753983239643220276768982952993222991005911139480903062578671946852207543672331441563274745841367829695182090907575373808152255068158163451296858430554700340573093719565115333411882257911842912789762442742486688289460841733772762858914434381079663241858137433846559133612506562144086311856550748203659540631199451447355236649530742436126220822158777991811731823998791677268624698100133089934413410325565124475098167383057838800279317823662668005733866283045269150121749881110106626631699907408954678887249837606964267560732765502029530643202456584880357434091901845796967091895835921580643189211550207822254058962123850483633366864052650953988539601868748025439599077570863564711810781732083588241078933984849609504515786236906937909102983365861250578006128204283298987013036174255081!
 4179298851020439277603910088639919708838942244343747624450649943253350
075
53215013569164544740245063414217209263704944162854493551749667395186823377038822701742839530648662140220848023569461745193504452005508429896063854978848029230468765093182430456069066241201432328860358702904692695699377283699572561179998141680328892009972076764727501627836867650540928061436825599340753710851249533505218381221957941843768750343747861356974665962198992983397941774629139991105033856608029725055647158466340714418810406681604659430800847607423326968987058334079959140117356140151939292709382712687357412911864787881737933530797239221133192308722405119877675739253726165864549426970835248628842373051086923121187061719785188209150825532376382874542005836687239908789431347681712102521577682178540349826123344573321254174317451021853549655579434151924041429385750734501873226311269652614808725692696035706812151890737658509891075362102883715027221145715342089961875581653159753732286965870661344104392456144311878952574621725088814221073288321486438369157788502205553043793870!
 4387517855349000333364632825063606684345881652288584391434107449088740095011349925750083793557515655530087911804733639802807273511498996544983963827932308692981654726199994170358824640368229603474754109759259242750221302723318111936925255836794834445355812231850163728754602455914289361798984100341014967367348692796553529916764681396203188564826286366520511948155198319369243601872033962586434774202443854834329270704086360237177118957877448782109083103386033757165356383769148111551775783186058652713314834704707101474914407295267173437318892380411957913758311717249547015105322902122778856375914412683590991477357721896785668394789665546193776843719924854092034774794359735964590751000134136846327053994236633182757326027905931328900717524232979988202872981545698068575260272085345081518955899801537985910833026265950340924822081696983094509905172222977479309296013722311620706318059098098652204984126751609689936908715312615410639114099719516652752102655137462106723975453675152772266!
 4273325007553303811557792490171081979998740034332068949543020212334916
55975534138475433458908459721056512617527790387371558021681020134897623004393933012361956067405655072576447626418641038275225027502488152042120144894873427315767243977751651960487715913993375733052156316005828183275242512498428929504569726627231794999822413892045811392228819709672866813419965854508925414788186612143164646115500308942954164150080443512671000771719106608163491160104940952885915071027319245300921033761574785281901117852531960939737707588345355016210512061861846016959484792422655828320538917434141914253387349283626252747562106500268920930549803819135050751583315362729526902335454906730690707946290270980430696775777232406825890828825087192289923845356124960533609093119877149768534918771058781525115763217826880038364325320845549496605992316134490296229826383665569562390291636399240531845738319733605689630290156720278747647422923743120838753647797980211706640414003623960342990547821460015964384903914086217248900119363936205294911649019017893767741770081841573646424!
 8228034776598339955941999474235138087720273564996537465180505928376245906150124863549040590350443551773968752125699392253140546661675326009596440150814471340850059941335868240156796893916523299569025617957031873634600254927507975857240699877537696106955491124559293716816156092699740147485949097195752839327850295511637312836316094140026412771431343858093641072918318855781843911931130215918535057857826781374095151398828720932987208917087965584033799581803641091301760583642837683467502697447917327363925498266092865412668625086958405768382677363557610188407568804629311000017631382041991338422946421754762287632688951032565012578066091101541826175971178630118493120417078884817035444591142092462674257385492675992972158266301248960791602807962830082376984984256624462730547865227124753855658701518425936786660726237464293614931223031697114993821371623777341018934684124985833338971205746098765334954370954458104734119456047166763714887719400185850380166539188443530768067855210028422080!
 6101815325986672325936086291194279528506716203215956292623442108503037
51004580216782058594312131784986516501838897142928102046727664833965833612200504122699540945246310905414867016562131114188146425140006859434214162295013724119502894040241715296202148213169426873455061748325774899017270678680221358052016317179659706254991489101040822590138806927122599876619064997553972537924209787805279031227453537221257236781981686277543600659931605160854719411769336006553049327001549964094124629402760778614628426337997870821241309674827729525659040333398713016636052051529438722709265300231285711277393439199724294656160314922886463830482118264006346322445232769124927963709190044824386152721173897753053778415108270187902641897598553837785962641829068206966614537450001813004423289118886576948660275838773359590424627315120653107001295638667194583708387333741167466010919927713873951850459088012589332123000768737730155496564876001961703356137685379172249886969875519586511515188992339643774040264464399244703988966057420048040327210150362418929403364111392633771455!
 0891811958138338368725394729324038967734941772757243263349537617769172900183500288324688388698795081953365568493688942031617225709608998387769660411434688738071363573288669456573139819587650261070720575343593698709143271078791162618225497690755373296838462371980377723623180973689147636315632068037900973628028108828758505399141297181529629141765341436529914563455753001304422165769165917258742509574579395765389375303642168057837534330285509866206405407545243569174626281387643468459350171741527868022302377657152180397749018457581075312454827466932201410027293930057292911762103521488068409654478422553268707160705059089900628094449404154412597990322412482501203552710848242832728758955828234601248079035945360755145245577897068612561556066185751995605593062939881571757993514221864407194173649071924161338862112697131969647091936269225927694829854536449149570007423761292129232360305966621359283628203069907880880512199966860277424965605746409050845143539104932913904253388842512770905!
 7601151184202035456414506444449010782789988848064713687008437520793992
28578028570193534204744462127764800911598182661695878859097365647894047839370717313572873998225857396902077210380994288115046429888309449492404445478673612212302275703965388690868566088878787655369870741551508575529398412203165367114016065424206518133470142971786862867022801143070144416691616740865311435365445747979988394858181760937581338634333376661759053378073669357353601526752879069564118965020203335721073380889946630961082437206862321930214671845836389087018524113291813432830975165862835828020285355630548009557159955832579960732398973857856500547767477967039151109049875692102382551433357999550367301982074582190004874924269957415297989908687173042152473827524060590708247425701122782745792350939963373671874818053274311205184712026784775209008338648721303678557169164026097322614945348881087908046220422844744366463358250620504016213234850767221552338662714270673918452967533197678634661371233219982665632436325336658476343210835904929872094923993713760828094399503418911483038!
 1557471417815582502354265757912628486784371343155896204842120816185495628236737048853740157449627008784538419610019322843303524871055429251799693607056020190735343294620200760125597130168609441851620616476085551846144876972496857133764564642265819585524867635352967726260535000581788607462909068917526820412288909095288680657992594083431707378728903935760603340051018821569837572695459982616629797985048729238902148392184686728837823176595598630167461057061452447871707592731394688115384327328803663579557186911467421331077290560641179468704062823097815597991610013305617535996145778201905108781691083955185858115063483858963419324922410193373533868258017796347254924333494395334730820885110761001964768083535296972651752073636555109093550722826878055582945243735371092001721142032119241345654770286804415288981070394585867219999501557324809985828194705024327685371858222513954169772255381863207594062400601675013526763846181889905087656080770760648280117905622650257124989422317711154451!
 7933014156133919287804612600658367481147014924958601818663013481528305
004
12365295448474450072925152423376273106209782725047566006236392151527866635763789648977520106418632857680755744966281155830213771430835212585038748739304921858587305438535772577496164601249484410256647519947148391522286781639346730050524089814533604148559961349394499994770839944506945155445022492199442021619793842267373753937949623226722285386802475335992517555079881065308514115936620972306881304320027523510115839808536726783823064467514773273496439737139179620642893007605272972440367388052216300601254688013262847559657881408164795058289966536403626387157525524279608560275538334078225985537964819592395081870746511589622793041374272458137109722467964276377544135618759237937290070250924878261605946271580880382698518389682685235056342451863346113220824571685956629036159071770888237758178297442853120871778920873080686496575250826823948868355830601480948120322550726054447216280485949320085336900741567702025639774804003670719931277967574979857043224013030351234337938411197029821661!
 2800961141674867920590344330060920381207123269621516024807450004825316120257141653952959679420969333522575984298924101124811281650092789073560348105677954244257602130147272892804061595801452176039549993820534393497060181169005625657726587493558255104538054420739387231867269241080850689520408291363242109891992152807144046845234382660102855410698071840645689253945783310550323124553458266012525284210345929864013634072615234625328862361372712841508297792670261966215684754771192412472501775297896677837971253113779257253271496234595516067093094602489218959197039027484015177713789174859969294350326165284997391425639699744722096281759827338658054114319720116952055713584902590033588250353966938806849001269350435928509772907150421574608212393985305584879145478023220446240878866643705522902201751399732232886786880383470429972995716731617836096809594380330464725010790621401327697072439737792915180193358222692996111606837195098321552635064268815870333578102510244127910043609085282324365!
 2611106292162470550400115289906113000287138331299345007389182945695650
54648633265642962510201194353753869012766877561613103610501087379708399111280626316535205333260674347908203607181127841429589837842178214268349294194386020254498559006111375619129007648307886093712740755362971482485686350497730421276676482646495601788760560317575021216124968033020354442454415115332985088881922403433986385398132984790958920993409340852156554502086010709838976063429852451905551255708828661598316292152310319816296531533178724707787015071311657445031408749244060262510139099339746490707912553362164027558286944144594660364764428932424313841062990715999201105557378714145539556843079541647489184098879709475922681714479276984884630997065997518242969726804189444172871145785790242528431584059268786073147483422911765686967790618781899638914317802900959959443761355332850796359691396895245949471209838494749350977274858406615928582818934126235950376788909575075004803169791929277755623551795332853378242706197895682140368788222567015597839904230769034286964512057606207830291!
 3392873158204933604688247196725000513187529695236050799007226821501397243174527838393105369883940406430446603358220634101369780866038392175850949145371819639767050062460109181437447390112862202615038517153950750246570030542748998998663210644692347052448526635841986921548506073637363597010370082004549913553023422768361566092371837623766132307179429403505162058983788057576163956318965132833379910809862874371503218333793748127100691965566098102455034372043197579238016389338378849728009620067495263952292455253000391513286520043049480840044167616635725611033609089035787026666045741186601123915357092230799350627563435866941212414069020009842972885997105526204600735961659712462458728001921492282374570477005555522350790100742577964174566642181376076772802141676343117663347609280512448751798617501469765110923140199850247521055514321832032468386223638698021497325291726808182691602264014519857159898630636476938467346243735336212294526740029736632189275577631336143305221298373289362416!
 8380976631121784390646592131852765757542452149706408572612694855555151
69441916963456349485189554909986185470749217091939721501418158355491517780349308284162785303200371138876697124701645305296251462535480884659373219813246040470050787455315777445301272216787096992396519448100276677245220982613889576119399825821350595390610825343830738461376643424814263503035635328088255456582869514568834834438986408470699615815535565709359785298181541228102493116267716647554232454373645520971605553434476004957991305958606654748091969975852369639105430605329969861777455570274840316051101500092750983054177882070165288780564858883539300966378414164514643065416094534649274971944308843019008324345001071122485095846236331155956540350010253810776548708890382448210596021756746917076126644465154974482026176935992159001084678942486308093110974452168053059968747071949334148212789460240478998678227086039521789819115257591092440949061082194157218824513878752510537877999275056350892651778227569928390407262594300994068365841150601554274085496917109322553335139905577143012245!
 6225359209089289954878901688738794414981766740919472190858532075881342435241468440946942873442303467981486932066690547644081879075643327809690737431561065400350336256344104554056116584256661946413156995920281660954660404043307842960942336428006764252024688437903702664327383752673444566774360447591172345544312137512998716053494178990624074624805917515454214501015259350185794979677091494277629876776187535917697665693353620075264400558272233782574612419177510398969828500878046291161247029359770415712278682084150599899003507649056813531544960105058378252154072295847814120922607738836858332569915595827625743699100895388635258579158154629740992889295565810872246879891444339328678006124344797049409511498725372216207121828147224720560791632035468453582705399969956173342655643802139344413441781432747347458571334336964504566883634524530004149418719459219484336580518388472852895732812318742723572081746464906156807088101174985927243048800304705360659826362448722181336220584427696347899!
 2553673956891617595600831275125363731148628918288531996477405130652873
90111602795147240376520467967527572094612954884943477068473583886574086298796841386854129038445673491791947243547373577962973109501363685634098652485123074424925486001220483463776965774869823809907533872473810161633104522018148205171024549027040321103931752914123585900613219958071152352465327308245187455190176321232392660919553605337933941481022223920430585099111278122083417299854285324888997493781377149242350646220604970162272257555927202823045246168144832779459577268405740735243872632512177386078725223739508292068258624582958286602422370091641145322515623508672835702592065793793580717231657825310264002591649486575851561663240059633743322405836357689136380996606783331520553819429817545186286239527622246426426761932200572609407080074537976602069321506604806547092367002545547809374312963446995119364570227770428949198747314651599917434466366431152703209631814474396846660701703865683892904137261451792052830377980015967332211262139211109269437324265147451532902567797789786279168!
 0074264570017765858772764411024881753870955028663662857026313043261821675599734075516308741184810159947785461719927580642080076450393930967650107912796457561767771723132528708771185643654798155721322671316710342833375026480923270927946936187542371713237432118820131040132577542061553477747380954933029560528631429923967617242595176525960378536770048654302050379055607984976179849767548522296568908668788627272288166357299650742121781671013184464898397927458410460917401955359452180772649601648565896331276517772565870556638624677022029730671619049647601755531917430694272963802439990157862587954038042925010399622842360965799617425664146108287824671308653867225197474864751600371912231643293736137214181904514453985381290306578455257776819064215020866393546011179760773144601698077221494620182154754183468156986697495221437483955743609909377306285695389193336322778841477831470163587952757058070903669413214346467214216208735974524071963444191398715722664956235209124894829032917379234753!
 9064790206405968944585818188316372505697150824954721001143061291121279
649
24614481494526732046118094831779537106261385606592811074878020474453394668784058232830843682523498287878787231043801275843265288759328905597139087094893432918789363587523095031972414943311478026815143286457090733990006464603045945919321754905470533177803630611080238379041326102170654239777682867394895523434091145909803218007421748266308033109432035102244976540587430526872187175119412621824964070533058197605780307587241398952919259344648832864213220895119728570580851729126080970089709958873808842612819475627468144426589081701939706951142011589009693292126350558786914144225071117895764126068212036497315881558506160886360876091454106493583973820460549769912606648697417274604556200730779970258510004272072111904383226599341255852542187410315473222596050890371099051243463782846348451729033960940775459663571324591009617567630290234805046056367964170096211593927234847231546359343059420478783916544559072230417214021854857292963472992069025941829934335632833746191589310993666514902706!
 3145534637819213291049536491616796863368662028092059092817716963601643203871763611018915264744243719685340243414104096601517523306310100542766017299959240798605265798181703543837224418970867749115571413959050458707124131886615996672031061178678423881754290008173067900077007691033159476847127480514574501241696094212206856387171920333447701431277835842830361255866972279922760055302379575476687610816995326968077992105624219871377642748393459340077056485682473456437429289628673243007132756972117828634286318030784608054389670312256520481572655059017359031806561866576369790133410038804810042691853738828839376414093037236973888255993801530160276509389522256254865820311082966387184788979192572735164865299482121112858223778520755257947041116516709830106738863680206503235122142256662902083851849739796921945974039967225929357008422321654449433810169404400146421727043690372530884977296761608382679528932724437332333246013059258415325852801854229269755050485123165132011744502006342289757!
 4979074186647609056661313606066440044968969697212349015160103161691153
91263614115481201917544038429731064806138066724067945384198776309052041818645539885600160580820853034667419992255483814389142688603905130731134020781032205653990667565881183469712473184957421049259820412330069810666026726671169698692523699672571208396075810659906048855065255945374653337081631251973152731509999799454316474480365305254552258583884370365313584891449688761557809865456168794153263334329273263200548073298829269252395654703527415093876485643436347363905600675843429577925331852856286630802604564350605186946639688276836830339113210582713166901053696589484335303439442491749943703289756126911849678667539674575691867396018426595563258669824736263280832601304162200783776396286353566372265824774101874639846091378179702199362466943378756105142309160349673748275321854244734404698672281446219733445690655932260451363167757227697617515295131368522795798950006308664858333835887917085487832614008143431868553643254090059256577569636579451518524322789060466114324563345943833363555!
 5708743837768195479358597783206072790896851046376629561175361129876481100581050628573833021491418969175732364079223940038761018773068820804520987063069665011545608978239558975650821895298053734294241239025161320915068352562360643229146350152926876256308839547958673606574040467597603190075156026286994491769911033254919036462191565489658363878526176254475910304043111983313367489637354305033470837868025988572971423570280320308651757777636626671414358456262372031729291827115658477385191493002681144009361798336375981553692131194616541151993329792365836354700798531153404437551172697653606369634960745709208910153884541024742189227367753929015254514876178265326992234093458834443606532356957483067475863959823738062392209697911303750092472776748120961480014836982845866882539992254174831248779909843213888058066575280496316938509281661241484204855904365375260557067208866019837147246948855906002346295668074869276448530988945777025255927655136843481797837680312522006201165499621938376824!
 6381142839427575733587757076166568871629301700183701501837103958544179
50429051793028426298424052204885287687017992868810223410809450030874343238609852022593583939779916995141480658359577079153360421522477570541381583059805172426820302391389961878553314937010018173759943534051799482846602724271389232420663582213735640255563916124604359314445647716177866866219075699419354521024055957858709626247578237422408723073946637423015115630807962125507698184341575221302013166985311539109517086258592117075346833924898471142457857970929970095577749053693445893021962862232942707370913938488090580763601623358850707116507059220903422702768367440471779518562158464237853809484391702154030916967118014483350415350152398578786248240022863505124509787530133362927489565881013559983576664132584186768819941826558770925409282025365756890916920648701645652031351912023088447792142018232383481258192523062906405913889072670048017050238028310754987743595158610958478458204717232047821419359564352300682408293316769495863783243373629213297448576488445727694223181462916904038740!
 7843425399865476186007031637872444968724083932590304072463006883925274378343209997800310073948543255961995913054318338006680842170076471721171080831473130422010178796027276955184869315630000386473958596475127081806202029112810133721504829914159814652965925139134758706371057409846253174451755159298269263130195631632780231725451163375280493494782136096517678305491193717098108349389411841117284529615645043395305807763623103939400214746202138248670656132439128924080550843648945051425622308698270113917758395206594785057469672064556576399489008235061651582255652005557966915161360754059624759265302193153839577037709186353633441286443360419225636411430928813852309278586445179278503862045975423688881509659134301393353504723496513278674961587508343958371962031266698397878971166322112867595975292574210383579965099631602787250672261214707492028254940161827279168049058287152156226499986063109509991719879551503791635444121583357712166589351470635576707741774559650467234694544452487784582!
 7146498403990588973720719033607824291423543920061436960431765997437993
28471783022677801332778216923014669426798738205942826619129359155502415346598597162664388078864480620502796829044553248220188472782260142880240766144856972223710004940623506743161227417111420215922115701742696522087958847307350333777868436309004660322455518325803104067363534322153132563719533356463154128643936018921897353462912533233338911220357933134552120243763904130292001651888892323344035319333674341526877617761111747022662055402169383477035918645637432761485016097360694223270893086072258750395562133702095285273531779773157244768826871050188583848630398473901443102146361644838793648106921561360035807214724194639030762996216912109632029787898835840211721528154300623716122532851598022464339915704437220246448405393045187394297539387958818258157781718933912033858058335914475238243384599599365629986421787355415143313133777332413534394580954597877848864298865586905311555437712958663359549559206686685776946286924341419743718486822908038525017506207964300061231191467650195697295!
 5333436564362693874714687171405244092288072481970997001029853721090647620266519015108944919215938056824042653681861982156126999457275648679946421579928782912908324577029090939431238334788341536534188840835214965839737824833257850121094767525370725809284199339065677110460429888446881112693501571242807705299641260875618224627755980596803038251962927663387009988653077062054296588416469634559163346283564227567391457178158236031197613064851001015750483303015477030249124853541041286723614030603109834943042506728575608915140967276243590336456430749154247425405915084577324843763421680820285207259555795894167592312949853857103982731575146959282977336649264887398210472112776254603086831856629752878771442438501899141792823091662196864474085495401585737502962855267428737264805272024411634342554429170057163180392424227621093184018957954206048353193616225373538142953143078525330814781204557815557152399325952147879562217843339710176201734575003437504662013304241446215111486995042668555217!
 1910185262342140921878596694363227555129650993284624716694708031896836
340
02974667370176447342755272621317185968334475136868181327611495065964436630031955609487562978955322574571495669014372876870647816332793905427614474932536237197419267005776690268626642562608898998201205793492659281260255085436402902692112150907259196852497343508371831558103437673193681937653670671727496921085918330882405893462547679710062686029515817745583011579370282473139114738620407625574173801490350685606125979679306329435540942938004181564000707613007592679331126110428433774770666950669371783131556775535361614517769807143606628226967203588742614294540517539002302946956999832630045124204704504552732838619833178152000382490484779421179267839858265095500237302076331124516009915075500760196434582483775703043616515373336434590775063947987536945671873303716663972535500834315915189219847902921970050129433994957067115048407939945012025656817976559611448112092993310591122503478599214283562252485038800289835341904940071177193112113071796240936287801307587845366869961413548627100360!
 0750793954306732703736174672646717212329456789507275669597745628085120230477070505117208513422935342795649753485784433574206002892952641607319014347585114120356910175199319424272210273389129535795331724390419592833741522546851074427748314878926369160857807930305359014060162192682530265309807459500678630325596620504874093175348477543016697409925823301806975932328567426213596776085475257805605396880003244309000425155019060379449983293845229926936289598267835862428095229881133017270023200724208815113725732110353685582212702478465355993074747067827654259179918439115411502208293307749258950294842996022677709323981603331918211680594978658091077234268648570726238517624869166305687440613510670928647331627464422512380368768470351891205132023999158743610439622712383225781529440390203536020933739191149988188052506873337210927007623310735888527641448900288612476854229864742077875874539558424177101421271522039801426990158806628570988057170669390661906903839737440153107932039771274766966!
 0052350543337381922989767142144919174397164892630529274908115888558069
58731606178494591691335020180992855067928872598465889679953606692207619854107456862896676884377735027571541775693759308175237274795315394112679619035049651624575897223932625391686215610458922611228999449544553186315026497329888967944207682156105940728402460139245550763109634853444541619512655555400156267289301341725474261091261081520946866256290361685737304611262080764959322815470544830377503511347698848019025948303315818620060887078018481708426164768340482473633512851170910962210573190950226868606609098318347407350429928393742861568633323604382087094260763964893300283409105366920213102221196968365867274560153129776517151183649532304670225441932352928673901643587304707448124431252703415797224272067089797211746325634858996907176554986493461326903812010512798654252214573097813228208365707607380050367561315036555164267868437241690655562517279834906175869631762303229669645966076985711179553344107082615503943408270743961988793513627237439087907454814083186216651674174971766864210!
 8752748374230234771272028671896914709430676369532552855507979815632799573638723705413352191118818819159978145612308537048360584899147231220405396772719630417088080217239761259063373947647342262076430867505560460720538890469103667757097079089705213723221136464761340231830612606940391202798979484000981164069287950251147442017155009789253430016033899741400592606820726209738810609362960992258551660661845871011730500409829113518445363926048138137153400115727276588304980403915040878121828367792744439087405790914243090498697254895569999976855073527842865929555149379060740375630490951914104622795138835764774036362005549702903758211044064271006286902185842508347311400950731335174432295707082291409612258243528846807941676643749009494584025286542649954750646676407054239913515157635191644918329587157257429611139353045729706900649577368032018657561691235088296093240789926487633269333984523138278095154198188848128178127698001198854742256279517992647194989408386202697355228559008122168195!
 0794700179590318230358113124919246751304513845069324527594125700757755
21714514859338039584512939732324245518021005307939307630839983928201786749827850689502032661956767695007793847759657039248283607132615711065038333060053230265952981244132425066946634134879401947062170407192794734034342738414950035197327525374210767282893278518383240525201946783619553757253408727839180036652288488157051591819076335942021123058908289720736495190719625670859411482167500970423390220532067934409155753343081412904685616235917229132576600373339329383593191745000478873881607111555117684009042921337401811383399024837272276422115556440483151964141451649453942670017921307868903954624596243472106334138348983552306837421113021106137133191044285168093956803632507118019128776433049216398208898561252136762431984090437940801402316622315196633252536785003390805921217286884427124522600362110869030659330840446692027414715479903983384086694806389438533303991968452825520153879851853620018057858179127882888491596059264269858954033989240552420965943046222076906815860485253956743254!
 5256721574589173970389586151359563141552859335901129536939938979021124706057799005303078615364306385828704519558199149130254083633131592227787445287047987270685460040269075825835941985842511475110246975511475100702670977280638022316749886705632739884537494120098848264560772163743307229825239418188097188470383113082069225342511606094543192412715187603626382682219841244582311839750650006298312703648811238880989616787302539833068413331499008653992460130428059188080109002770124236001761723653854106333681768304871076376282785015393524713944771590854275741988115522813403084694671110438271145488691198062910737063952790387412442199261886909178111327270722680396369055278194559260642510318949796098240696911807139479494113434045272878172186216113643122817817114641037980336072067287260075834986892091579882289282200398006185130039181309743852312887170515550907015535575802425298267212123294646463544472303175846425266097743433148213486838191411389484140844221405070951729065212872528011487!
 0243171831378136855890491225531180544881187948874007008108290933298879
68613198200907471635698292606090322509165261050863000872315880775433824220594393074100087207402442925164544670649816081495817041806471860139650408822922711413321048681127428768071914016721275852741009043107229199025582213730670521286915501014843247697949640574618473793771251773121221878740177397963102075489569120997747012128245360984293099779402282655208637059215715344876545278262414877879605111417706422078142855845846465569633140123179850346811230317559039243217548230256502304536755927532045559156546315874793838548746064221640994684717026456327955626062860212218902909027332534031748587685080309884180854809318059235554566830423354073212547378663948168675807247594157568767992352855971096247753735784978353813408522439700426075855685772484336519195031460143740365410632067557551647075866650939469733302608384524242620582247510034556174843572487429988063677811041798252663172650524076604719907621761042145459278301313719450249081059181377208086016170512698547249091962410449709256525!
 5178667366010168459456644520590945511792418327798728465063955748706527330271932035053890630475436178643888399292288951799398287265904543114162598102420146945351095376834473261798227280095009319674553513233733489327627974148244982863341190707413963390423005671308333749697557071143666865719625874012326066745579480936353638117922719429093691563002189727650918131649701437726486167812283243402811500533011117363138558587853726858470403109541065655671627229831612976207390061174488794828848508819250540308970034252896989794496359325537499258012545406794794432767026729021210995484376979282988943419335638287757654843980687240452126629610145834819242306633978347375167749124970271284412223697215420765350329993723651688208768570495830020040078027780470198451021545434072723166632890148036109007430460441969049845946286063042054043027029587430056338587861144009560885490208404589944479465660088682474537889275803493244320399687527891582416297999508771988596874938451642474621101018502226055851!
 2973006967570481865848062134298434461268625874374520663074160337361769
733
87110524983369643752338311191996872235864004532457017605793763709586062420787447011285647229621344820367242568295214684474933692842779558312821140140965976740408329011594383148856003817287700420426477318906855451188464218688587507272749291046317895582647698355921572246204081731226529063943821168523984165394843477806188343489490417368227436175430863113384961650559734754967273269286191363080868765480609984344816044081544560175875844131447750120510294171739123990386883846848368046472718065040482824286801223707619928114883843183960998563845795169379991454244659869266145827726413717119013757137058920199292878434501623199281425659325716979090636697597966558779656168398364092169644777333556554137878119377366462283419683900145533720784832111647307259681355469545598857718771167550303660015435442954833082595527710780001836579809635519244721262231910923485152343000149979966300844990495875817791533065001975429902188302531513650169336412250990504789857241767283826564101664654363717456900!
 8029116569336553433535363313197376029271571093403870612124598622393347219535021321922828437500921393271702307702871809746050137221134286104558524892923075719802547605878833513260109269678169488562145211303419071956123711811451963334029871856660684130117546754419789757319364284702964851489595121212345231599275189268228061229894381498382255149640230543359916193889924465159179463647466643125287678688456717075541468099002298102375578779392899281998514665775492751006316330851516580611145911486781837086610231265163868932352245860585234915427167052851844945028272313294153121075502405463863899318345314690110199681604163455865176935999309603586612393641865193337176397740075438903890819938182018698136422076877721506231948649699943182021876573525936763553742412296313642938351735160124819426634641573243469907241200204329122169138517008481274584695829304707625686734474195063054937916887254075973419817841940325555459298804133636970138594068872315921571333546502196010992003958650107241953!
 4111442691701924902011188038056358079210411416959527132249847476034577
77262003727372433594698657079498005713612282107800437658993938504040402457441642618220545127478296503254706745219045285995367213518788602697662819090103095582681494048656125598386993751410661374628161168283023471001996584255521331809256864137470734176561999661982520664699874171988577466227015727506664440253361526614978068396193142768788227115000236527094994837473812606637718449645128124097179249072759429765234991859900056974823897492367393075196504763125971918167540890094901388545982572126819572959915536629805563740759748865702546771928411111539683546604318699801611696249302024231226142368776826798128005986499259755860770777577872126119408875454908335584392873586358558405137775009736629552012946344591703842641513881086159392549847583363148143845340303896914430904824106226762218549971587930620969468415495725003498283697428822105145752456906937003362089490158862881514122496869807472336997521502441252380376236009564207768959395989860045969888277888062336279272825322879116768856!
 8401582931751052293598848828454954647503996051036919576202147791890557332819138936641665401902916569529830266817126108492237804803329876065946542599158897100456319570804957828627577678628718218871930716575143774961676879867584658308807462574806215096419704050456085195001753003576234839992304448887059027285908621191921976853161891209026112570660861540583849391910726489838663114553993553054204085566427659878799456783858427182764830936135454428443431814923612006793870511065356139675655712925906505984595311742498224933753652011961969500145256152490461281058823049767639819518533852676301840492853731435853702573012428414129681670192160182449001368533105569778147845703757231001527352389262891350171851892689413006418377119910974979273610887529890880071868878749967866890733761003872850700751774675051042272579895881838021823024959677054839460489968102757947399116200090609771836973571640694633612326700209689661244855159298532959985826808698024009042071915519420889741565350773879986022!
 2439342862000772465869100833221179773589082420191938957614229062961517
71107746622562136965723780263402411245643911610146128947202730735460950973093079816669868895807891160239468502952905043920070580669564899513050323906154391199493739162684124714837080430528146880534563634358830085465726219640728675466347396636129365912950955568409518625332243851011025297318357726697521856586749171527247326374104502791549405038092357549023443622477211505817268883502812203295215613553778736803725568801657142367564502176877956274078087974190704019650941602815129337701310710077937179893285160363486004028679892866531063902351479858762634067646411731591486929503029693730701939546036882169214939519590444297718885683358567331743055811730672868076628434631990297168505855546238936005877615834333546215166727780188455795269438915279878596764528146861386400904825812769193637157901341338941271576010865992063084789640425698818791997279501834307081124525274455875112485829573333954765081846885504040304439114024687472324094902784543602621112119191102792481335728865287975414249!
 7882883277154440517434113131906673709300334861724858393753892418109912472340634803627485638545286644643145329358835682497483339006421468511015043509659476921100452765337037798648189275232732844958254910124287045448716925552944675045540961767873614807878333558734325463562611724617084951692095284416985237984647314798185797223090164673949457573077878966096895256430166825505166645453597190367973278635417700691016854077477638014553111728093466402558725864702450574993201893905630142625216405286174380723991216522768198019663457770728382762257960069697161884041079117074241498142541797441710392624558308868766210822988272880764557045242462917731028385190815384457460439195824175472755918343520785661859142848026976228709471273184351700982008506196040935842756127102446890441322420220104110388916050994211282543295414466455231960769350655985158485165421195386222517153243069326191484769770505779272239681773234777086842338365493480393037331852808840781452396550410241161751001861038271179517!
 8034314321822425933411366830738729386600352368210054051143024370946130
66448779073568995790349755251335498580100358872696592987544634560654452242172278199167571526796286692235574420653683447512031225488830631042812147430256650615249592409706476862373642426565221638838223448518736512428490126088774688557077853928737079199553248646983389754313371127782976109325905980500280511271539863014495634891555947105275334756981385620774546814079228098215927100137005763930236851199545976226636411534086693273188639251770818426577121688203006466180313548791300628204731158885917009749775092878363402256747742064330354315011233028393100013646748718143839885619493215197645193159285685954920676629997435229784902020334280721560295945404340895987634268579544319882262807446663073458592155897869217853596816826282821540128732423894844962752230032811919421125983131686987314574325819679067710124822494419852954148072592902778410426731902501764509555029257219244091407566221700565129934098284905454918001755311804671956347649276653965974562202823046413049915765478738008724722!
 9888385491821116871031197644026437618546661663035683788690662189588226906744373238979295546671555261334301139935574771674819607786207713448217629049998150159571753780350850678980472906918985153721232851011827973419799494339729985641934050515013875374229578082632232297441092145321848391366240172405902357747160097303675360366468487305114541492510340399044632126603158860117353204642481921209059742999188204661577524605036705238157339211424529278357555724040990308341591348914335328834123002279395467292313658518129855026265579954566566262191843088886459651973600203337629398441073651932925265208017557493586294906155330613407496270665419501646330498791691618723773211594160218394095232606321223930527252594349331041667571560319675933877405521751744421310977565815901406557828015849351469092617983444583679196162063452192322221545721589195572209352349515052558281988266171247057389098238553496814464257337953432301002738008260640889419904516747901283353399955714394135837941704770413379133!
 9174880272806525812833235986112341055383656355064907585537979869571883
040
26324594900789621852124286112395999872777904550196405083798725943346017464939159631599931756113684548583511562154145709567012635432886646032900799472613205310924048813437371233624150091326610338480916987777862443061904195003583672716290472803878560354884738171974772865374362632735287560136767127376709009786745522327021476879987043206103750075594747973011133901808277492172639417365721278557538005810772174081096980923693335890550526872950952775011039381458103525319147836536429397695015810088352226007260376655197084733497162840153933161815954971340272979507194958198557793342167265901537865524202970077062261924269002558294722220602423147055268116065360445493194623231128314585740237886420421569316294499306815263233639249661117344971222318314966623231008573622022384422797345982201740792719337247485016374146722856773459632594293809366065737509799731208081638154299580970222932797718462245213614923031844427016417442008640359774871805095336031844862408539971822283595394139016982035029!
 2263615557605072193509203506514704444362137776860684240130693777683346357826584801090810991029103877787635261944382784078883991027210058671436785271122749007284462837430657853066472593486408734907732017129192604063761757438560395367348873530642316391085464251479903049228853222186708802415782552360909811920743357874538379346431991121319472235879802524943452850674501323234578533075376448412329779770060728553744386042545294814174719070699463586379345268648120797385006793234226653753661448273671068511827548717501291281824112622445736228118618701117502942592496368335611218007664333087366896090878789995756921875676598603578091723940199102914977136213726271835660703772466147034469964363547551544801671405079627946048828467912595001653169948001843572642044011890837226325391791843690034703224007901621667216020217615299029902192087746140429639710982678527880886037990290770807152482335706559565918127243206802634942079662207361649786611408409820926631301500372392638249218319436762323586!
 3210586104307545067104057835174621103486839424496011118629418901548026
40160068570209159806245149159190410899727729716078732435069537914162033467446028947431796492024430868427425255529223432958068087951486723042540124782417346846137938099073067850583299083898778741067775530986656867018156618201891493622445628383679721907476061759878502824296404038552210867880252912209268578463841054889005966208643029619340656511612634026070853241887369430106857964253081043619619141041899850703478016095324821018425359679328695054683856632196247233466493080316046360098569917082246349259069801290728462727962501930962494048043118556802598862927399357750283099622184612153295510836426991304222667048144139298049268773460146839156145547227820009273889134687275727146942749040655262566617991298090963507999212134990223212253880655422959386963398189575464006721971986435852343861305251744288159082161422316003111643235104058466010658705679284067494045315540824838120845457741738759608832060717780726103506053587647583776348205689872476561534465892129080778699239974896875767905!
 3628031442934867931372529969650010806737518381341808733747454658282256015935000835142187562937714448594081409807134283138089476625194066278343141546092904262234315126840529361764753539791756326459095262407724927129429505738036587961436071472416729459837967288011176148775522101121844780947623979926620158071404672081628508236650178768702055365348403455885442450567447825556289511870935826451090047556471535317320304655071465682647447139118143303046998920019294199018485669171225580446392675415816869749483942447287367681004441148892922211775366495230851702225354787516834986151614611754854678004852088423198613248127909362633816038093812130941361673498694162848952803744199833250893280329663078268378479440113361736641119853207258935671636287484583024066553748866300058146939060614334696556286648448001522652616640595848944839228166298674381199969860208460707310705625427382864368105930044945169328556228831582293542934506549595155626272702773249979031718456456227719896069329225534902455!
 7373052715444998326706745011879661075141439257277899049785422689245594
32418127809791158933353332673182346128518458630423923855310580419093301687251510502925465790193621132388272934371949077939343731598602864922520616663694529793822696788262330093279186389196353797274717534406444791813418205200519813838897631138888349293288645090156499607726753137813583936824606897418699355378680743300352837112476540814224466339529512462243852315724026900748802270539732900627573956553662651539941706148609705972400369647435813492531564391649576548190806118142556749060960039152487404308301805689878450467185846104190056272120344194439844478446019217072217880458821266455320000706273825873588848691471125394102864141527055900714606934690086450966535722677156126969971737745163127543938764531055269931825668861237011624834126223646905643763764649611308585941347301627184196049200239155832873368258767744093359597116969388688449900483677327561010859739647481064767071311220477531398118700074795894569897106661066304628317276531697690661332008363480602762005060524829302699418!
 9474884589576550404698172361049594363838866029653878881632564998733561501610198258828454567909721413382889706898886217068011365759204346690985571172193940598250594476899501783999263789905326648564580163882511917747924699338023490945488696014419092056450419026851827939275164233237694047747932339594338731538136986166097216531607785587734799098507977447639984326007899919903857097431619227575406360205438211652607171909692406150397926315196274504271614948912199902001111972782960784436360230445606532744202633556127907856450149254533441074003764382696132867036951466836406399606031350005833918981810143734314655858780698201799284418467002431762144324027847333274677505521046613248188044133865203531673714844018530202283871193555642196209745391085339282877032878274068913390271286862999218963390743909672195398232457962459437773448967540845089924930486833595066286015378297004453433017458182718171449449931084203404643365133640979307780956960784634712623684048442033407487007973182408550423!
 5151720125508599589687633045177838722926730253649407216762603141599487
77767877324969892294174190193050373840492680199911771382494647563644178681664082888104206520308255272614558517132313498724608968492731081018319452742773110723592429102238628869003670920822394404588143043884843731189916919751701511756222645584382251387103015642528815461164513324888742965981086151569019701044950397603694609080613670873466411133720050049952136514700620574994347207155087506140389287127553694364059394213822340060920030479883339978144712203594594481437328405594716483875217398925096544502297360807174081934178796135111178215798242971451216414379755304940606982005358303640784848795091250396869208492213055981689382865217002610711337786984608783524563558357840615819793871589424182827431865856558917225994394122353099896798782591714614229297676549261658185573842308059783964319120537326279631326118588150830428467483707315540105473681136686044565697751791955919437150268897224618752831098850105354693147414791770837878149693829737155333834251944080093707177279336133692493113!
 8773777878282555812925967456050493538288588534766537820216388286758556047864194317579652077843841513924571711306881468457204163745419703141901124006875091356146516449100646546477630800606147809631322040204079309468029745802165188990613804388485496552264820258824553789723769117538551118451207983050399173563678741466462009597505894417467364833184594665322033008695255007839757266702454740929468999525349899710632794849299597068816809601264033888590860188815350144457741635884823371823292772366570235839572307819128265968754648026625071616939280881155397246988921738716115479263068383452959631524377547054703604786933238773511542629230661873348051430620857608565252907152930067858850165072629114544937748968713359327769296028253125171061414501936514651258146053554324471592780783190367393065944820286011254679257781020741554510740434194287534935713345430161984336885862024851791780895652233714834815228584340784292046278511354840028155206089206992120891045027604144194340246078796495663890!
 4742557046678013729620736177446068774881337692777635770943178225216508
225
60901566225416091927849719988518054863690081806170610826045214037023350718852275932756793590600795855812382061499897093217688555355621111480659916242887724846571491805842120467788307868770899395520837995615360932970672831647157659437573524288925025279177696641692115224766980891684738779547706479078310017240032645772260714487472541593285066752700524974249772125759484006618170718217867875866537984671723393232363457942251731787269323912673746974575737640527363980584360683911458777473299748999232540134865640969007904374010634195106086690135381330504917635247201467747588822835164312348527898686289632889640532384665919069965964577863850825796055066300628386630834802690449882154627284412108900165939463125609886811316166424404707211259456115838759981543354839968555895166620818945434809397066720495062953614844769337180942959990912062893108962325756056440745507061793478284521502487682392702869603355591653150430086075496728433113177773142636822517632562787940428600876046775097829101052!
 5684621873851419726923792900743971335499017703285671945285180379033529197777414186966601269267386824255050297640965672574425470865258868629139455661437246379859258722092118614938644165718301024586701795185321801389937120037862422413935140198209821188228879536531289420139838180749079054817674916578522783030839969709665736008621218477069460985271999072332011014721596259398874451748193788593686802210311505564634639648829929115275205112003956026291170927782609064706864779219414575830642612260943987080190913497400880097271131478409200285092823579056039902771210718442261779800026204708526993187340678406051113187237468370980543434995801743652371293874857279989047844131453528690900335953532326539343646189252978767400672150923226239805480889768814975547239333705957003410057743184019079575432643981401930692502685201834001039292540333791048012696456434958997132753546654302422123843107170778975629489113300884957857840176917489677430490757726418398562084312410677188673096109322886711621!
 1477946607210474649170852924371978335735973699857783403821141028333112
59006482020337561533020806675454396461710608332443442421300780168338113344873329838791588117100930259338288197097236237805141607724147411697042491219569478873058196793399415623587588866019744825594562512603988866200125734341215806131944962325550849965597569196261705030902173327350094820219017628949236816936568835594205681312775393631774479002000398586270614906260718267451651879271670558437740007911930538587498298537717643896030777211433347476411929621129397678289080230443271245899374215897135730651322650912754818092628405668055269484945660813778849831177341704676378681282475237937482314290171087085032361103275190517016479028602026220203813399171270394808804515509693931452414785687225637607636797656650356574753911725319444657594338497653853554857742277612337661348533270999506201776497609164790710299200444444044788388580810499658011497941420335106906463982277642117919876372956624966402635941595320497360171495718576968415820905206482304892318436454433212717751533499238135246317!
 4982272860747154842263092365405039251715784436226626234679672465396351480739502756904963653085616940488554550849000425752118306976841056618715660792018658398480521101794893041615289716817758674998055704051119984173694017809677449184279649715571292375936391057783092315778218147270298297948519465831631238397010398578656004571299675768563814045394414470390180420968074547392391828040666340754512498944973431776024016945002208962231327427192278587520771776263701168176838753219910123068619579964251303822088012909058979051034652360252746688137586648835395036000843426093824820673161407491909058025405771137424701472610824295984617113174769671569480915916789610083271100504570234620972132597122952136305451009584031418801504511389364718310791891236794203651908685614107561822537038878809628345603516765806328403177620808313488103087961655332299151203671966759483195164255220736759117799976184914333362012322511848205180162141625546259592120492803809246428473630619429196215909229795557912213!
 8916927055380455664092685389269956864468285468190663245983097346659762
08078350831311738955999972904558639142387952196173628711704109778427125036671565837119976814387550770599279863882556572349099134379638609162818976890421938651491564367152376144679557202128945417166657679370376961868859563445033571415172982859666627354161202235029444302167571075559793214612749450558672389755686879990659867993485806590536479153421741301329661611171847946540425526571511358365746818571984270443645863568323767246396732447822711475190892173691447854157912003072934372435651234313506071194433938874899911707571022917251001672172137370311019304255051896363133982654941507320146448926556185764123205314248524277953409080500327813164212994994535889341785098997210173465340588369928955886571441436548365642753216107529811098554693880573532570939272294751745256503894969279174220896768843241808382262555316344464936616373295203808888912944065224259062907899280615230771749269036113257882967239193026020036422928052852072013900802776472193257671296101494839965036219502614879926354!
 7962887606533006799935204157544604072334562821294338266604018368433127464677454588538952428977897316954161767880422573025674835890785970382045600373614266591343121605494126405464082751681508086873535254332800505848961259360977883953626272103821816911242699698456364943329533633834861657352199794018178782055024785024938210524329868854392755436695698741212549470460535491599785756124112277568724337061888905703021470158713834550503911440411437922897131209899779763879598652581327776707450185987388767842417470056797025043925357908849653403485833207770261813285156280401845606353422707687926517865049831015896525148213390284371086905084393765531120042793220491851047074721797901018865582439295121116333904541815064961516563313143493482041303519700410653562830334058373922191978717644694728519863433400515473955219297550777127238039323382802445882309031726248715005154574266443698161540841459554907307528560459003702945458608625385129359802195715236951530371009243206071934378234429866833717!
 8137302630595649998238644704045971516052270441757361143251443663267704
33177639264238961901955820739068104384140308945527510120491562846746709113265513170484063823533367596167659099538458086656744333604544107429285987243269693150573835948724194428546694316580942769498859171323426597374432442516127620726805365729913097084246675120112107705512353921948315879824482225422738599370683271241849647441165838476002003128315884080134038083297376005887143694796395279462403234643708721325311058141371127928039629731065041767679539500119388548347561847581429443383722007183280836653748348296548706385047033121707441992397452680566159364916849994486513852973860697266053745527947432984170878082841773596858693338084042817845476919744635944193951281588627319644309849089190600902826581556460389579232238974699141697393118631418381034784975041884288738301821212949278954419082476591650446202506882664322331403348857728556603493917063431152184458563405863401477407476202113842531085281784451058801196750351159932951392455442831982307949131744913266843596049045862235895498!
 7282655418954079799702904217260237148642139079166628181055946272402941799554667256634468063744927328579226928377633469892257786452364383660283349800039138972224296666629606871804540407033571927197106938463415819523302270925752603523218905749718074034586335788680462994341952001771181280368106012237728731605187845657107090742610787487901417670940658182337680614045609836668800226257641107991712682717032457241362306204365733902632980711166126206676163597717888114917826027288982321231004349985135435085253938840459134292633185235311222491065155231153580880701792350798740677677777607495494180331435495073461563037109183150159548656547848984715522311942333367469704480266675043623458979112264636312467621911590169794282817552376315015516476227242183709182662777279651447813024029529870473597330699109928008748077079913830255314311437997717616716164687770942708140146542378048755570022774608634599169780961707906477907716040263708338325013833795429031673379385607668476251992389223141984923!
 3863943530963696928148798416746234543156104143973333471763730329200632
721
32940072651397329466801014953179871634182345361437022132475042279442386829083030871105194044514119008304463728392351434411442381567174608715352660212558640807279805611933890665348428254027677989412646081036242885659333380525174034519800859297153039553799781036778995491298825240716937355762987055030916135966221170328221494085983518157573958420644178334528646802975564113838489331293660128555926095621695213634176609938160022719526537163958475344128173443090518476322532673877892610796445423952396360179211103115354644586033484857438259274718746574815901001849690442154592592628647927781883067732140210426528621719135928724432168712518707013984428686357337383395950853016742169100693187857721659499799650001080175391416970841959243022704375945806888504993322313046072735297414342216686679212228191985085164012507841142689889225704917294011595706908619005473505001730656533284048385114278071943675150318626623066935275794402084474656870757615051109230151549417151326961809746489557071879739!
 3233557445739243633372116088395371567868113869565225687374794805172620562224087802186313059072923904917975763705494263697859733760800375939002896932582139204064198967705922734516963667724296870331431548743667141532640833769981673866787044844149841761572665310293736043324736193870961327856342816683869822856188439647645044105224579507887613324867724311315113434092481929353918382442053829366880740627997826105475997135567933059412971566939814925250862065240039437150168546578850272368416034991586352226436771865168860715350259510841826729851605459272191513718684147714553601517635668056840298435978531045551847618529040636785629680716037777424856965569994783232411507142708848372995265563156843336744251338679852977364334202873260929417858382809940515913207934970844840949924271341716382208971001656088517481731595423822916481006424210572380559322712397426120135081564770143187729123306892516605801588682719019755415393466311361489530008773062531280025293880809390884932770919278570889822!
 1812528596900743786766992403957671987826257628649595810785976211005377
81149672763712071293723675281627058688692753979640416509839593983045728119158034084234445360616771948864789903330722270315497713886362937895217932544023846580217472930432224997978115568256475042565115743991052725809602166886212213260884702036897694038703693619925147713516878472208812965433091418527687889328860185736984755214238960463025902167584015688005620873379228552420821274506464504477264825236933836976516168663902120626876140195494903755944290705864024242357306381243468658000953729793794809994564359934040708367888620372382819767943276030929862419113239252778892240287206943234274040575617743358660628390392800714148871153994229121401276649032888844779413151652182281647699221548743026850243496379051614397957656533598900865259478831800334076517540428164327750050190905980900036575103825455760408466413280144903045387051419913092190828787967610517709732245886772396411664534465068941023141164561471633231395364037631887009686412281262724864007974962056135417906055301468091792793!
 0921981929354282223877994084255116792233357526936638961372352763989385882709617889250671101462329927805815366012103546350765800179398742178369386823253486164200649032922945653593183569805089827875754080092747425440438275406413654972086982870799516357946515456237630387103247742037308113147877026543073935966264504226019049190252789384712503855264197161731567433796918794728230286398309385407567619423254574663280374550604788880736779743463886602918812186060969327423381449379821281192521628762687059189070451484660355342789102811655938128451209912452507527177476114245703012311042217866285026151229107487245690679085417442592555369814135101114493680192916892670859896200284173429512598680322930477041422292675128171031126914792757368374376861804039504640079492240003265313304067668809030548988189007964203950279974181888674556194400497687397118893409912548160700653831278880615045251926736580634463799989244409078629286034564917232184308092565558467437154492635440140861414502920583440337!
 2452089129452559969357751777208154115267316475469399495250498217387846
12363827546122229255470102371106660059563658352446303720417131193969296540646826592058627201913316962678604083269160407920841507594603938551141337633518124749410770795510934496658103506117891219588786785014241730039293550274216098528345037081870563946480260566029095073615232244329940711204240618993514880551813560737437678114400622975331724125353328847957730420101544021701291866787456490595519702992837556102077481176030925498899943817438474164266618911689062616265695913205254077443930795626145131822116224157961657914452724590471750882024765930514283467688114686347584796433927452685826306228615399333058817653576271939649575052032201427634120669231618119227096366400675652500664604395501663148098212131159674612422709897145610886780604003225560886447180568995473258180679877843469308234595508347949483222924383972275919269974914531296392209586320631287040912726267149743971630139997447056026908084595774106892353593150411371689312138843992502375279547833662374789474841284523188891796!
 2394241402642646276506024834261168787708240866798556809056010890698481951207411255502015294897764432490930679084300597338403235575909428044311667852708135302362346700017556299104549684072884528548320322287991200321396795413314842796273038873776364368806066802541568869650946900632290323818467433952815642558548236294719622771638441867253272439633242749068640038424429795121623141824555747464019268791637731497436034126495303722346095947208755711174564646166507355795031988875562695369495849285019206071959465525129548381821643330611749003827205577893212652287822407769692285848248852910753201655788166770391971861607279339827762958308413062898232070247311583412435439213545589752306022581241025052820877514764824050673657220549361214143828551789401918380883649269067033187277455134503734787470174926788188689287333575015913534779563112222307425638688028199827123991602828173785091331295544729617381900517950119556888239207587485904401790348110983789003543167433526464930607604724791737954!
 2441579659678547315789641971375395593059520299296611333178735729488250
73978242679073965666328961167401065962488751286518293205199754742689481539221685787907538139717262008323340986469852894199800705588680739933278897310226665836945696683342260508756318147214044682426981251575096736249458448434462883981134485867845055142331844494360577129356999958682103478960075883114807340498113300944918080172945033844006099304605678048692136691821312556970442319735734060867458338232700433898296864089752554952236270579190428497377240362897831051044240988932601861041217920418751493978999314546135895416404940731507458386845961084152488299692167395571581450668231419750667488592811012928530654875408106856273158588921161706431719451378765065902015564807227268569433276498559222516708641474944961854852161014039552997648310934219995185354703014296688371317077664179163133631469731789702877183443775025191747804708611725105926877206927940633467372539350544568626920470598108140809171528931095129928057399756086700325574522963484732351749501946146569239242836151908637968007!
 8950669037948290380425832293159822905803503626628197584392317844052679445117972727451755777920924639393483796395058354700409501412192196233268921883475652386931480470877824122122533511921625391524862347061778401863041613390552205767528417286071516576815808759513334484725976756676428054788911519123182256311257907819281754894915085960433272846424372348751757836086351490955423738168977719441748608329621740313643260723408798324464925439741576461076050810647043604428787128929603592487988071896538430140852437541777260779799668885877625547622032977339102882806873855577816524976156772836864900963022914307537418334473104292418268448846098396741207526522449776741552713805776929374419711091634558683547707724506970682129654333436569396123756256997360475918738705813400100038194265568817941020150282876471100395540707306380318689189859509110099204475449178955745337636862869807247075308700414768002473843021768563020599158149579076178939319454488836084875792639269615473745132197649931702715!
 0596161982890115588368715298941662925955084754511291052004264495687060
269
32347545654374633303592140686451584049447565873247982512550521149322020215318605305107332356920514492018396595468399872903866058263177619852082535347384554830493708606506772007459284182791582858536608241747612278049533694546759383498769456197277327272236503150373812864689978027672055552417768344579183237577038989364103785551445485349532886104780551316352490495433587898358637557437218222208103804554189507264779135971864477528381950428383464491980202751767610425800370531692022395944956163624797945872430805421524335562566743451568313196872678610654197513871071843759806391231370491273765790258129447542857236562849366010734274802327125043068038455774919110747010330965540177621286549543923604567698094556365251506431236298393381512152375541170539414432292812533191602238512094507553532141864829674436544111515405963563785106977399232666918718046423943094402780340500271081012042253190138500221878440286502017930796604928057825620026623114285001790548222204974754916484421978799997656262!
 7153299628368329585562127108511233059769602589725129314136975487648097976830521081951646120363590602405425332592740384567161848686108602178764587824220826878691715003765021037213229342872906933195735080993970877269264483001089032782282063042861768335148993832144923726944671936538422781775593550287973927127586022451613389275267986327993960604747538473989295280844708615392913448737344081986783872885322075769138194587852680973843103633088055847105640150795143374182898297971407255423613417354005226989183664289218992706312990972174157343293360876477248817786402239531547407540569187267386989051548089909263026217898465711587119539574192389261389176665038520527921127895307593873524877042701190707026527874050072511210686120095959615869978253595845334278292207979152961916627927007424701007894227256594599495845490518788296632129993414511501102770976386803349015756857678707552332397208085467212965715622051096584643221490445380490047437265171248429608890652483418998822604612936123858389!
 0219534857306791137837246559711324072551280818047899109220164661233253
34802480084133077912247503631826034976935776607650363966804401702334329684883978277404819477308264766473460024833209573086374031517027401653209111845765549292789193441075567689777662147401410811202053443829362354218573644326988394887953189819458650676441476880489565620857680387568221256293159238389927448842483374099669715396210307163586026323596454032676344790684096069835200360905872875805404636941971474620128121866405749032967131073226645180941928445814938182743632007157016566928393529960085217536776750516796011828370414107184279652389801855085658432770947775670238086696825773939736482511074508919711478904901610897393557090701088687684154992631573040497786984457512142983664322877466820855436055315565015003398283330950400279462540668551585559806635657642173873209795794045714186781993565694016152185955498484703058077580829765214375574930543503373934071902710782930273435285547499500603442080021210362421544782700231736060082390742626711613215060996574665424014984716562463978622!
 8914608532834620625555336046607389504163407054214592336538140127586088262378688059255281764064136859127947071666889194541053002431184721815385338064294194804844397267483951849907050562565251770285042845785226693836807052885775654974876486598619334807072528275354601012755973204432879919966341475860519643714784658343658951539578085058332280226481049770237262356474031776772856792247858811859382845876956525706226566309888856066744405977478906144149198889142141690621034977735029789306932342805913342206002057970537903801196965682942063560527214285101187878820090467786499718905893069180251540761198689521013082621569001543593789083610287755363349465810036608465418826322135246274434168492688282635182953653126466090336344203553077825638900407816472386791758924996170850116486433222971265352172476646729369507712637824107560720758125672544972994793328547973674095152690275131746580663264473672659351364981793877221708401527470617390873608939171734070796674077131799505165212336884372628572!
 0367587662193332110367315089325486282620088552556036688915965805302490
51659167650785967076537323918352554915259633118734403614491562728889272979137519886725771433348893132039570056488317751877788912294897217969898651090106453783573711686159235668407609728925845954852866567708972836086328416111282386584877371067153277541408530664466279588972094871979771630637649240879210350240407003575866682187906881230256485865634239082040740266857462047155900377059856579227308475218365819558552467064016929838468068376991778717948763210089957846452106604555910197693861684522800068596471902836367823270125091054061773725695956903532467328521322425729895175930855787739574935194036758316029185207129836170854874107003424039816201094508707244229995271917224891743572475209794214041998846860596200063378955605880771044521392293173193287990106145025194774491462360654862827826300627397100184442699950880079385733723162357383639386271551091176133917166186310069380095860802918972294061920520760287676962215324657244719974551838702771638640180981819847987279633970288060903095!
 1284992860892975827279426961143995553788875228621491366586471179112213763528023225952083007085064839787626586295147363953012542903610033091724718390026914847205806775163552565257183122228528866397937439719821032314912428062467735665560981898043597862381191113744079240491882099473277367808374708134030012055808352850485309063663942894861324643070658997598326727990916160571682213364443405327487814115816026705657104974381247149215853659041290006489577868108637672639858764931648099393525613829377481114026756791794826665350957515819574333765178821241052945826033568746419349855367424574085867099700264424393768231665574539364176173608853611041837216997088160639600083130968194137167640498174865960809388971090579775597053148165335851930845513529650811904832418931414183449355344638634046032245005132201212665743350209266621132097146021735483833301311244584908226997640410980423840439521776256151257540947884196269444239604474880388488151006851557753986949014747534774309767065251999921166!
 2258435445466842479521415267423170957702703367046467260393511807338746
45910425597330132661553726298616736664221727725758308464265006881887844280177301607361031470970455202578288017161872198108584446480660215456726684854227263280443525496823005168654059255453503659055491018977607889299000859007062612959705165382920058061837767972923575409598037531231487274127533849076396959671854061157426720614624851371297889868874759019325054328234914725802764766706942344670339043985808479878346570813808082548827620819875925564779837685469470302326282443115908705013729641664455804515279829628652867428262493608723726360216464512273589889892444789250938142594170345759329531244458358173081417452878237374736836868339689799065053376586836523203160887478191714255420428490291565886951287399097747600509265720329588896322608031193400324014175659323188067568344937342356039316353034235509099658643071772229987152546989294710111946055979955095412703688042175726335822496210857128154749584255063361615913753330152354092131787654336654030130608504263340909269070111027444030060!
 1883036912526039936528551298262703803257727414716651944008465986712206496641485033700192940095415537782333865198390136580791243490845245879559833612760886130225748853857498006855075024297894933695081586212622925813416364321247367879258632971521042776805719532921065720096578709456119427839411886520477514091876400027066257740267625180085387603808522958906388929660643451151820049102985813917893220191393089164780701925853894067057412742293216343399519316190339244289006738904556481690654225596271227248630495195659919037671865489175512224992456937098236552291826600394591816231598593051823807845001221994942798262066419730221758947025594831830029119078855832034548613923510663847629387265331898103324887517084235580143946531702204021866223348670742348988076360272609013377069832250687150167941930806932876906011087128300673538578368296310884852744978948054491778173051538614833642556969850569354783191983505446832438392561851782758152470482056116340262094922971667044501533079706556667571!
 8076802802919610629777124286034412708981319147200862389998899276783086
977
18666748760121313978470874655370123940554344781240832268531196858178013386517251598857846422260345154040931158459089976895672366156901987620928766501112210435838900579513091821680504575301878575201784582073111389986611993621730946748468673526272975218286397601916622579949064768993231860634005124040188066855069889382847153488614863940819983739359713607664971450706512898395523842378898072800342528122031144986617061425515704659523497567087547018349233945872915388218129096443766495249270407016252262998125823026155215385915855637696553699392502625683270879999089771629238258859607103835346187998969704528722704438046270663386529084656277546147844790647804574291306574572973194434539954361835581039121554995873486788396730810330368700535117442970544848002558134870594748009348624215038848940445762597974225847026885854182502312493762908479826197599620900621502639551965052273297701888727736977789109670000240501839293495928431504379819471014905811101442130434223073767556835194779289504187!
 1249981413202498484208238257857888717347904385348733136179264431490523244375389469597307771900752012210971784809370842608190687094276977199466977383080566980220969982683849558631509095463975668788448367168276827609578215960608131249996552244534587001032732118955643909058458390877097383882832004245058325285001997228264773187021828904498087104861663866017492466316668234890780713808311662103932476597250368129061824257751284298323180247630804923437667965185137048079326315308884825627830174213300385840904035848760809163099788016427216165046843713567588692647245005888263278559180841992586630515149057450407400340395352230955856981232215403045333769214268516114273538693324877920490244685411822500795319690530543251594793887673311159854948703058831457945856656566334164423537906872845008234376174900373597494004939092738390330583603299148057321913450187626964952183531345908653082013920053125144957182587423071503707499150571034488047928119697184390092964702740588925546976613765843860876!
 2736510497029388778731442605684862065182488133083529936659220517622733
17243782751139474169859627543672662953734271707020256737093521019303447291257646330175952106577282682145850114347354400707450024615172294949841342930904724640207729176111271516911405440806230087424707002052330485332849115486909081325955696576068724403472459067542351553838103971468885996779887846560233401215245706630275074342810593762834596937500858930103253502697981173285411047042665094327676600716037777892972767502362886526923425014315711378901889652580238305381451665837042141263068109301915530491796740776674631529609230564464811798486504516996150312000649315061156375768784637267374414301822016039458303284651254316748244656914412517224965465078082203244771051402698181374749609895745475059493560000302969709783833852607333500084516397400402993155262498652096064014041850890983742171389647786159556640038291131987005521938715258969487233760030526887055333052216955380486688301879757636762744180482898439230846488851910970140091429999259961739309689825963090410275407657323844504747!
 5003145585219966224625523743183122640804057312784949476539171592602877998843283686277387363582626258705134096202520008630000833842939973206949177831376381071951727113243754893903918292619948586068022811253090935835349154441723874142907653199658258876412881525655682579446376514042127256795166019102778859971983417228055738430629479459380201667491453587662706710836404573255904957818112108451344139273273920523036386414745916228572864805645624620152735337926383458512413971686778746867100136990755891231426384224728759586630653222037670048828391007753960015950186829356442614975054072977965796262470150209194181674538761598276315279280584923142707423768894766813909449780553332084254925357844309425352801938185422863081207585555078400396391618789363405969698302470220938636757592137433361645811571517834329086240703474250853746634390003994303043786313305024927493855991576790583504152916525184140519801536487313051980187786683304089811837334589716007961994192006722366724462270884569471912!
 6672988321809734529046656877532189097943866158960176281961911644299136
89578866583523965966512774709911671507411958045113213977820661887665774085968516528951131225319917623998956228875595436438837569310556801418559950216284774983701587493521364217508110503030332627002660013541919573048611642831080237874821349101253000282302419395681390931128892959010009676925468853901093314428898206807709173662399695854400497385831191814707227547216820563326304716928164834922287727791620917221506727473741583361256138511835637303436723689698168167883387056956947900203903367029656514939666133461661021776934841825621839548624132091432435673295437897844444028992121725265054887572086196946597341202718302821082171501443235955074426275046248230120732412383468944567695249418618982110621826209893164493917459099995133130379454258509514808456343707390203027365993061110760972317260829884567836796335998641210287904783488965932954533794199460231025118522467459822391749462573106567510099885130938173523091640301398491722995963682448407712325485305217841900017213316529592474790!
 5609347209014216788382266768103402186319269836516878005495092887757697556835697271230459837941962594176279394398676390489553463546262558134694428998600762980053668345906523226287867394572931189312121839004210785046954384089376130404331939678757081973623255347502666491695483568355959828773643371078433036939516456770550510581679045004373391062400198991771895380696101907054275731404147293580440355895881585415279923716892524585378063273776418812256740770045510664725254762262941227109825721010917373349341640176067989064471868175318321539954621513601054839459441316299426284120407265167325000538126879053255478037545036643309674357215177745063734786991109933545677072312026074840018015350477515969940033109687734822795704709803691568751474807386638900455693574118471851126308702910029988335690032415224553951511149264203905144223089488233215627422393968632671922800185533919493119376311486202709915565327110245187230858017821489091761831278506705567952665123493317475005859237970726649935!
 9969739270335550475652075599755818816450883030164414312901470583683065
58321440865595939188944954431485038370413067360088279521523033860248579878142842642638599027127869924555577179521649866342105021421458204467798849314833841646019317708346292072568959223652924167216225345746796677266499548074395839376661456513040967743276170716811307097241406085138933053080692989592554795319579021066392551987454505903235202085149931896580630775446429693020382147311160617578936118985870013819823759004903867529060402968050460554096959624742780288801389651983618430121905347708866860847330406974764915426587782933480229300883954248258056705593584187331709316720593584538988207801974937741455816208763624938100732414244651587022246401882721692327497700817215855826098750998349650462215725282520918193183800403101628073375221004195231159101387904863830961331031066080622709818317555520934673736778277605356535407917474627119392206153986632873720448867017868016736767066708997649032250484521961308521579000588698122621015653830752598666052033355794798156994095172787700222911!
 7514325593376637383036386066847137205255410766970202869956221368108960466547814636334762050925769560583546868025848749579604146434343877976843817973061799285798650186752695020887428975310455911414909585342958744360517274512826387553362771141332840242441312250274972830079527131307267555189497709932476410173992061765906996188060060365437915447913185891119092686063946503278020651897732938072779634489584521001736075195922307394386933478303225153125795532472210802569957110866901873298964703104385370318681167060294131885524835815382913916563417941656472927062452774013395967976845292311129479049603578523190609921955881715627872752600488423861839738469238687206553146480435301794148721289729504526434722587834777687387559516770017244243814981549410768628303190109915533557755091592503844006060790530238457754536934838573819575331750260235321313769564814447134680692145549944363126074162588230139242277640951581468280847172906563148959261889229911041648788195789851290317738929695515557569!
 9089884685063572709664225928436789220210837262847306659438711930729360
315
90447846552956201893104133498064140120373025845266853253479009612771764399700935739107117213650051736387834853110349187551328683711505158276088992938077491787349692514701971086015632296899213162016772967785057270057517926450639756343789825938029900703764426494456693720461987933482094779831379744896820679111614212210926203404421071061376189706417689666210970741033530287159839774769228839187754251675406421684230294065505898148129252382840397436766255991622408016779301704915727755605486874360614380153358395103098773572649981264249080799019463622685681344417325732311801749894132291244800986005655311405049818352973195704994754818112629798643153957652745964937580774475610441431541888284933173286820623394105925181089580844263073084164605055216562429372322421462147864739314242764294539406796980401878067926724446182975254851636866461710188652815070833335167285035326590070393523001853061859641700108464643667159072543277227184942607695539064233862162506028383246893776410665118636180286!
 3162750753044698873364864321696600664598735930932611111268243816546149366743243030492589512380734821099794568003724725087722810903607148327359692817854369097537695958578306863014586078080794592246108903569918676078700801623240927965723385808676572176003691713266929717602862516886485204643443143021969440981490726645914219549588503587836555261584802201742851675406764780094085103953258767410634676487086298147318913835866240877536237847559263434384227250838792569092089816920503554398171920159425287593666568912156260861904196846451465888537250153152487190401510861732318435709464119502325246179286588255580315440359872471472890149056440286879154156662428755729132761819932364359011782786589993168192125128459993433832180550826483298513947610543935487438784311517503874746358440324669043571406227149561333564641690484363035445076956623428810607819250799173786792806551990504014309226126886748231349499851322283158267774774808002637658311666603829510186399357418107761538763876340672285007!
 8844390504176478452200954977920170587949117417518765778885807814549337
73415948940612530551303648328029084806527238630491663862790928202033086780504611434355984226695393863183722721009556590469214074504216480337909239280561526837580028678927158685086184166279653950525331885404420278269675316790385738356419399239619804390874365777348961392900106488626968202737834516351925442950129492649548519910227444434140205695980363420236046210420112321819720267360739982124421875109301945618332612601884747786718276037214178039307721154365197506791776703952329336826116187203761986110854179177768433522076546921141587543317865064260078203057106547054798273954942171072833208923230111749151779985391362094548406722819983950725808800721648546729474020792006724131529001258352998962770859756024572611047707434167914678401519414524344288290462704380260996004635025975536236920711176034288894200172096926984669109773796672208241429443600056896655813152687071223022244882015759580609816261769842998827254283731868959130547091978841036373447975273942156322124980004151808631142!
 9397588591193117415975903751915068667888609790553102327178956009727794523129444606185120052788492312230395550209521062664571318458249849698162341708975325185716881318150252015874981617622081798184749465076080835909338945067907741095068451312811719248191842196026548966308760324591887245497512564298158228625289417204860472289349925895841484282911427757024887975739147836559012545383754121512166926145930331871470298747783014146907536805961354579442589767545955123876147065677429481723434687486298919786990305454688650620557108467721371173156324158389076488995862555456686030909461342143518781512577897696077783243610306325609343007106288193301052316855523667919473970519347101260239377600819350066874898390553876629551605684800347909033542421637317225739016266775257786364215107983479563406963709300935017494099601209770532804639481831092916330632929475655853931120605049871449239602530346096667465667637094512398363089997199761856946914486979246226191584801699598898525071313356318778038!
 2168545150804193604689945465359827353040286058733328196648216999406265
03478891259903287141074203334336782890984882561400558800338869470705548006409001288261939639911999453957887487486072077296858769557980046943097103510679266253203782522262840901698458326250491159342407667941354465822436101986484091686803162925363154183968081740316698724289867827051678203189323083709497571933057279432227797716952599684726106265481845398760059869105930267136588424842324043457314073951677397218532625588256633930143090964077764044765392317473867010260882064251482641921013274422719041685578702118269943109609521661546853106095895542976575722535538542750709767872138209861723507972099909271403100049807543900852823367879540633871671248843671927388457146747717367202859702046324506323723365184464001309213362695244623624498919347311248283484609969592594432546038235369469528648085499533595070055672501478548210145009234771288901687145082145858276715155842126123507133503185699088362907307149462513014067940684473918405627082724473804763556211154153127484494839210369205546550!
 1008667883222647616108991784860140808464463185498681157144287424325147264636530792011439414937255819075523273923758269926689227525903181143690330258958028587072890269438867215496697058948731613594868522997160182845931930256556660318916742348108580141592483997869316738502241970789364684119999148630409253332805757043113449258729343286044212547875551111461986096249878611879771736355172435181952960029052519387812951515648006046276470601252619062208409586434692043078379303524915234713883196823136308592545804599144565264599144583308855208068279174435599085374545047546809389839236576633006315724548484331060459030172553605093618957252929155776859847231924289268677325327162841671620525512154699736896486693028779156885699037031539427980012492908301720967070358282686315353752450539834971477554289400453880748667585231542527075737554648576462680015940284650179557866712282337815488080635809972994681512481869289189149356111784027956298034595763954304777526982036749445104186945464780677695!
 7584294516926514347043242013547902630301270962045612037572416813221475
31212838717226950683613803770716972021690142725507511779509728519028979293517680675175170727742066158745032548071228757630826002849400846010606401857243425738678371050603587951509700831742587247737453596243698577170583957599419386219734809301881158022364283576512478408135697000837342012545567590378159665823679283838120150473462764774540512095199118606494336525819761507798840786250494977839843608364869488920374440113598582208376889217692949592857357820355711950404789187977464938180131277454241874425462577415563865547184893109536350000290756427663737110273955821930417257450501050400238853860622118940267032536723079797736855434051211085213945045936707192514538613844172914006394188096431155929600927559741198414581102631854578400828744455647598352313800900985010306859700472185371201643181818527982818705389831053593144265678734499046645625854571554906239226419431540368527648232620779299898780620190494340764957501029240444842884066573362475176904174687572268057124011729002797085991!
 3420869148225865677265168074404433133734804317592256643815246456003879564555554435581180810422314436094656177762733946802459962028356254435904472417158048721889378396982116260145318043284606584188168337240053688859527934875112123343868702730217052417166500448917223020924991635234591196278926292656748397936081340957913013766423433383114389310753703512846965660212342341046150814487107315042999893473510223098413853211900940691394135596708490187565994251585387971026380219481030823801375067526261039889230152864333601948834269172149615699154214362658066766380642297450835995679256965231238908236524403004977380423789490096221349967756054083551225707476160871523650324435829438428437806506161695300946538705676571793352137061149457702843458383802741228896770670620933187965679350810977282390303510097329285817194276841928659859985053028200972328440008950470967123960792109469657388285058780543026398311644509142140021790029018119410587048568422665224801566831908879424050282901175115619759!
 2087802572210368560869964708483627567800726299228790096533939463028273
099
44990018124597565706783435008129441993845504815466605568768433164462183211995822151414069921754031260326380474843583995417063322670268428028643387365526782329614789417118277765225780066682698682994202248998173356059091562030491638680753208854406437760859655678701888433009216868033917213033494141543933346466266896010685072670297943702059081560363328680148558161230213684145115606785139442160816184578833003326440897516859489567796390921221785146749489686723533571017788687538077954211536147612255888516772360980507136598825289313527159953238577361216178287734968530821747358102609776442892074576234216813562434717706913986247920003111672849824905540829240911842461307707586011015700929678596053910726141932669310013739564949372606912864021513628503835633354650443493282171512291530454207441846774755209681030456553291222223628845352782122530475899080594166629424815312424819055276295311331324456909385441884670885148340208244976265373033414267754698773801125662701761925742258405993070946!
 0955922711086740462810693332034623204094874825902707325366378357658629630985699133801343212134855401816570408975397719916548703672023526465173475181662288095540831789597651521361909114479445574710614172573701706640192606383443227544546618656949240768919626513783097056787071587465869815995052995849354003997640811791339764589603045674247170042564599337575594611252979851690789335696341579534009497228798076087709620268616264334492909376227314493720728649040600050578320331595582467173329985765148570763912669353107793663990129492856631230627109458189091673082738239309354929758596498262857643156946665216135902555096249579937726997501146562752347147257520865108192026446335039407612560133726081456095584969374673421223727215794061483424780516675975917679633733518007115377992203624722962027494780582359969015063895712210088322867716335047357108795587298469688626869023839755954239833456200894174118809104888046655579466131802125107774173548992690068901923914280257424086846702290708599112!
 4848830089895413113695329733713708490275428612232145322589641284729816
38648356594077569870313907171711794328045047568925146000255012802556566241585557332873130927725267682294709677871995461853556883702987273207707764045849066660893058297898740377622804969805410239900196912544298313295823561850375444664428505826464354058705149138092304182578441159452676629353978109502436807512526062604885997808529232284933564650669190224319942389056296121434668766570527601359698075529572285732991398546086089246906473879249668034593291708188569500724213827895321015935486252949179640811293138885545569221908182715902728074938535788400841165951395213791996048152070123025536504448803224142849481784333876328970666082254693433699595569535411040235243330045581422275947222465611703205381046216288157794027499331020662377412179943203648246597794482704778879897410732264848104103189000186648288692055525045398948074030514991893991626454329664338446088308266696118681490062920382060349715354532335434763834704761166226162069874329752340118586866047810074168658686566106928956970!
 8464591912842688040792069441376987110416970084548229082350444534682985869761403922113668887313514279946781473078353200134971958551030552942924900338417402485817972033308161544054549440755975531245440676360538684028887070603396705361618635711901941100663300227327433066008692380145580864189642215957867607753622228686346000893911510796088461328437055722774020018634343355060519134159760002472024798581766693325066797405041443024616428377389381012607063966760519957216590809493337711083873474999423634546818119579853747287240579065760092069849264733936799380476613000932341749709614032562714096637214269870591942937696845692043400237062785799207300743649078343785206981465972591474431791927694301964374173744591527952007447657221251631922059174459742533628718714848784030760880877930219049014027382970518183802042523798075935075340697323167395897007054295801039700523563995882630993037077637079152411041951083725370437339335242428718344771859816946241516908673946073702798105449397813101361!
 3246140615641644150329384559100128520627999613793272353424506985235286
46572668440334337480024360996778880577053040051356925058323473616434774312635300415058410446800517545525550099217033772158929489078373860589691781701218513315384142516118073349809999584675248666109076792946019397124313343825678162673223083269501975922442435489973399047459676959013650497635983041659741976759729357756980224604650546516789271320661618476771559047182452858577446926255301937686452280998598339890914531857652499795344200593871526052149221777033118789640242489144544202439504366429647330106700873397084673113507101754080141402716899333489656523897789808709566045564901842493077057385549416073204851765228167334696949484082605917916363536239957056910535973072705647258397454868647444474241886990681224869988092590384082671343355720659683644886752361468281252128941486985188834714878889321657686156412523858239637258579605972358167061827302258606977206349736006263378026752949761294359933441700779989778877173325322075798066921184728189760990877431441383913061599554110243972856!
 7235130990102604509206374088583295341623612251071010289111515166710661479361777029388518556034621694238447852521063260550068614391908511097300789152895460353294599997015750580360036318418422849366644321985897448324126222101827515579081953852999801724614877188469001701999396734295321454277671138641832937625888509704977875645844423291494136316856853897250561090550664268131079191006902973225947476475400916251072522817764224712431081275697368829339548245737943823486851008937710164246984790866061181680654608272265540773669945360930004270057575908306455748090958576321180184826049400362116014072226727842817671364818419849239387392465905936176313103238326047821073861189170555668785054264461590796630391114964882960689958763064751268431883821233588633253584841446108052113185693004742738047677875328357592288732182991222549158563267963609281002443114911700843678643491699492133598669094680792577630563625348293622509290782723176764497772165683750409155318095433361912649702356255041628085!
 0869589588046680311335488182017739396210701050800664718344380946625129
08841938252506151270182002698254235988463596032101580383855379052411137542403066125592506075187961729349471325718806961042939609328421452597614625340820578877291356242661222921007743977604383626656719375668022198850456439155769832163474335096580806491461865217759718272377332447179676836340512574710979114688394089778711931069471055175803659067571042829520908505413029339651590598197610366951909234344789255077300273885937952608271168537365126472550079129082888914271214045467243856114711601125190150128805489962159506991651450378232378069492508701428895321106595888796399625574550669925083261909544862464641403406621312590827402072593521159426061587454477503942484409067988273912567021050235554037332684507271051765545824550807028559373345011515622750183124789244717316561163481645379647658895220582336727755979733061119289587749249971205615381176548800459641530516310105867970579595493435649200900404177640167206235556306750429734835958022148010877013645794899256829474536765908656835667!
 9343525261365201167233941464392264911451625049539256147929742331608203537465311290068884373491321218628754421155926958846820025714774822823668149639541106848404851515519672758777664497231860184456589824848340782197060021951480792703695594316774629620173938778833182276953606488869308318465231782591880756435264040555881002340078083273427738385322878739323613311553656013351253116906601310484586150877661072352962672171464760219141601627817602688623698298341705563482893664839479756363025407181860920708311918547950892412163882670207305973081479568786780560972482259146689539209155338415178446637186568716609061095529164161288312651574499930129634703083612974318530606463838256694854997323438318468643976978860021384533270297421084804724223430887349395146861737426627520356879717621069750723227523066981713322344527760895016769171762591891516410070715888406300789472952296953966784819920532984699867072184756746193384801710883268117224550098809443771750040803703108608114328269201873006504!
 0808950307450470559913953851181148448151230203507314540565363608801596
128
06492174647895385532750986588897060972475255579027400918571283469985561413954006478343839670589349260170125868795581195231094101737971958262888948464982307453184044443254208368722823954428569515078428650686907366594637927018362362870890054132221796517963136557413022389338201606561554555341702800452046229363106085312008529199180060541008441463779799807174969038846912953133647996137885823117301528750823818150905767715047423937183445564647210723832730120990985401002606186489692732623201482701202646322396532805494802202480981979873806566726865061691587855674635382314888810941536540438376249696700084733719257565984982078080833853904661204430813291360875947936454340388828836960228075831174003569782917275906812994402892670694884474336513779440395622390385727239715313546160349759239365608122680060083315264842048593226686266510604025671618926184239842871019921100600339830549577753812025597931386447647711955327208592349853199307071249679924768612153794275810544325322671049211151270370!
 7033288270945073379453371919833524667640251795167151042388991474289369200579166416406956982167094107380809491177257647161140797058289481495206823417682545769887084604957759997049017196403867641938523516732054474554210986975902634520797945784493697109466925663268107367201090632871155911970821253370248865957959171921840352044766565419569302775196777215580517627330302254327661379286917311133812617644844997052060573326071172388837818772654150187152482766538466452556243567774738964246292072645120782695659005006080182527470259402778620879086557715964286598781701676851103846201081404235840208853682907141611924826767662036198912367921754521664119192275975764667747700556846774098888971992678426391277644785896001739426452730715847498347244416037046032389845683013033223978539556404524896918265638949595068744645963801512676241099247825175051829061722994539979864838878187266187442058655023128593309769734369559987586094094424926157681601625000420757773747367950093529619634733140101387729!
 9229536080147289849986018176672144762625942051111154282651262113832581
88237644694619494093908828903456617045141239690537655313797922522650489902641821424097597426399396443321882444381583499893723984258159847648499780547809825879491226403501544792308777327828355661814157910241300056524978580050756715264734832676219902250323294587254712195211433953680288649578008513211981911412215975018271242215444186940257441826482425738981131966267712518075332535412610382794626449157176872996599599143257558518081475242964459072317980953972162295208723512067520539349225144189040457275962831683664085697278210732734339028570993676600695554410335528403173501473628376658916914716596258720335152502413823837859528649923086259632426395320881572188423096414469215539717733666031629067366470709545442543745692089194157547800673294816601958424611607782325360933393780303937017463091766640990371285774369525401464043692521164599398399153275163366283822652161936765817062893464806678958787810316844315147295588652072915196326957533420045673271518858835358948814111408895890253473!
 1112445292160703369946857917294495280967030626957070966005861697214217704874042587362074923044277589369718462338434410411515781504416688124764628247139689836264327506756856896196315495467681025290941299811761357307346145775614646064700199969923107122781648280116021272358384984537141593917080820473263093577571614862490340773159622948425161071263787800583427912117757026124263902071443321804204598274280554795518696591895799064786441406498623018094521849569019993448254016132622010455299614871460732178252427003362955042150854350725501303166947862058425931967963045805527879079032250411980477439074782200821572004040562698760244697065764909237920287939684741422197803270674871126831639730404937173301511733113971940342634241202392540078366734498345875775616836509585057060738754577890597634602758519234946232695602863324532308615853763131001411751573240500198707969130102584867417376163839089513055284784812937344739439615903705525669241266935557445744135591471082591575883863793437111748!
 1982887194217902757645796899758190606524476224049056130132421604643218
40312518671554887872794721614703575751132204846233766746385886350939685006656646664105826317592765132738356630324147980987147374363306029740374911535657746574278456809234986513290429867290340895175680276261628468565288796362286299280703478789145890219362920399801239274760368110508083242821529788702967715575515749127810660723358362303826709179401397403651072171658732733606641375062691331479275627577738778821839067137688785857523993631458208245887100981992849867421976209356288602756027020526272414410179436262801069999245268157487768663991990851055702969878815256606029151491254222618578894941193215375901679875594627263475718451240195237695204708693479529275351919163153440382274162916925117742320029259281388559129322943503153935764176076056382531250854803004483510235704870757213019934902184118032926247158511824547932032660326273544763614416310800949565484140516046664945253672031107448889582108929892614775380108146909053603929986193274667615913597676178340851053142085615098790050!
 8491686137229440657125999588572686828925263848862562278623377469710100909263143095174406778968332647911536477425432964203912848470210797235205321048497719875412563349255384370005435155988117481441032405053707514778030247161873805476723739825872999613933257226452940204813320159611637276232756270442448609728635229762865534399925785281900404302214075869479231023184524319219241981250364587870702236771630629807660721186271986974006229741555574127492334701918137883605203838964143340923683447183356465794779515362002888783452614905419818118296771073263128309598799718044525381873717109235571110929007525376858005926216425325124238918200329094994827343432361662523076039208269424755256867319382099814336939588597612710175563882184296866987777109446943890783674367431570507059019345413710136061313264270573980682535088988652790754487040876164507901766590609948324629278665789007154154687306793252045026379919982497240180129450859144127825595002360886903676487024539423978381903732687951158515!
 8958598918403036947131188016871361695090628234805078860902275270786125
75471783359902089475403357424995840156677655105356796482891695563328941472473278437234589922209691769128383634442596317011408921902933345806670482889728451285697053036678260191431638887657637519519315568833581651736940564207840429646850960667662377735683266553698550167718881631002017012274671341669561195983264667640159153009367450936961539937905534873972741412414350081146024212657115113957740653498474699063356899065666029495107737629595183162507771989942223895248311298497555340182212886520035866932978156253141323988527809518107993214752389908951150815584355307456933537026179161194069177949160724806386901716341278371439907657912166172253948925830501238124205329105977790961615722347057865358385594789944858280221338310200450049924294112652162554872659326897896831663904453502927924372668288005070686051308824531069487155452364265936418938826093697188971970442654848059466034447700464531508781581431554378329529733370931398563421867298446646233769908491538357439657115859834362514850!
 5991610994813484374469817764610023892655062809175552654434250557394107665491277360025092721569430150308198932709038280298946124448403599538970136617892860750595387108256221253845738489188465320892195866104215835786331794114438187694260352707884683685608306843450941876417671183693288109668028733861672488623121644695293365487303126790111685924233133956946079497765485030306593339375033914581294284212355763875323949553318404991320700477997592140690482660250379381894373857124016499627499023073138591362017167778783940216993746388912217358806393797699477161936253543537790379447298833546919904012350880687099748669643005272434866153169376293089570103419090956002750446715084101646432328377311037224943233427662318703571049728001531907202077731510754159710441856616679658425901993046859182500855640829680201880960572418679957713447326221581854841049533628408731847181604240967268493174608477747066275292044345184693277487141949840392591869048839613220749970865577444061218832941182152244344!
 6347310448047743099328262202188062682390350746782514871274332766431945
138
52794274960859740902643367480265299710643099922724043536863826847455717767589911005064946796342621492943357567736401888979973553768666953986492063309418981576236146769311312028957778230391369842275628660406234080574692702658511987864983708490842884142219042498126231533938153942907300639565870699208746150916347468901632715512110117273150309748719271383394174722013818324845913169069493236711600039486954192053525679077937105456849136035937181399490461290040275808697563678309618904071626997450473373462249567156151635939677972270206418692114983837727724809533594567279000653431709311829104631088232187741159486947585582893420612898007573465894185315420176369971019799208349538013299655292157020546910821567985276459967356370057911067744921383319655154818130755532319915300713703856989462812989634008222710303847075633931168478513569668750997831407270689401003136415681245134947711308106726930957463246271723968989156670462388628504100149392562947277911347005995135571505661799099523213913!
 3028219585704195693152168287266540173050072176132564571976709854467411924565325313413764877427986246054482612350266981794901388145499065336598287526382121148828517120429913915680461777430485326137636448033994544226161887227671203857178559709843136313483356837914985070031080212199223559797395988486572874586268088557533329707955154717779454920357430872148027512660933113474147062614396961594592808482862005155129697040289349308088048861822281660636888914781256000767824476092232632900697390399751438258433139651081906321876939177700355030599492737964093804373676851438185579881618604946979992411425942376690287949544130499849202620360314157414572436630943810758717772178924998179518418042461008258498786180652859072549530579188640283309811377064526931640998766297128017904011152843354597281027836702723182217489045875771682624729213293866520394171695335781074913749855030834834127999586726639678309369237780595015950184199340204875594170396406916703693722095290359447450349818101697894829!
 4555596857796392673980299966410032183257655367744125588866420488699052
93509068268412107541440951108147352234228967740970289502229921065414040015343907464067202650309738568059467497318949948326828533153107746490638062392978745335855631125288029663468815501380736038637821671314680935811243689449791090600351307435996905123779926226385970591171313170501205016724563857564401240028283208408048038305870435655916940552982996137102850214336361363407134094898772971134871280858662810228132182662298068612522873923664110643498971783962411954444955363509708069326962602007875188033477601284495450820394017948557019480503085329363589282233263555679903641815963679642817190073769787724387947239562869868306348645259920399113762560938452611832715217627340180756952796221230566603977679223333366054042101726141996744032800909079008619571567989635780692001461709715607986027548356813123741708687532069643014619426955422459015296608663254508646810117998276505076389795737238610784380149779943163213215752937601935199858961042730874796515238022056961125472836521680452740010!
 2165422695558306107623411578608431226207524454263709260127493491141085356608775012107315193771751369508072854554144265744086647774637188111288757663592341635370048682520256621658783539925227650883470597884434969250893925161976152813842226259869547127738949109644344064379251911931237261185518647604555267966360090152074084598732915769640573875100903789529012595181513613513418631767297389051376363003933961978128022839958009519199775775573837686859628876225305839678400164731706037105545800593120636005963258005844921097097145849525444653331195412873518083186148653290378064355808820210468263900456573936310284247418606263633190027257089490847428287351750226286560001098402110464526346649701372273793547132950125925812326759355354763473539742905641358711892249731915545501134943473213077695684874716855587575461277161644174163416235223669137426684167151936749671818959677634742397656173283940270710877641251679913386665129367317326268426547161719455285780753762471339574708152745125356262!
 7084363939403788858287548584442641679038836159657998183149838628214098
04054898163556290175952573725716798544309959608890943459248138750126506387415599046264632893070066553832644719888190439050058647551074855791900440382496504633879012591124536490567028654144036581524305080108213469659647510504180209753688736650223923088636038604770909969169857694970231067530003066474113727596519997037023464687207324907693019267601248866713122548821263557258152430765557339264846054732910112673143256705136383910581690809491435733658508741049739865156712877791545289545722813449448215340587850796759636557439632072632664555874180616281527814947363449737089990886241723045803213155337051865017997620101557372762544377155413823429905911422789058425446497735063344659801594979304507314280134095533675855768034961218338530478544934191638169780303595740014340836018045927512844513986648145454100673188365733099810375224543203253988599479578138426344996617386050287848616665851197826219532308164977412870106025915646664020265558628176952024825976241835614023651807061454736506889!
 3414287018599086542140221609627342507824299489079416519225482358641197996142961294874026402454623683755259567242366945612690335399454599869546177349392172027476651236161452423476754118700282715567686593692424583877115019374111347316667806072517898184352656519522636945391981077161872117026176436986104617709786731797255071520669189282429345133453363039838466827320996504659230680296733212455710759981257023641161270232241009530928767593316184232665244756033990946868199215440411394735275446185311290469156214793807381229310989037544471977157276928591238981792845578459297306343940683707032872356924770452354455141718748336278940698332014404226977733631910813465134279155714878588892562028500807649750210605879705249043554159079712534446539977271089746175281534582910434429015361579496712153566067384883419535411453414776715277870890641996833843958647035280413494302428728298260399107392690304835044190741136553870743917363162824245332735667746657488620191516003575724529925041115136481130!
 6651168365795075769599722285633826111847121133771192859268951979331274
00932650099304559491777473100550105925416425112023602056674205146165726440152445427506469100740188103502074167595154183691590724805147546944219698601203944620405734867180721503035632560519481152575688307096970354756410287757826466588708006222028511951953446798702036908432851220159085057693256538504309986420836735123398276489398543611745230685391360742645837475233228770771893163840712285067129336444095486274228491500552675463455498532822141175390524427890947174473029626034238300096552629391955086887126571958775677915137134075524955431203357610714107388090129166158761631736272344298511693621862796966457631663582139796585291112979531029702853089311517763932169587402567695103127024634038592300166974992178484100624011338017451819031568950983362365326134426089610207462787902028817716047655961770827399277894075030997318273614259085711036014379589240251671651604149295077796458463986060124096851340524788351779446333178202751706015067682787019446963390095171239901844954251196580075345!
 8917320297970661176868131039821541364955214613831479640667558334386985628304771976684394959804685259666502892026441922463629769411207509289356480308802457996486124068497473168054245081967471251218748462775941871071787292097215361301056282494815429453117346393152257111971628102717377567781010086397875307484697623841950776678208200541215403047769148497152125364735154806428466116688532355915839535078839863588370867277678578733836180429997346398867903708898676792225736955170357867383752508388075871601325012596413351199769796947105366548450705850546120571462018059981239090184736167492746875526343694962517290256180925067372555344159388456331513548748226013193190951892228949713779546234831196175661280058066182412800758365442023626132298886854697917571309779065303252312640196601644322948547132884276816294045685681778029419091298368468766796915880658138277489658998426594561619097218014136616729405178179185230626909506561521809342447374197965296414154118500879204407697403529246372001!
 4075313721281932797852150794724056561544278875399110955149923993052947
302
24739461382102137814755789925884416794167746476683298381700688422195486197235293230533155925294228711250384537413748904550660416581950732943146167664112034045929919817992921487288993021249310688397379488474314089832294012149122490330868447387092104103986316341768957849032283492784947592324298335873087803412617780617987590733296515054369138919579455711428074533005917353290362215001269768651136479980321273203819646822447226231445965967484670342311661754773029593181234033180221310393514677382039609827570116854215365686510465830166615656349281499801513026733595063094778133851783708923393614055266372413243865752781387554370160404534732887749474781119054946643848652672382110438054225738504190681222632510644303267555938400074250316519655845438479168024289068236165455090556607924429186142350766197923969254288833458177055834555522673360642724507488922602774497577586439306378982868314224775671605591648694078818793713423565790153921904442539157379524005644739364986935760249561715707642!
 0438546397050634088528339147945015189340431893283747341432615490168442385592934428828667912619401414877927444857418816490177342371150314367940636660534416170645229731436664182359781667660989392850900073856061926402031802569783298917126865831979685240145046231371138739593162429811024585432062918343449431371654262356280242738812533575283601608772348354720508163152472809072629551030192457794844552585867080981835259592742202538308633477250792140150817251771753344557497262213961915849811350101688464734830960445104599807742199255847251966571098958779807895982853885979778356882225100447509980822851032920078067199400112036141036752265643186784066645114068070972454088875520190734699337905125201848409078989208527224500292469017912642705475377185619336829782917027379032190713375248641602223551676894718585610230291566858293965718334412046615384134874569081545445947471702495483919960184534663901341124139359367781207707359518410679882297660390699181352856410130222462927582806485904576061!
 8425270733215195854115811005445260759309829792581585912325786050408157
64089251571454658506243174800528388692722107840840946385634569149443997881845060127738114122367077593012676423473058058158893180248578514741138060484751355562309585290738953395655993902978153766052171933015936182916279269606678403534583809063810770483742180066514889890828366067388590935990860932722067650705911897077477759073832782276883577575240513841725676523115039654957445674203546395519796986761525234235362221688963174124485789314760164356674132072654911781952632151974251764033389849184480189530793514718671414201869258276998566800568801846729771148864942940626345968352063206671578965491725951526782165239256646290002825466504719310299693521944828653119848703488121261010082091920111846555574240533557254876177196868205025050109811705990063264893929868828736939116042139015317494188012938664916377463734283706375498198107472869169636050989477618594743719022165013608317758996479735218733068274013111754303421108315296948014558767002893601978565082601400482648132890272244395652037!
 9332470056090550518286512673536972731541950391590428136000423197844756838385903953809098717390688746651152588074879750312260176999268853073294229049353739635601989804779021008901025275615408196220313111667971344466698850678454084810890374775746040339202155101364231090654476459891272436597976383211743847219160808245545997286088182906629168669363323310115324834533890340878433388489029778973406638379938300992407402116623781790733181727419334698692049255160205943754903947028617293957525869356419677533061341751030843423638263783140137021359560587210804359882338076691170283017082447923029542101856256967569343032701300176253567277426869645413236681252507412960627454609916262006132973431778150987372188085514836608523043864545466938249704116896503881545954560824311822073563395754277268964643817930304505378039873463592558495863816101915450713862867693469906563574142842969905442423506715535543769566910246051871801039882656599625944890193491916143461756049212603630134615057274784265117!
 9132227856183461861702514584923765179374112499485621754332811101680062
01802811563598200851083245031546981312639014810211568730166813366564936938426446557520695719521083461750036988208192868615811764290734378656126081886504654578577190246325378965630192982041829402914541825081242909692523490549419298856975284669743466163284631650283367769444920251511656111999949990025025678075045335949795899968441083027292296025357002726650601351008202646847392998684698451788977094783944270285040991546694382860794592063568242512986424495624457880267090405462498360334906735290586998704110867481143734844328995616976625878537956059334668639757846617424703064415165539635713342900412454347856646434452505412294740799170186474845372079637371812420557560489826935922716198664819760860121892697004551562882617155314573784049161626060964775243847243947677117210837112452062176399590178976851109586616407830013318171062961992968847299714539228964228484902071159187595601784408130726494899139019183021159951968595669644019070800451678024790742785808072656497098302112433864035928!
 6464923084604749933493631332471119896116127136457171189452038201713132165329484259989778807023777517876585952938640427740685662045703283105626803533825977819108146661077775880637281822154696454420691662770031698267053149153588656825697129101173299717738118200698593655135427957534772786838133212853187646666020845830300331392511736177963397082932628182486974801929496518690487586049963518538647411566129882943554549027457658989387412154213657754124620921968208600116622325520692919659089665025309094659174859230411860329343814299777941715238589467180469759110043377215132019137585692373948252317013907548235121849204013197878254348696834158905667139262782397291518383726152513442133929104200702943942354715091173440835620092553105618788503508886310324606102242718242211669618775339309380033151158486240219308899273563004892588349707647532123072498853059248199841921909502027628120598216053943916591762960102987790578874629475720604114776890592332972230045467978591898064335674668242939325!
 7532347159795154129297125944138800587652132920485332679113264981013571
30848636149965072574990145305054302001859987171848554766434257016087895148230216702632082326411194677983256760891315377079910808177218053451970113145954108903887329317442228175453131230606820898249810734648544254470881964114026803976159168425494421331404289195895781169420422708615708370088055679614044828698118992824970877235624710379113599930043070163297346564222560530679863298374505209271153726457574843177002928179859328891497915619397156904850990183133263118636928308381941758293475800717590635784384688322936681425635460457037960784368555436845654933944415986539241373891078700251955353828458260835231644065024681117810968649727830859445784443046669984964988053028396637146123937715889599110324288266465763643388233906072904795948759760864071002774634487615457956932156272693208092588950873003738750031863585372451176303651538571325781248308237310969185155011665305314315663599628350878798498550414774928662489138055597342090086118171080801489287944426072102552548400590215386285598!
 8184358236442099733386108233091268183427340276626544144844571213520994068514581466665795522985417384658804632036177040114791715601082585840114810094277898347917673126087325433800289109198227679285385493158341537884946820436888614554413943806143064220242709427121161406424753535877571094018414166604299831610436840964171701510089172269543671856202028746819196415630545513388013743617042617516457857309527263509366395793056092433882471101156806936898784070724422930136763325302659905365741137501728903616762518508400301958080240976121631157973885563223112308529852197297784755398728989975093765081298673179784802547267242178668139867295433637617327804793213923751672102705606076918802133801588084755977528796417658767599220000488427417967887076947813272038965305716074330334138221253760110755651627515908403956472807430526633263623090681484948032790704747679678167015754960387411459036401200170894793757016526745440314723463930161508165063099229550576446110509464312302987971263813366725663!
 7047712812266580127567109260252457381231118935620467302116363511408338
807
75484167653783472655127894528992266899931502252736959476064454540173253697158847103454806096443416304904050679908955867258476854063616974927958054524026288206959106563177834280595774432264279343305651938782340567870378492671123550148523844328392336447440603906417739025599137980983734069066712911993181650874721355413753702981397659647686454378532048369147533418450609880031166890124681778643505191505599566776895082172628571532853546878423873974995438244755501536182613176095847947759068016568103994929987060905029911770630861369655427963420857600630967164779006263629118001815597342892430748051221745361613650305055776246828835851623285518996147106214471710385746366439604557967901466206793553690423724176981462929767411955749717098786398616584312308006051399041438420811560547710636585461931825367747312848991195010739149477434602431062153031056188518991961332338571887949258808732195358064026627822826872799709791195875463266703808705537701979178404252427648581722944839856205401966421!
 2210526602717271074685199316835321118696542479582613305242876127303288008935956088169943581319220384506943619996370225172715694222553741438935317394132984575322433426515127133449847407867239056955291021337990030547576335688510810657352189040807321936852121486518592578326121872847864752569272338877853943228889656369329275166771878894991806443440539253175689293858145310309372088749840197889025137108575104009111737540560540895532539746760469104632460955129789819776107092466014161776062504986061925953724814215748761830766624375985652486993658475017773508677707345473136258813203914100351372047355737669894497389885447863641305473703533530351457018304649218209259048698370823299446954971568218277464551479447673953194622316680585187865162931741009114379815923326818666978026998520928845405466900202526902606549306813826553792695011690848389788031655649261774091138250007723049641312855229916383560547566101186842553930313815548154959941669971781042408830620759115417516468216267733107598!
 6816033401047919135905481316165644268324601855319331898651156871421521
00535263773732354228933590416175342922999608613856913849890737292753608679280100525381399905483178227199431627946970451038062287300584610669541762835862899776627419977630915280156514769960032749714615429766938480557036619416710145818376941663057059853074529978176383615918101056492036273744530822397448657234836011095278474342829833788244457335440420437741842468061611621875705390694676813741285569041334354675710950976259709522106249344848380136585240541478457171004233839632740280763714323557110854367768812845919462450898336627160839763697270808186075692853389376750574824072458308143854462946432588605002751608856710057411326323402921630102350724872027266394319351714574149974059605789238524715553888084078671702039314503526386319545141422480039194549604932320310152620078768304136060629487419446541346300642071251197194863830323937669362099271166786933560514036169715894540376695652360191691675599998220203669799336192829001539726419033601995554341256208994104317701308448669727748491!
 0712406296084934057671580541545575002312977386166248875415736117136195043255120786644325138853839764751671058688240557198443721572308984645217129991234042993613439612167357706823497534865922318987634582540763261001989799019145516497823947675918648737596872851138613984742115560995736061259796446376855139798415330864697346590174073098968939241417836345147774043667146275463013355082102163257682848988233153596114530125329104906764830061905672919824633183209249782563364191362491169154768613732764825929075517774127152135026699225366224344436776664756233506622684881717770031388073879197485866372323407565693560178382763462406855825508453595357641865010721694094751696704196845956466257102521361732161218437032864907023322989989216022220378918102926026055232913656953242887972611883216424779639366338666310049121221955693577160493614007817139131333062656930051208990224818161450198387383810080927026931138216974985706728890154062203066111781051476637444468090341695800272805758426342298333!
 4795531430660456098789521165128884821633006660723752917439384373173535
40112263534654226927495418862193319829858188453810863434425067357112029115817197338499045499855988516760513457367311330302527903678586361544970986765935235934362595047633880310032453395017246434096263098999443670825783614224933128081977901106133621876666397700339610646547582905052048216419472500110115699157586975140657401177731811579976557979886340436681740682712181781022279431612895658479825810495971594870320027865536365471764065037797665759721967040420287244984385030222940749454473337333906721204565554708454099657290181758037662875888636303836708481824095823127422106791728631356557211447587139309184875933101950072379103870045629969434320846814321653262274057785466763809071222411709276195531856288156775193926661422109483873940259370026341753837077964483018366756751655180077928519445532136202250826906166378294464902996959980010555033633270799764838202847446543247700646197258076705595563607502417739789559154886044729287347339540632565209405657415138769556169143539792570405383!
 1555105755248629792651044693643745463718271097372744133348678132508253968565211406742392796174868231282283749008544188478202590957512527025510136638939263276269343847948096478816523915397420081109633824941843000343460150948610955068114404202894561882140658915161218566101308195936453679546695677847426426402078804755025996652866292696350014485359422548811363845315718767751761027894894725121339214460360847250837375287211126932508741626623863921573601421161604720230159582943775231181009825281065376630961616332799641733155733928536535732445246523308038776381698542615049662467943534122639544984560795270961548543849457928511060605660077299825143862068444120576139814429051855792712987952326271794684049069973872734597736263156000312090717377675815793654622763032718267906660445404205327992870844776516930461060932323502112427956008770311687828655663291464427409474881820586302690154169749240267239004496108307924694288692263797914209618677048876312895632307937346972722355559674697017162!
 6316290547089449009481011216524792295543744774951089945655311365194171
52390947697736525050760686740663388577123134626262471933926536126728092149061241966252564050707148776455000998359199597854670827801479162135086654645017438903547711087681600560072635357857464177175479319220248084507024511463370610205589490571050685932816669435038052983863579629746587571113601222327277229585791111060537328360322993104441616655922766604591955293927377662106553722776963550397424730442157698849878721013463583953952113945170123970954889239226189792446899101425095385381713169492911219490079647949624105447263302695715022770515676569782973741245502258997530631228721115827528295532599488625134815903797869671520404769152214950932001945165375497016718933252744217359796141057761150624010007941966088605105839402670014726604021679495426914234612050961610427757841618404616762539638354207873247330368374048594859557812449919760333218199028158967902209531637654007536649011048981997801919981675854482828062237024634774369792129254105090907184809950260693678194102304199350360752!
 7757860483012146231160057870487240954108346305432856119497991975760784276739215699483465125691033215353118388495101877968577095387596741277418531649078006948341391961028481494057229016192849745330936707880225198679393142632043628756675557562029459902226950267369625522226462162575883718091870186517828722799445691772351523543572807348802878094797767312574852687027255263442689231398874464231934406845481754172385218196703585865704730593359624393358768507292230385744748109341033630399775636106155068808170955518824513835349200074229977846895787945930273084344186226702410099436903473567278675212311246688136502557496574655014921543384711413126961085719715289822001321191905504987691097989318554686377421273210215105491280933189340247288584943964470183499057932716600981712106995900350295469865834057701836667110643786592788916137941800375589593526077826344117663824408108992026611366359563701001417647793494252728191154554380920323719368893144471547350394600635992841429208967939337926104!
 1648002623676060069540904697177255242408745436382225610799419088165665
313
48184880030073897909985330317018859019764437061019668950358780791980505743858817395590968542061642293610089989540157212072004497114966869748398304519890777787694699937887218655059726464688875442924674268646617470753280446183860977727745184042771542856115402497863032911530718579393436106392777455236079207123221281041593451069160494163574437069194858933520446267971342483284016269788831996469576507800758513858946160715206950886347494012141137168559793743987189852796219949231124239304104970154552363928124138120156533719983681669353942119646651059732915228064717593620139327052860434804018216404593343291503328549340379145232485597625746558844288453743498459484265036391002217145954292039978624575660783002795943407920265430752957734454647617241761195936096712517337412893937504209434891056903781632508100654744477120674360321747343728394493776912443629410405523660935745799506342930353646247181241576998073362943951747868829338002095338111995756440961317030432864041686657395606442242543!
 5927701371665943690324115903623168201748395985795491145726635243548860197066938476011884431163323164336557083153980916990860197046150690805830279636336056634286380753477028028069173854645203844069733074146518135240191302880973062824658110737511468324446492369436429718707105258022872672623435197291147969034099942233068778537540663360981483347404686500792493878500566433291094073408428606887711498203397048014493629455862419491054284624461203884892705392247781428745720525018164372633186222025263140923371022716618546540645030796304594093278700214657844325249959051732660769687190151780443402831560218790551440266800020865920480135296933767932649237090010968196912636311610247438695739772564909632101572374970357869013442246481416547366193090446818178520397232560203845460808714946199381738216639676951015105688563156584157190734074630156159434324543275217772825546171699985718020959316463573385480241152157680599422563930704423409800007365461612912057851209322418607481434671584488454711!
 5765300726024355563764495906317576858982590271529886523756393580926914
62397603214261063554020624706092770542843602348885075554261384986263292855896513878417727953534860661453543924871245677176657065913658706265579489097797203408164944897976802397814769389447436148702279079095961098754727791263838218558216563176300186305328768245070526851080666134986898358770485104105969792728789083305167275999667702598541208572751053072505939035434320794272652844246249881057635857680666321591002210465082303150728379109352017934911993030349542737377799764493648571847051897661119647569119547214768989672831192214929769001296320377255436775934162417314057477731321258029310670690484954251820450908600900016937015705966080162278245037904335645371269569115917708131342340874438025938791405805249470668559671131533303715825481224435741231690481432042054066658368073159329624880320847516532716417116046838807031127774113512409561772652852122246311968377036231754313357809219568778994772541571999299996276693326797184436028912988531064862404407854298672174377783533657418653527!
 0986231763726569697814665295747357126532135454340060457866328954059504610905700992680237599832511690403640146124363238792504814400649264711736659059970687367302953012210725827316535466157458513104150810830745623700199991538468831256786063542179364112351627278849759254595607872730456124325627353003647981222843454137374364933329064062040992591441689387871272498284455024223395264318936972900836171998734591831551860402539755018474825512115709674828757709100802744797048729956314144683692669135674715545714939688262140238658490613124423403611452205250270966285494928099458566359842137796770247096399475629747677786497236504191806221943144946501239071972482612222295552459080601272642044162676357738290108305626339552846667003986210125220295257191446805103417321013178440948490393825976627332281040820011636805230726143043337877399962187448041762863744295489601796492963028331346776286467533241544508762344025191689987188828852035513215252236946623348172467964742380829069747251008832047885!
 8212926949889039740584799751490285577181562767815095651859332288685492
44985539642776422350491318638110756981983967606494927724234166147412695700450894882901857245103022248143995535080498120520856195308192062304634564884144753826637534082598045102484557066692098201387305165505288414639902990535506693866128258831259636792128608442019184702217252429541779965065098565479521186720975671308289482667675223065034759386168765207548620891508560173762351010571155732080569480751836774580024977944806523463650179669295442383815367171516365166668577403427676211134152679756211570565282818270168882444922703515780554868800116904340042228044172067018137441558469256267728745282490912539152211431689241006562285010569108702995560379614039319983472734112551019918757224594371347000275510134199124253583490994129076027252453997576560185912929833509876218874898296435127479170759456584438785615157153375879890519434293211561299130728403816745752845989195444469630024339977439118304482973051906108715403544910034677616026969376918015896546581733981712194745100538171082192044!
 5648494933222137532802542515797668131592283770308124617825236411432030489734965392073618561164093870435278265867397898420193718312266403006605738776489749279874540037877516373428221134657104427948634441636166823052151177538902501481756673856665429006169628456220664626184627397360251041282295064310536681635128921097293517719055027396713388042919048638538161193241010581644940662368625605653448765166759224600807995260890616899520849611851415236603729342127247774509640547550183308406741204637109505526291210560278647587036769740188589205957244407328080082225059367036000784996150848928033576037655581586233445303727926940678073048308848266804812564411153304318877683036326099564154162780940815723438529077247915489016751784985148338146200500844850973318212885656027229472421842049200143381524889374964354233078039064390805317649070030142305796702821346151080004331704838763224882991185981075182772008986689047934185959569775348593482908269232631660084450960352930352767623775583290128767!
 4077997650408774931758917476806701722718696567555315024936508070190012
40626734863438738876655116997282357664540972959116059445155993813715379112795277674058970451495964503998940968314663950309790304037963740217821327095619324633236781914287420143040619710812430328619252751917221478566287582538348299163806006154067203418532901881120495145828037104012861213805549632706630268442748986486109804589458938912881203383895938527703575131962663994379189365063793353106118188290709438193305196878322730857891246453155916595091098510265473783936453086236207387735051443003201106530764469847398891830237102939440749990655339824805515167028782406637671084663179464657926549453457729990877443807283255991258981780746767328967315379496200229212320334252677057587538607450911410845758096318689566480528691409240658624108513442175444997088725237301205042962948680168192323399025527536289508655543489529844719762317245296775258216859730902496275277239260946789649937770444288632795183931615169176116700119378403507102961055233216951230111531091409258917955876894970487067485!
 6574955894702933489087157353607091644251767954293324120876712189255752798523186731509430956424891390832131235494862770009189630615497235878307278382545030141790470426722685393238470480643515974800628282623427500025029430872093546730454541605362058307695872784948023075863464734616308253383326058634155632402447577991876732554483105149716276083577643199561842104166183353476219018297464601926122686265068301832396910973387757625559717534088116858922297630956449346875467570626406448262470518127644013573372668374701559615677980710747436614241959601539091148566794168238317015871759523224680814078893769734524710446135022015069067494357613479259351871690270265624135641927082524907716713032292965576956303218731316196577010869421502048804129910873963734784894455609510078487372034309476397160462214942300978179433917422614229324357722243398734780223988677787546340060832450513907734369159523774261650723304963150911719663783313814961273788054399409322436828430658123054653408648113073019316!
 5600325236486898974792405718496861753738589398876297411350733701879720
615
72413169268185886092904729688090568729095126682064451181635796243903848611666195518711995962407756545172022641667353794434035317505102046336615520842902544281841077267506655784858245887494745351659944579594408513848646176517748917202404442554615526261391900683445968428006061338877233710777577666388183096865186212575494095462670509233016644359690283149355173382722910279659817372167959512918373749962436171816841756051725377192239306175267715738322896546558296139574111292541824472803440939326973652030665981168796149514061322697267681972280164299605781320483441576607507770058194594858485611260512714572738642268623210849591816738252347261422939681835557716561507085978742370153610573999200391615912237343849940999205000396632662307255141864366431843921546380566478675103608264627907391435767951956517470829581904068429048315031192711731889725440038954836941897105812502514744612531703812949956012279394978508013574461912748449365848937351399142615145745127444582390415093288324650375458!
 7561984582070052145086663762305427708035511380221277567293590020921594555289882337480000528111683071436694823697069683931736456714582745884390133645312859947179916995311218462276422430397014434264780193476732560806781053974043066079504603920879329074390032850820164846418364338378673100383882488876660441503418408966321303128975534660551615268962163979009801749521416417451670382356482650174698863793184216320131103994365069201432690537647031300112129111413433771351068832883917890059307452311442131915015339392124281489688411836705021876617082026248707085010289123270142781514375821503648767625285465175927488608870459598106447911503876160570574122913269180354265132238227365192861636811663331890201020168455623752510837554091552420057311132900561818483133157924544849809820689233304565336744072831718994688656678407724136822971232072610315249544419243313185048498351093022382376800057253676328985496776223019526696574704918224962387970554955816577600057215475597937827580905524746065617!
 5868493834603752180301723231768295559605276864900199695499627819383135
66418856782067534577006889481598566093877765115551115638295868739491601584631633816627315887812092287868495025466482308023341878236701219995380739657067661172177805605450092192900213595968350237255885623660405379325093919165393219388085371530024150074355660411135017328688759424117172025130433664675335139068268378267080675454845459052196908782110927542555235505094036057987055806622258754412813212598908136516889076980435898096376466934351896337625745543601287648580722052428170083663107328941779725361508526260688128245922059210434939592297372182582348555230386622416745331895670596886784572526854543255920115058796446320368862901710460646790667368159597424444124950567232887925376945238379637723203991543998282919474175219937961932385999231772251860585581104596384605238722573491762026469234827591311653778765765968780633542715391584260638084654648337755937332168946056320828783675880356180863914099009144040103365241549850124872795869940420154805784478238957123690311071910731318654545!
 9737581015992487955194588598943591932619653808858045593580777511133823872529085901688476049048521480108683885695421495158543137291826495570310248111330347987612172934041398965580538088876470613178270404216779132713266187978697550769233261403967427611188957902347414342992509291502372568445650534253790127575309941210272820206789682778581793596859815581864678489313555076776817537538694580762250244409728955157129381330289772892470477197023846630112765183719824284676429112725353830224358840274488085554297049644464584208338768889252306729270608974219839076023416744361182471316237498950595944648519741547965367740555111399340394473005178531724682080304952241042025489328774098503667096215171282868631240513301948837929407815310374007826036448783863586817025481734492215789984337882789014125386915166776972569861323628531775229882408339953897932923485147488630519973256215142763856912164946098713906585963881765959588958030405316019940571775907746358420773092036591418935329330396379227202!
 7263632718055358497411720177142758665590656559402111762802753412855472
65895263581092694554814375886723197039927737350154651326323572585677812289913721503626685131251975095344649646814215446415675683304662596200922056090050918726851609947661498140269258559418796528018772346003598275404955437789875108018565309363644871681693770318569097519609232188154501567307857527511169481701995941689066976701742517363996842709492170169724105283908963122493971461977828624967264848511222045446543178004848245453408111894151610958601033144560369341568888559900081525707005969478215851819047502000448939160140279963571814421478661361550460289040028340990824077127771174738991915732399870412301001858939216645302176518884612894064972760001512369150337150144967492115944551673233226676135313710985196374841989590801221082640206840497019736048617170144887189073127477443916933141742169257444157968843429819945817914629907797765653159553467374496423755670218339698198827816577100585802068218893056097096959571082704534615951707085811427783076514657918912696697462203073482956272!
 2402572634703138721450515700247344213491514734052285913665980671429301230982851452985949992090383536227003248825482811039674661185029691480222066821927776248685514360716002406896541022788554365510383580041475141645782578876671903091129307085200347335978286434349645961411716492234610155698795767346489275726011863101766406135441085116681119382982865425970988195865760938370375222424222481786815857750541091493122578266895423604608669508183867569382959377741549458284817723314157234845900550687065544834205316890230737704795606235388242890969718116384811790869754350546887822466109957023304670354397488615542499592656802718598241563708686872594168914691360710043394289610928763292236696334797708968527726276154536561851572770552171972404452836546746341497271586539188053493852047982551935940863378962749106807919720855281132025058949537577763172861544667727370271628183185926106427788743876300493398919475758321482018942154719553319857719216093439920887213533835258725186439878520521352020!
 2492664833147822925766046090449453991217697528842373154611727198353092
98930106272264404283084811673760634873975074617878060730950840338741873598145717704423173278957358079347494140894897040826715285357044036967585966383100342042375852680993726567825506417002889808684128608890066682443597133053870767706955089914287646356748997767778774881578165861315307627800455832577033271118080585552551073103408926981579573226669590600710356694876174112619389266445645414098208624062087792591402475217523588560216220005557862377675952570599680809915324748339512133399871587911136062669764102475246930850695462322134004359861765962300742050299815151437129737949707922994816632495177914021070067805542492638784109500562832706881860013675560991461072916342932659876510293631903871069021543296872016968892979389608531192326361844024202057783439023517141777946178852107583290504983621877870999654220216249570867509987566747914172324487345251552272486724922448056289774697191837847348655296262086323410142700401504223517419206337626860693880220060302117967112795811810119757051!
 3114177598035812959487055274932763672395490933901328662789061457894517663437193244900236735538230196431928164999071756682821784142133176514547405452052160890987887729276140052304652790152454273288040857077471442314799517747751333821706658916649189567725097958015747488063221402270949266215305452604339702361309342429608038492635817313645998375472912907942568666988592263793113252238217642142413912008350638421514692914157146468892902185124599475865211511814722550406063164999462134331790816169111902258403303001930311179755052649852445555841931419954182701332074625707923155960751980815196282772487169656841973909118506996534655789449714628154049593088811197193021623332893195165026754893733665742592628172716637770844310817952131292539056773396888513935006407205198690680770754834700907713576885042633039808784748687413282739585575291662806749135608985794178285100168295027208332835163131673200772553918497187465515282661510412322215867851503302772613355510201353937383176622204399711964!
 8909948290836912152876995084830038627216619176012636995469549797219413
032
22293021465947185620570066111431921061861606518562888713457398315916033734737257970394416068334542967758159012033216590528005664521466555273659652593755772980722372661867938889378210216879006388395861551628235947559786908384880071068274582717171113936910029134183396694153926905019459946435318468533664387994997542702372756121296191701936526124107773239114666863947575925383553064699721837790829263777523162773047772749271045715007612468780677496891765229067783970345857272061525296145511618668305947247821631797867377065316226994196812213537042055557928112636553932084696127087359727596651014590160614966403584968153242416948177347001156208511133949980627975623065462091837686269757846155832914941381278615187484093428756701156069834801695140318477760291318511881664344297064993431715815006266133541274178064324861348446428346117466655427026837242838069960010409346352593954224191253990764867787860278917140947780604001342573136473485101945749721669259004620459333747273101285590767828902!
 5404946212360367704124402685610164982570470961438116540762967000254583166215955908948504026486070252698598626784294688869754839897628212939709390901783308707984037922852673772242261775484451963326015132211059946252213784520941722318161339329792284700838253852850876805186459952158150943826965084528195655398993900638116693870699356254100297524742230929012016147286045681289082094333574031665122338006385979825465308282080236721332286779832273078958276560519748332538888852738152971478628488635849487442944755933793459747029221239017736298629453602243895941650251447295503309266448825229240394059170959906747560165804700185608788841247704408270089321867118853025995457735751873948170644458047287446550332612725036773829232145347001110613391626089830944584000608404046302559728185890107298468913055914437216070398017332760543597631789272888717157380656813164829853415239917146792393655594782383365894656044149382706600935577596169366189338492016674560349365265685467167420761535974391968037!
 6776695418159389947627387823206962453008298591420253772496777350392815
86608940781784098975348831946840362002191849652948936375174878594812030089866662338530463851690558536350825156836189832031709254515133884441359297440178482215555300128093559830583612104250372582244898428051134680745479770904312537593627732344859787818790838194713621178251041012044435002740812574997499585785337944726032045637178270830721228524893689106367072565786328625404086488746751388337437245483657646879983033689555202771150894575867250711722701006044672330116087523499643204458297688966743078426852339490002387223161280286173309561749030085948040874214867249618754490418439415680676297134432592776815669648123103685774928851799642953122700859410721975877485297109804092641738699078435419057791720971193726997366581420326846609512284504234917311668532724265129079167471520560769482393137567706059097897270682379163434790239049951040866434097202675851261218300921604396697996257592905201212889496820439832909770055060322863710438447646393499528991737104564733606110596327296523168709!
 0197099298988357009405147776551916424158407837975384404007102938482918399482917272380778157125177296145284727622856122623997015915860631129071849921577229032203627902836463550510970459749198006159375641424284815865089263841540404540550546547183663502040471236325075666288500556698004395006319954522312563531155023695447836524830806354896540927671616549220510975009800215002986124598751353246425556238823506311765459387941635271974421044029301550113338100428216912177141557377842744836383468661184253773314103157963841248417365419205018396124267994100596713312080019499843752034237353766928387636884772447179031884998157498661187584473675394053602056278059893067648610293940281085657338725780257810670256078426729738316982764560243226696654694455042582570687631778603773654215929451461792243207758833672272987051474812672030475879023821635200947260259381310962776178199324390689239149195861121651201953155717874119783312478454866759511499178563705331133256416025723705718047515819342399125!
 4296632124295395296415943366154675112988328215836403401385885188461511
27549158893051928782726138956438496355652649102860743605476598210147588142532911710874369573301567290803373737922650091329773567840710856485354715119531274268452904733421499126461053413452528540696236767754020249922990525527835722554674781414714562810604425891502196029813914623316128103895756204026735404951910895525909355301519073483959731455624977495081485816975192675704524920964016538923311253760945847507368042843666249436592970860444529102462223380094239478159495711951793991990781605715246483232822357530549376939741384807444195688177933656814251669048125493751854278398432828520470559460977184961906950321415212210426516815738174044728186726026989395251329921816285761055334069807190120247430078096767225951843847968702828110960680609939165720038288799449943097064403933494323746504189621790240848377294477757345962876556260106553985879109224492597583781821740476856404554856022897020215482867734127551255157939711427512092157161322688179535203329507068625965402034658963506215710!
 0685381557088185652212316332398396500209725862904358373084804444469111178651229418119041494739717038255333836954864813844712737246114242684415166619443130681869801830715093364223569955785533100726262959467697979706858343888773593829365022762391411998794053575790151189125259386554431154115632910902642595124991363117570750976891932565033796382245185986624364677463584796449490954498424838396761285575047683726163404732444862612564105571193044714161158540080327862136049720032306096076216952632955895887090838942570612940909704471486349456978033699369977888465186707793610936623532960558574647300270720913195197728724930477146721839198532673306686332681706217374240756776788350207760786830320303717584935202927399404491511302421187590597932385268040426565767849660832449553735378738544769057159598051720485070464541553176047409771631878957394959528075996361751545695282124850492874738439721192159540953138321313221056397329935460905209878988234589106086607177584133907628768839812951410642!
 9027497528842766557683580216210915639464649685871915111774404171873438
41108864363863158826903814384079711771339492910627442856479284764344960781053725593512680418446657669141962542274958776861662886143338359748624863255810897928696225524406440386038841014123368286932428506749561030035988773011343870154784319589781842330267917284121184808851463548407110907104689641571588925676701571817988920660253991102227313626057975047619547314778836080639841226025471626690315410833196795247825615532124763931203139414474930951910109266920302220261723893894134303708749687012024895796874275907478759843266473637413381597311024024626143305906559259383045049319543182532396963146718428865621081758689088643731922906357205167244049890735909416197344483559674747388844608888073743562261771386390844931593071875055339525168624615123773573078409710270714905231559505944014609270759073568008901927670535389267351142741085424219691792059927028861138117027598563442327826206085645276626522933988106049440056212212317955117037579117718516884219376448430531406733107637041212661149!
 8275724502769683031902382247522381786192241897044432718981185510248567743373494918064267899989590740545420086857197619918878170792717436459539523078629751411221471965920224813827440803741216330727424601330932858858672788675984916877424709956437413945772367501732544156872742814879887254842172865021058487132748099493745701196530329264850447934210986075340804903120587913677901446451056637485308104577783173730320626356895421288549180149280801458193898104159933888286937514812025985052982682495682269886178849042565039393771622924484038912055098196015715114501238888077433869682793387905054564188065378472047364130697329571682293917739608010277582414665318463767722536439765107358234243719092005615935462507008687900688296178797259716321064350687052612427155365587131316427313785442986530599811070958703927278124385382119197562024402950313972758504093140756157429625396873753643444742516876110280549682031124775037201362856666641793698250942005337277644144462785990211503325003119831875853!
 9601525760805990626810056275910753055767966566705266440045284776718594
385
85736055425960805344615876871903944400350545852748397166289751044402636154959481914768864652405476777677123071611145974260530515127381620718060295313251601605719411119742191241757445628037716900567042820007932195018875272629473189238356673357095459184053045766928549466272369675149695072943574999334208076226492583130510269158777525320897444064665648405001085876979001835889885517111531480894960253727506072364742253900484328989251093527336946503852235281305360148236210907420065949040456659893707053146193211854290407667577193339755084873584954138561886598196175291478387552775215215847014790614676085606826014729994312742156968714979185095564919223889875912058230892864786477350534991468340570980974495261826684123170546289384636622658485257239867634584795638770986826968461274383451321343235779095433620575146476330822269016946282228527358125266283526078256783380453426174613017739078400448303226104125515905235394380968068817451043868368694164999500143467711100064434605720950858044811!
 5018577022406071463047286201145459002933127678278886774370056063154194279235533191390368852503604404379599089742548743605300862924270952615537123156748347201654433057406079998812217197196362729233324329662707710381509436357997164221912604928379505475024950688545774470549127071687545072998278936391132290951404150629661171397133328611545899972697423609040814493353044923678540934413166407159886593958355864278020914386668252172071264734524260872256658615273914731451833967195826027483022519289898747235632191539182159441801967554395742428830915994522326554211875371530902736934889358167490888760275643431862441960927757297414505259661499872293198229075136182741967948495297639533394766485743113805878802768699747624303288671962486114991499870863114256317081964318225727394906007581151644619726833839082644308429942251838767761399561797769478133539126923614772156069989706461924617002533504398985168807008531565977154120966046597053738418965107055353127549850080974268950990858441010798491!
 5370653771973599201784340660359524095219573897158008031265343637913878
68690873684366834965565268659066244401689120991981446329161509393442601132122007701463503280518502801371469946300817670319349540231689455445146147099183936273670274808417760165302261292629578880500087012933350742272007525008932817046623026328960422854052635582297312740700224155127297671318823753588215529408563677625789697955841994370492354319525448282708365425611529973678903967386847075333809175167580653299849789085373367962647667276891295566097604071538661220145177954635333659422649167143125795512703786487391826910350396183078060746664769152873189875961985285549840046012854055951362051363235006782456751688498276834259806183971666586849867989295089504653870873218882093222899734178045677912805587452065493649617733890438303937977501514702892701722863871965093324126417889806452793858415792772193088255200114929196105353771683248065657663790856944594429848176229601882886350699792360322816119456885698955315130014073213618555655517144480433725152015387822066602555008808638134871793!
 6052246443651709493840292259264770612347091052993164735178447544110105531003158415419667332855450056321912056442613487478423057150659185771471244161957385671712403873974892972272530709582167745503947640950920431813415602533002078449176675287544890355535061220111273828587892035914220957294790639256843928502781304493448562276409364946533890891071721435661567994915072476810031150830902441967881509263133464016633135692096677664305106239931941303758159011628139639503454440291178958632717879322691975719763647059915428606049851652654657972408144946552364348446491569048252282636966360876612599239731337867657017513834245782028575209250091577535109016849818312366626051086127645355906707477125708496149187776941612164995511552126120084147330738703421785067597645661446781149805486158317171233959782299447872592582948305831273933432429667419473280889364708120943262874541848420123196614958510156318344960578692838039816680257229196154306048979290720813933586221202277207297502911628684514285!
 4767656624629986277774744530935060654380902484848501919809995229320191
50725570008333357139092834588578471567397893608850509564919384575063710875752528897927984655567661376016920285628121233368299699798872933841915280734807998449277274124254845706067464352566593268719743884071792061812097586831189807883219022066118569823473805368295314476088200254028957614743235959283288934992309567197289692679558166037224485367705857882804738191653500666102630505793775601198279993022442248291870334088255496628185450824072319800471423933515505151990187828327445842193598148316523486944651211486741866533290172149700358679397838947239686948008821357159150528369290157334843072139804141589531684188061904896651792591918437267336533157752971368376010947235097766003312871094686842522293477110011852216497352233448272098478127546956708602237794171271843888755952613667942300622502711642130068002711165711882133599635885113767744417456716290124173332490952376568994891056613451142116064231156912195859595065814731217426711113791512845439867255387502929822184897297878391529388!
 4228124249373829003115648241084429105324140477930953688872244847747578320617981654031098418686883257980470635345370581152492767361389620182559379784955532455157187727453157045759085853419199266019910084578456471142481416463643787499289460607131948866776805150460510786766796849052552658009455849263400026346559054777527298481695146395116822734406660729922876901063489344785551974859352694276067976455148256424830228506285228517264022866558195701133793428751472753209522817919138561326319596632972402259150829485694244214124727369958890383842078972736411949027373733118623674091662299430515864001750521394473290597762144853002218406281332103705330512731560710799972723385432689731070408218616589611797278782615787764530225267188713367421564988638691545528989572991170862557067503713950227435626923445088620333213300718579565122680585169631107666669447321281580347750442953896800975516134208145087045037103309207806033663279771778249352782282073815714032660731343352580969816314512285392766!
 9413349586923939712171088658219151353443566177347403640083300444045825
16822361476879614300924640415539184462632103582178061751460588324827622968563284815878004682542835936628674860329805492205553636563021971586373221495782542647258030128580088383681526404847523270997644507742598749375969475026512673609105981691271372237428597903977809894707572950027424002422339141159562933490984134356650505200171167083080536373704242634888709373704286181748184712255962769443633818558713176075628003969196078711225024550431572300424678516073223556445452582320626836251437733640530421429702555708188650876657766064805593577921989208230575243981121737308076418019524578328415844042780463839166707441689892273124938732916772778521299699798711805928953820656632321982358542554729345021243486807916196325209930748992060203870662943387568656083555777365446292655431719502957389812195430536481953161626851499895046242992370408488547398435379975647628336098414451139891417804661714436449631305352345119221964238134435899346284189797648196414340140237034117902807628828811625407214!
 4110274160859134069634024370799496848404187446292284708392483252239996378027868658021556301500805820440503112078586591530837288859117603365169040172108102849114614540912791314181371195491110084046079223962193770505634812592641262449469630914564728777553564677494609334829578090658080662352521808104105761485543537085507199384631335601255840148032862058479880373665210398897717757812887202548758691998683987713008102516129001113718388687550781403409043695438967387221897262173471628874026156362106049977530770081075654921412169269905252011794146427843951198525236211568946755917017199270989264978167959979048500113335577932236574426618694669561611500382850564682341849398308131016826735050855086258989487821855708424853060557949283243344276679201830612919143719922549070647664608291210047621164910783650597768574584492540684717345367343636467944238584115421200483272417534194984974642605397412362270864472040811295685912591207134966284764446085182250598024415764430500975636801283244611174!
 6023755486332425436793472656200901932056709498609930523140229796645318
792
68823421764629570442330930050916323145271926296021865996439560665725976376115836828201755998338355303268110028112543022718010860019398054610331137182257906082873065018132960292668471652066188486863628441694261923018414059288129501825030605432519431951367110454200171125925179416762513698995853503527839297719135712356348551698246910848166050858493608948828054783379482649627311372515070358459310923618672282294067174952897379410946603874817658708084622512876121842244639253918624999670764921920553726058824350164753426392875204292932252188847365505946620065291973747436807812746083485346462214083167130341094500435420872739573517381339826214502681689235191339643543331643482621656367051060306335419727352573165867848142430246181199478709855908529994712462988346811477600657621385216234926751123843955034025566368743946712060074121352769655894452608021453492275556903906428153364090627187977265368790061194934795011116249683226580219462287982154518435589227460919986964847792162204415866304!
 3067372953496037943948629812135908008235507492569070422504011493870324447455477978994767840015298486238507974026463918346445707057928343818399738834621476348439763708290173074500134366263129593544075171940206426024108395238107546508289984938187678553335638484780397963204978617287246771145767637694689978488251372578698672563252310349487061115327252812756236442729274990855944044946035533553858245085978741330436758888623711382861516968692317626652368962355227118337427107740390734753354574370371664039997900733300523951530502154309053278451494248367040631187369959975502245042264035084996947254242990990467452244606510315794726081659700197108484293305028403179675045299063006913303623162561831814189431562125478780022693861436411187630662804262404570243372642303672015196311656226869287419038421695573490122580143642617240582213053845262954865693241574559957276553216058197725970258517851091247124526794155823574706758290305691789578991178660346005854519602618054533208903190780960107557!
 1608986929740399655659548447635309868375607708152361008370379862657066
65707898506571054107285667797145072174181352316675100430705215441528491866385301255727899040966880021534806812970349730537612125880194499582490590567537530518911500250728303689464695695345960629377068830366192351641550823773084617577715211558713417763742746188548329658337121900504414631069105433091946444446632199887907037566084719136436505171168042382047107324677438677252082253667951695738229082516061360444358021179360396336732802516348252903977129198235337358364622912921578876950504072178036969961830516953225269195227161904389530573179073362141363068374365245917276720231062862359380908494279901053937795027704462783413768779696700350368094721575335435929767707835078731525467939282029402835750834805498846216532219462803735360866476596460223686898244430529302031584138191294785134479107623075454708385793316996148523949205417545849428986386812158468929965862315452760422812662176472595779919083482628270441871971841183319704497876776563524412355483297372089028316754784868136491338!
 2596411033189407735285957596360903251456770204928706205123627331815417981286633512600770531743154074503592363851876548327469522759975801807622662266504946838675832078385902993390515468297062353073128402759942979143502206960589892188881550500243590628437741962909972546029205150189755434834673676467362154599716953715546995354634505839742857745742237006617872238154726544989501459970552931993350349016229326565686659992416402808014260283060760174488748788946319216440444773826532772490012425986091769124419509648678764908681838097338325006747766333113245707828695048790710545604233574963126396470670214820405595959620140157093820331101076232619781904292169866314981121622768774028186299930601355545241190193221498458433010968635061218093864243567581899008451147705123619304003960180922828505979885241479679745262763998118197756101159135093078084460330691212286220719027702045931653509917734448571294985981312423267151775253852090730177425776477694584075491351422901480883368159824655014447!
 0264949053732367113233488710757748543125041471995794468086906662907511
89176779781150058282437238823065815703467844731853568280573951818986661187850414704705888492934785403070665288626399321916118302723448129939936047114047090174349393602696046207920960476856771751109812346720650299924426473812995596224732223134154778082069134905153227866018096281969491536792549636947593243089717986951077955384098558839739959465877633655656416589515908046374654701695814598625511262435436813058014885873782502306823821933198632163136491184459666271504028164627238435240457657719097991417776673265046352782135572266218334686644043859078614656467946724292945690669007024634879171889960358254102648690882625406765423828980644160167624864333950868270970255268925843724334348363878711339847505943468617457568138016566693417690444164162359359541638824593842608896732373692457210708844197631744695818466523244547741616029771800608384085813036046269948977131821949384911271721101910309907903082073798684916654940128704876297156500375003282913066237204269126816836454496668882159620!
 8557862450300558144808494381009399118607191204412337686950729612807083163529451173600127243909914467261920128556538419793111355724666662273766403361373783623109064724399492672033954600996554201330073747539360236131529913180260467334764060983455282903694153801373487184381551673676730306510418073164638266417229625738389156772304931445453070424128080877964022808007005302497939269619464219505722567520304965981731416024486168877239610560603894633015543471915241714433172307031525714505685290789583211954643162647950819230419231721396534888635607655626995962368105345189107412762975618383365771505731516652896554782285478479739181126649270584967879602898521645012840335735527812608365931139320828568271963317817189150763607055320894469174659708682192717520165740676767352210549545486965855962709700377468507280110894092046340278315058862955332562512085895261378348415551947796895243541599496243627925690454568603218681306058500905868992923581536893944391142706813807677520848300840302267493!
 3876996487389486338192718547954861403613515674379241414418072309175663
41306083390646446773104537177224460404631776158801875456473264345082267244480950322364140749326141582303253346056123285142216309458489195503965832585243743673520284170041076119795853282747700259734111571908446889321021025696070396529422071459119602618719587532331985236781640987570989636482077803258087591361306490618549996240243657807039785217724948972731870147224217395377623039482415878840512271220068687795831656880131831107670291273733142243608823352294996769329046897686346950298563325127513514895963272874346727636262291226191342597089724022794770430779244987481288658850522039725873817367933063401005979979058844070486165376355734550295002641766454797684131733689538461008942235426758570497774690002922773619837214890729486781994629751760265320580806466862080402522475456550633169486892169969201948511031987355083392139959083991491914979675080114902142419359684664682365926374008557634680793071188708607527667467146666565379362617990871407753298658606459546155808671058092888155940!
 0416796391245021670984648074411282615566151694819673648606546357800823667857145647733645407266154887458917670557337154860284750328831832013771331036253464832297905721554143529144933180944668337488218467670229775612127171437767729638874466484326853452500361994208823234779838923968174443928226583153385046057468193396595139494122079471596354618998248661932487297189737765064536718207849303260515112131029931321984701449470588327698925358715642673154647327634315824285429347618340299987200696818329795701362214152310365828593203930090795496516991516943578941960097837598735710707215008067776148331749620039962595738044906255303664353446375387404741418059446612582834427819158597370661257610642881541722951790158191046881181768739673629280202656474507738939328896346675282504962485371921026123006144392549026177728483608438715077131763226701826350936439265321104326246173882952322364517235769488481331162944759747631036267645212674062951973783101125751356581230654579663046370707864380812941!
 1622890758604261833929656066567814585149459019520999794688276940807340
720
10918913629359917780878957718982754668330527338057411164379347926966056970179396124552021876607004407087177624539593353885136524575425499802201575672819079891973943195016475989298114648436987646930687328081593094751053132262155740171025454017254107149845107840324845018407877567862309820507407960483100600991121499171538456515683936926294861748251561809584620638024325406394483473248403744646675727080594500599689016486118040029789517430840128041538158979126841986949369407628570460049388172396191514291015208055850103412529006871948644077369988182742036621168459923794486869434595928329102216334014632757299046687805920540812932149983731750029229610028470389673026029169916124787853019958440841470820134497531644070028449914023786271381660970648914819136343206831784325667519936627552790097392361224174859972724168047123992665158817593464847117830953363486182544123711865544311715259983199284679613255746103741088297766872517730611666982833547267021423206645878982132447639241279328749124!
 9072592245789916409614625633047042676550913711685479931925563424791677333699974585576997315164153554589970851953712763625040400332570405458222711621706002345388951655805098814627603525585184850824395886825973310112458476399752218973687552955670502440780415182211288252021280407352736318848237567258755997726797431890654765384640449155146096273131309514630077589257052099238357185422944580775332928443738234130075675224353292618843193599795825982514015315956304491399991677490047884221179861290155177081171033734007644092918310945117922729955392153514928984116200089854774634148857978423441697067758272588053008636377120702729320365052646342791826099160856254155223054987450965307539563350646136810198220347496222928500886169777279796254965813523972972403673589541031476413724401609656056425709303460799049739572334592562895746492788990901212893027592646234780959956060442676039078058526497035308302656692073027517368388208951737650786376298996798524994509858472257699557102813742124764484!
 6239771326219210502946662580996042931071270856055380684449548089496649
72042320678518187103786385839641896419952235722171807157322968292530135635195039796706263930868236623481465374362820553025883984712607383465611429321470276031314892271256160647220242261336057388170932761964851925012508252679230530642522187064954526899350460309033510518854384375904145282810795475314373691497526405557078989262162871826267589126593019339550721247467563405708092955978083153811443756444151832198360230840969076952678450123275707548320878492099161341595286246574521958936903725759490123504699105474195734425479651530342362342617007032963846457830712765829597542290305172766302429227617606224105961479390967536766064966535250100687485874844107965659521452287994004931962942886695375208154409276419461719770313984058604242106027624715912653209543697875456324521579365049288611048694007997054028999670686433668808788040507550766649476146261842173870672917734871173423654520762809480348688883198232862862490342484943692527885191010532123424433754071281567347664631103587143142802!
 1837186195497806110051148067591852409296751957566049638221323708850319145929322196090101884013300733843551824689931117607710176123085293779817845315357697935195795334216776727331611157370585683652115924858009618228639646052148451597572624824226478575209221473328853848753125971521517178051076176905173401881915359297153837880868487959455312475917000808016422827137287781611968587089820816159598613727796556178763592942058404732152046959738150144817721419508287802396114177540910857927300849041282091130434492726669804365175571592180108969169030557089470573491495595784882664388910322974840695556641334795397210318579161266169269231536548998810994758065754264403495853178434056147447159266852168518465220110375286245215595953873398863510809245406571968971210884621463652157849157793236118643437276676962935055199869712860460919223239965840000338765822449774639450129515044692154175031556641108391722243967694620772288012558300370978490823949303676276614215325705621209748820570981022224250!
 1666806577002657532151988054293612180708504143249797129429996896676735
14296555290222010343230267750319415392566861230093468173141637352465096867617275220005282481978648297771350080016628196198949807768915433786591748537236418116020222625977839614209248318631284095626717826409990047276372056423875354228348032672075675452848845841606128956592697413843139061206398769491343001883586737924063127294555272917427522645828682525051113210405167016660375805597746067160850228907201164204746278089999203026847036024095880338808382757136240797694328987559595959337037702414767182999328450960948424735377330030317018968957855718783782216948109304577568364832521506687809280727416435905585060126306618839418965613063696598624062824214457389807359652202751228482569681081293166608856828819797178797131354381251704695738277017905596533481839862308915739235331849901352893728306164378667190293573426092336403987771350048046948440853796671082859861591517929664885427202157590817875731611761248264307298581604765137903550711008023776062595594936312832898090487141851060597172!
 0831121199051335379753716858609763484914578295388355112777606596348054022607332107414570514737548284369943590969535861104038814471444963206636395942003891392409250151108833402516805164042421987962418472670037758793158692553939882536142110182829043781914871291278309356973933152443839760799967529947888413417914727432015594082017503860536034703589448446514667278900054767130265392309614367039785555090982759872781236586344460577127558017154993884126440476217570339179648255245825312716981935852378221922854669220568697172094092660815165483661009353809828747662360478208672190272241127117125350340650254496605097352214725015210807038072461844787987792957837651342309608848137053219697476876688166997996295265036974794904698291743544076011603821378998625001799480357239564045671562535712859618618567060987153509468117699085894921865707147613717982467420756311494079959851037511247971925297366303710304449568696573444517575400728694138945549677885608729306186536057929429118607464484870716963!
 0598738455072172400116791706681885773062052232089374227515817591083001
23209435418973428679089310232075499311394518218589226808256584618596650018851736721619597061113345463548388352491835487353217345422301170887136609259215601522051980157216063057840417386188883403552888177213698942096786628469162840347198706460978644124004498950749647631297488276766629530351684614994689851279392051638073320414007914353824595067286852721818795014746830758216747072643512464699366442823033789344049141442232117577786119371225562047631916110356876878907952086939508920563508793687740467379728244586016946159176157293079024769932356193723922581443846235336244320089606201697257332297239178497138741454085847379710309857310820719168568593714709935846844491993084222769291207329716280857136966658237699037322222480690503487615924945733301089186934217357890931908717797369050695227808776146134327544330473275033874867355631612883033624157546303499399764029565133718884557538526117269633106577061425328038564898026618249728479793142328691039716263428949989039583320915238065792138!
 2094136203720547857392105230674582908434466873514724999877550056733707347520829748515473196144333440248437196960383071875881660042962074135392361040663442862077897452872141255457874979960856441207950686194047499005412418846298502952624857862925714006366681582598640924088280060511999039526247725457108281287911601229334167936834775405614758247902097061917333500418753676044099706194128571703573750058405144599845311447761229202831108187194926781563214535774439349839135214112921998158789430129395343337975968454776477085435951025428361698282707671956598275386599873086777529515122701555890553150376925245737910741422688476498224333922399787982280174271370612386225255961585039219461872859034901301993634798781455938201705414201726788640731338734893706949839595946177360308466105458417169340060104586066025613304007042117141707904959210389384720402115461361631072871986771500871524900593038827192400573155056960818332001920301829001402360524669230696877369266689112527303171969798873626621!
 4420843893491927981640667371421752828351107988915013923058805520893156
844
18082179487967228238414117129601624007295166276474423010052107683727126095314353576925540207823697043855780249567886805394138798704584329708338173750863728646942999738378215217710986946493160577627322669608732673402395837051976681822468914423297420668877827801300128524185163252750788786297837651410503990796117875153150165250000124838126708470236263867887716945024127433168469425145088474912884079307942621793063596336938568761514903357322503896837340419100940825615895022997878450848133883759517676972682218397005082489160166920138794358090455193436661984839708396092951809893399258508213720919120768345621771365173622379807266313911123619236692127972533272786979185583582423500820919587366680310919579833293125370767672127091858478670104164558268103997078710738026163636707745263739909915260426150993187782800481103451813797603530897546186425404237411090571638663639528306970965495043886394890922653309836683902217122861703187041501704085813271508300215301387820219477251113882834330257!
 9040364336538942434009403655679893260818735454177961633864157257077367542848906497219859283332801652600705493729285383522601287938099110921101633323281442167512956946732812766531981035172072624242687011469787832739364339275645647753255158075131461254786115206891352183720302743621706856814569458215375286689179820402234532464112547329732517111683204868708669358957509810328246511381650610887095887052196269180739703952904561571358509944723184758437415953763420936800983075223639732863758875271354597544772426023188796287763823065421338086379622563160304605423367258868707268427638804989831855189083067241250628317415111582542623473314659160460239899269759964265692078024996567667121451070893052551588512427128235218783989304752331676573315417834246866349372131801712353121990114091263786492029862485388984884479028800387705545933104732099190749078762694579549619628662910125334244589684265544829123713917428773518270942677335158818382239859424062219811019214655096115532285658595964207461!
 5954184080348741624229656734920096872981606727546516981526472240580023
65255114149729343127889311454041393261906652348410764268545478946028412829557784061983842053181233504666195518494417177443456152205016111196746660272408451993956763519092112338297056832156785362677421338814148535875208334208444449249907526547436111891234841387457242102031642617541082384233879861182436536586322119197208040226022967970232956463239194140624009894324915934628076418040273469410212100210003885358507042555801147814500423274731299656308394053186241574597355023672462660960760362192833979953262841512758526599607067008699796714577081415490970754549363554725165041919198175564510313532087006634488022974517861243780126462525026970371749488394299792408242282888421957147238419975930601935674402004932924922739060162959039062735041936228938698558739643847480414050132927421087875837237101786234509014336215392128518927860024790690416723255067954009533411343235510926108582269736623677471377347518626574328436075455671298688135113195041914717903556336779269943819404386718042681025!
 0574884118901922908891579185294235653940674399642667018676625170148783127026118667283700281977750215858507187403989345700139340457914113038894724433627826822086031951658644513479154297221074701573699555742381376505994286891417412928305074006816575605488268860785410252984387274572141381200013715448051063762334575396960481236001821179361586443380129259266059091945922209716276448376811694253809423295180296147204862343042812488557921128765332661861575588623758914976635976262671317999287985578227953370776744671389089788854126711610112477956955001893571644511840044577805108234218049933900742534402771812005699624301521655667605025338235914856490569448111763417690613942079098248472407973252849005479302477122694387162530574720739843156945453828516231556051361247930254494253286660746275457889448319872275700565248787905582144791866966451761443514120960493856298541264102307852161157289202149210708500794754908002951166044588805896279685671032484245667571509508738352033525660217780495948!
 4039155553025465146548660913087052388596315762609351585826068481733846
48024366025101947978459720062552594800543785033878640075983455968386084481397923877498037624741958926542580736896210097055812978071089379002482533861894017357747837869026233527705520115956800562662307031041972029747315914741263949395688402982176400215511107707933358030743433320971956547621273806261219556650697800271309133777623453325092406825550599066490778751753866228503839850126593208723527059140915410440925082615878321765871085234857479670871609726657855818042083184177594826789624695246105789577776916577351824088540666921567783688733667765464379111528095688221559794726980766969326419490886816355988924853662946529777578217787259112280999347614330368284009606059485584383181585628458018960811114901565516729114190753115370055506568379897594350887270824531433704009228218349204285376397456114911436188605057225799808863966773008259004639917175556434964924499553256534350427293192847402561603618614118786437228772181567098647066414276290424787381728381010606536627823593628732401563!
 7148524877171657250304835878509508672595878486177597710076438291347644869602742696829570237925646328424092565139226279215194268869786622297767232782862323428440454242948464020533917662417742104623862435253571245582799484088213514922196277675138983992345525096308332967972571007464745615777115619513838554683801716739295903482685648588555503017003456131273811445516204814299295780305372205867186303226478634631272462331227983296290806951712247601845004082131754733316806733220040447755236990560284581889084772786354378748266644300997067351571384046246104740201463528863636645435056087178499053276371925746067244235174350281721473457982406840818506894915325533203176165792349390050851012548646202078889869962302881305424242304579427263012745544916290992056770081704067790377922577493458190581488626888837215139570547109000288391600408733111746987667343469015742288398700577657187466199976304028681718204344145430860636714283377177178612143652795645126629205278750356927887347709160319600160!
 8945814950807644346832681761155638771701706961173577940127292339973837
75066735015664957445576025465621356072739569456736821962538700476726904074811927765342847763157964868825083158619614918056948183487586649243262768332557666146874490540248661821773597289801933913104862934445734619022547372116508776914060833787205664333541076773673862694358752477926319991034293166399020607977883216435398376536422259735104761266550577551966151338147227856835610204718969829412953677764828234330582574658201114034741394763833382881399134014757908983504201254478528982927629653604008048330623257795541159986812906349030502026957358138964604378387653085549778822993404274009772586303519965267887179106148820293060297048736145095776568855770172058170991168924200404139566568466960731678855637296345289863936137515308101260661069215420404823553306717175247590074994620697135019871171822837764806641839628760318962075506163641132819009790004179737704671691479120965093375344515613624555128538169471588602899253969540906738282059944070964066230070132585215287361659702270936802367!
 6112554059418959997070176530798303976213708601687760352967071461198848769153425903835154301596838922292932555828223214062636673324079879927860181153044029411432158033545840039784711310156522573998320711742783509599960465897947188209345453248035728595619281816253217382155713450308751665258967449032774544870619210956577743068186452091473979185550437299292834128116189021571710235580738101864383054264980693003795797956513928792571600600889824387429009007597791204932707565447378998817064920997459068605541011609497630616849158688307730205183776443211112250772250962081687678647800692183124960766311137403786976688312423289280062441917645301096925850156370019350016096925752540981465850344522163045375744577750782233681928477848913893302795801634662959442922911476922947717613676627936308981060162044726989607195941498946152219287585881713627243837304954477387594331748287696200502454507302557808009387397680105846242797592333611633148398240822555394109933317943438663841930728251008995742!
 8202450674024727149628312925945823875293822161032580517186002611964862
998
94947183244145275488934047125930331887488322894716984335946436881026093820993159742362659869839970081587347969176134357937909476580458666775702122545257099018799450319767811874422968031272400116661763784695335543202836438602897464420207109155234024788164125966721348185183417525787519623207576733861679219194003706002156900931887112985553969147170634255400824076127252426300561196997207431952583569955845132073817881589042965577608414382409401611977236645616504760396839698674223448551155672202658351458503592003855354129950786037261423048565786210318225101932193346122321194641361200288121597736332562792270020800066249328934769042314213857886660316062117654375853713469469330209453681447044159386898122011264300755694206177402745594959573332010949474138442959660961122441924534670808854655776440617627454571914099065152503960006011187373041218428933161703090250155582542511899638852551259492167233001122296913369144497670332218311354983196389984467257945140550660773517306128901950894349!
 3450622664297723222819278481501282617890444801224320457817395475041946322549290061415756758829029645681041166828458009298190285497230522681273842052805080600337844192123482480659961983600253206072020635222020745888379432057860622596294584443696140087133345540176207770189363534099673244562607747983473952810946740115268830361965197066511276315046224875229603006482990427959135785498246838992880327367567191769876072565413866378891428962918349089005610204725402899896841740942078340058963566922366614493646838971294679653721459093312056623200168167967752234449244041077474506511756465382818836096297983814918036892696819535636695565675934135007800620937061643821982849291860509090105349175210137476172025856199337624205554365076565376540980865627028343497847682002111355372535424127153121654812326169363080400891113520729614149339738179651225232212870791695605191063654012698767414958089400937969603963715569057239407800498703632315756928096456464111419288547297706475132290418353244849865!
 9877783387570466015427967455187279558178974673282314302259279359619749
64558680200887018234855455896266441078714208427678135848623193674573762870025499292719669348572254726764937209569905959300232205836502730241483361418449647207686910826769801317273117726829546983822337059102213358496512804751845238211528161413607603566066663119685464400387908893625215392989979660220700362981017260143550604066829414100109847117273602936947359841945360144415210653594478502897896615749750290098298918980675003906183500530469590035001204974586429218381782166055262829053469677812853933372933353356279669165200203033855665410410325593449974250103465151493178752302217995884209799474625735594046915907916293562027788740536606555720665628743016534405669589423396622098618636215181836626620738499576489392916997225606154684194580086792201987832543647243989993264923206150178537347611115149292010674929911713404647796805174698500276761468444915506249098781935876745900515230298972171137605649556643249900078712319007616259493415304383132131889024336889847667733324496322202102578!
 4884228953308210748119098739323803775160860459965685116807314237730983177143263691075229024752484980662217064152248738252619589179739174118289950895036569634882160843328990123512125467173385847253472524443496537661224677402172926345622692639121863322427756506077234500753551429935530677645391136959253099128863339086151350903108960993995687995183547544177519527622938720730856647006124236563649877026368118556865507683534242424290875734365429268086205002037131107915766019720946706074360031637187925091182473716115288520972517708308566275887772814691994941056833011254379600982330667419795412005531863591373938858104550490546489356131434691797997195908463259066377658557900034022787699438092127082801926325566435488087166705819652925551033209613107011008330379150684297149074545851670812030529722604800831294697550647980353447200708005536474068146740200521592344732821790224130879644569490464622186214095078515173735921607848806601029433402100646880249189315740032915273857542786697393608!
 8170785047738291697976581479157205026221469847866531207593066013531427
71561924944125272233859737798476593192010288063681615429970660654673787511928737485799177171252584416607292129370717956907786490484192367256420254816506097986933944658238128632731470774219132985005343982366082145383868503027835512042844393192987275083327038763405666715402399538941985869606893342865519352588113424111458599602190320050769616007782599633365581871490968655483513494630038688139943037802414422058988678146492384170128428736139098203357206568057501260018894769880718647971359334746283739882410993948759330289815876972746341469174628133650425700298187764067408589210228516337616958503563044191978385566475205111978033797576914317890315052588470656702639144450138416749246825967180697610347479107246668872403168018580965171744039000971799697778104083349462021173551475569790927010224038957074428635959423510759040888285107386482164319858079495141050224862283841393688370744584795518815539795346860631568903360317935757995258399174217690513437630784915950283246433514109176407272!
 5561467023714950921015848925656479905273076075873082324104460432388076196033682298067416815565424720627902316511198673583809131485618249028444758796777727049246364346595456741643147204009255576499720011597971337241201551236509482010160743851729744409908589193118420364047039217693446772262540537711045121463221233747762909022737294085894540797716308857875367015993247118078181596694233065725445445868135401682271521621967285308430413525915051063011741817125119172795068923184992293127156057453008715035211563137383226297731808481753298397484028618690765311881078168742092330633485588684430436414287650705364306450728947048518266186083708786621711562781022643242846539089864855590014024267780250561286423573922201944749669696316074573608063637679527865338588978654620422784624557185618808306518391896706370159498793456023605819436052547048028725598082726522277870002197196960359099865964978417708121273414635576883600858944019025027933326983831929317305758652944542124944711593566067998377!
 5925743808886839752893292961898596534897738775418044562997808698281991
75096379496793992835758560662409750489597515415346504192392606414510739501555688108075055113895754885979150185983761194716790864642187001568829974621688407235860923141544187120002353071321048049416129696718064065345692624883181212894864146238352372637141639054384377956227295696194655185056762504745921350246373907113173649448140287027438128388014349593215699894422023562401078134729448807809262835739147166505076209531542442493706769939663939581400383569687462897221045391536358714655988592909324779960088102877575898296150456061684418141864459798693065876877482886740742160860088834276703967752658439335466984587235306354535262523058701857879098610944938381810029609827444310697211741402356723649526519544544627591699977873320246958947572260192965414826376520101702601107779274655338983952486822781667864820302729926078916072837063672253911724303824095389722210920802312742998667838378919438630476478542998359143230787052887998201445725470303420222060590542895077872198167518377094599274!
 0489753868131043551890803759734338480648571711911405447862666034908571687288260625624846670540736402107151243967197113846855413757688099290289888750657158355448639302336410852815408168724370872349689295158755092958163357643942209366241556466066123325025526680918569674294745111563659767614614408466353636552170707735380722330599946547530832995265764740583029188438021078688208167627487963603144262304096437871250660804671705728468313928306456838026736438285811005120824375268372756548260394220797843806431050768809806613990737870219884572004137323131812358081228448879617493683060475243669433356070334043702168945621532769226564214133792419393968593189986216006392988218729010757998504096063082873159154692936415771723651181791109956516884994266850083619659901011588672675449680223038676861163076238423230439687331060172619526416734302137440243533847384823418412287625484038360042204604366301039669342636345333593110364856363257177378125807472276511585159655081597165348979349186258832841!
 5461863207745348124492643304446594733732249502243143961233438505154080
006
74512957118892900930323028595408375157506520830711245782152261085395089338976496423456712827829325300670808039519680376379880773400525335705634165956869786459851163340409752940267408154610411820653915323422949047066984125185836064503090347778674142861863816666235346340127207004142013273766179050822744084007628498651858518645620264148106425841627296273206613873985561161173310105209780074206958666634211294905852721619848999930557161910270825476170678315449716065123277724738410688218861623979299777225286593355944563669119919171313594045327028534437646810926168135404799008784178753027291911819300789903302262630624651388402001032989563747858822229689744667626196441639737205723598857376041952614323584554260571407674810429119181305852442594604577606372815734148548771524774100733018411762817883140755123131050975370382081571345148733794463544988660061315655593325176862014306377191929080444226053753756250832479181207241063428870987044466610432009185546545511243139908425772197606430647!
 4260962572367950547187344740818985633199309289486748004976809314164130817613647638662035527809790246930174781241260080910342808929783526495050147181689824164408302697926171343533172914107222322548518146465731212494381529975925117180120425864820643966972475836981915466640376990288658372165612138933978178633613909527072319360457953093858465818902303887197664824693330465190345302954250631011191095404663931061394503230906021984273163974022220245113347559542194335805925533968052917118119063961438265986448343577898370978814281316590749542239998140930795109953757918271919161714627538203813617893847909043225855552725666733452181459106971099070157136723366038675255506282715190532826245509499373612592022984634908314872119933694994108492530274846471716678246143766171499432116259344782503266914617176671984093614647060835288347825482348909322418076755475155501210975497020935432219472739538195388602772511727139532924830503697414219306745331995669724270557705947652044820885444564287592740!
 9096929896665802635076880492374181623441252098744920063978728817989055
64462824098112185996330786927815087876231110919011931736690244096389040306328931287294915418136821992164600706351814030873560923513430459770206822378918968077196860161413742797823620409392408498689355791182795575161771418004980635895576226384815113933856541275229311396169034114823385261229113039864311980381169286367655314661824115406364930352205727672220178787707092795900153042176147200295377585866758865357646809504936267207172325337622063161741819062930106522029861538324511289450334806753098511973310735521532157769243474775501882340973014530728921529813645427199985900370480781548516051084831457753662321879864513179429040319341125584609020688762017033389711530708132728138616179073409226446443259584213401013081856095028990240728657327509804576201503525323980957329008782910238085969250352947838676987979342664039080880658340343346263586029854136334265725052791075107323133810671291618223022033745479144041615831603945656325628748507091571346065319052111970799104754140111541082996!
 6478548529011377077772164189072354558016775797063800259830261224874557415939360216968503855806160590650148538282393513217855528640371055414340104103273281473579512719451893222948169070407081314644018152101661758079519771044430984601268014974883228974603195582208470502111697171379643096673764493110139920106461462193198602575117189027244940647588352476752055609520634940517325272662602923142370020705207032727346023296543363385898141097281684737755275876158441981618622625141593108263460431564111562508469666919616771620152330149404673553886261112558506468858942696781701239410408634741231514780219722821680892222989373080741685677313967988004520455638856626994884620751157911128808473428191952361466944870765461881556972405994215737783888685204367835248958612115031653011393093089466361158815707827801696706565104502387721251822956595149802935852576832557499454139169893819916513779816164246116346430430178410135357084043458507440123880079417876120725977556323846580700071742447201974084!
 3136350149680381854807877468227641077469166521351451166989409225455572
51638158054544079437707999246283783460010536214077392723871775688316448861720768618244934057075246167414090407769581465124527032598098192974147985454722385939901583979241951712094244037347992447963392348905337396677004918515381297332551438122245931602914199028661734964354392927788613302478601619161723266597720134117759664103080905917028244533082481407582328881410053895705374780111402571909088185625938108512670152184720744565158471747351654905425371472595100946949475118239511343130600656625979408139369808090658241011527753954666347557084575662587896495608129314840521766375604266388818311840141481822631333123544600495372040566398381607333229570042305144578601831286909265296769380613151932059803149201393094569931560852832695052688827985550261646310226491218120934156604233184181229277536788810508774235325225512495921006378377710752309238052453756055138826622616460117381118779909386256538687609386085130387812862678929455622099736765519758765657643365518297166493596375672144760449!
 1113493098081031687205472923445468499891891965115963765766243418584983731494582907355236268300390545078910986453157612821755665366417194576630975405663378653695865311490584243079826213918244944968931808583584622995276591227450991263344035558789160791674588717587534295100877903312970294723775554721742072202790584188138062293092334118955170348736155257113023428756094222864623301487474216591441439347151757141465117721151725334655877148678584431011472028527874646940839585720461603951894318302145278603901573435928596850850602679545818372149342613884708301909651324434547870875995154067147648382863919635412783903648945979073436654198324298485044664490498519198170252504149620127239613998692061348139686078204458358968135535592341682046284067036001535968354957978646570385694313496334008292201783021171465717820343465143537713569657835852550079150535832721963398050182612781916115793833969684613773398123702549877271044007041671252419928809818135234268499807576408011320355966898554729432!
 1307241401823164078214558734929830872763727953297475249859328373236103
76113783945817446086386821141807694552049850584071755237627130312123300560261921966108833513445017259023244703731078493106366162430561417723560891907577596241446085882693456324453206681255193495692372994800852878625088117487096843744994225308836281262236149836325778657353091466003993691169344313284803674696528642907500551314844762549623830315996978218906993591967532580475979640639657571765311488808534924094279460836786054029122747827450144837284152366108317810961976618924029297557908581090558177005075419490817787432094598794536205851142989142479001161112047062432388591964959371713398762047259236592364300882951152545020691805544608270229277696591359987980434151946299433304552086777557128398390791251831011108836074419199632825080201168170803128308264151563830020891704527237595666178530181260202040079329219075906247541241733047676497233696981459099504936533972183416173814676000328658604347390506514953307562937193688685958279756429424026045277562266547655027230221228154946046320!
 2437829094681922599082040785293466043760702203962742780879372743429205306565333422348056356912911152305396790551243165863658227925173786938700354062711310633982565006248314400268237509509955251944986588246555408356418884829725881126238105449401901221011293560669116057494622731092119136905653284541287621160135340397831352437183925861436429980512368421582515270186441008754484889820880548405493951090921811405095899894818896529333925423576963115191017513000521222727464782175211305349141263091415481062938757076567372897247468313321850649869362652765826373123960229707594879302822280769647712486184280605076780035570895916198041784347186253142986052207654480261954205167143955962435916946031030188252614681712871922817151698476209982250392498125372116295124684405275033775757162599544707056288068570547708424720662689657867701946164445254379189209778944000633632974034229498059214365185523167830554490434635837445299804901379085409388291832009213588885440657090835595647053476427101064473!
 8907309110903371281335671837948085171319306136711254753111867608048054
197
27159286597928465148800498102298261104278077874100039001536306127867185064593407335576219695740174363895318444094104637979910568040734742213650819456582638471702967448926318244348320848361946655413765253816409948917261929451465492883057604164672331085507267588432514081443833695933668848133389250775822206486950220386277357372271696767968180899313366648775664042738072995079134665196038607149877996353598164835466638714465383541274436613755166930264389632785285748960243711718271830926969613362289231382005131112423231905428654081706467242922987899817033188859851315872969714408519760842522837442621391230704737249490914196860543155000271034055564264806009919359585878278260919290026993915455552179880772875628041188187828747110413378339666175059240245932956226324886206880576661759597630201942207946660405844810429819926475478582327954544245159174006433876608930231957726062961837798498587271559040784241324139200519730307429991546764582355638380410139452815177823438655839570372319298828!
 8462016887004441729245700844509913219868819488810791064396450541936347941066098056710556215704081462315629327844175394391642073219510052506258286081656853101869948143583124039559110053747641141114868366378424364680151821217700152926320416299832292290505372824056152908850965664395532539164118134907551107183266111535340668712006345118841490409464806134507305574502215040851466723025516875114024175193615531615667708080693044248225254284313675548377823818668901331774438757755683261711854336158898072416369188935913950118092866408563684475189271196021173267575634737906418481885352207338979483070038781330565153286648418773696387291760308156890758976099915015216113854068208690674523442523191549511312098424329137348065576902181777931843655573341641484508840141651698963006598915646606629474433479037133379965558828856254238459452271110847057476780991692102134025276784374400930263788557515019795342014255692295302281433230855877866739184347608765306127624869755861605311819261684427893380!
 6055475153284839432037509140481749652934744758883057287579805673941100
93749449465019340884581371383797200181915152809343570820853506964775849285132632328568181916703380468650302604534048827907082266770559565872856159897030038592866637382929247874125784962061708611512847060512712313822155195354021175739468725905067687642409295798716273007399574952697773328583550449889174198657098371597947062820479253189088668043807465663485481180857930459756883837607603455577712658203094959840006372320079881339586143478415614788110405814771289618369457670104716066655034554074346805755358727796830947333630438652084672966504317150646673307230479321359804450764937994524223996334690537915929354515840135067322555918743337101049375749854971497798296451315868990455792781944296270471652217558615005200330737396116534348516306664351539504006180180265831827607550146207910637413828907518081920654377709244628271628086396103299324351765949367485828313247315671569482236633705222883034813052295240799495171514660420185479556490831176323577775642248193183260469635236193217412176!
 7954179208258000440966120555889928444627598742278771904901872892047694137952689292129513228358888091328486718750279425973354190381627683308568153558070087322869931429071743835324174977548401283356708864787513450355781857971356183954757047082170623688969937819502195516591776155163617701432928519697396914686718917984841793133961064978310831038146695403464203839361418250871279727286800630793169525769221343775280974538621719729743746562018652776997749065854721495227182277833735597298960582872526500056285203957410860939611954926801747873049007825251874569853475729323706044760942637852356810816990852332664634240824832529858666183093496929825407229902479175080600657536382782678683934534124038694054868859378542882911230898169313921072028458484415579636634013166050962968943942514108334138841556734006020347702469481326437878698029378723112930488282972515072383181312481949757097519629975737946123919675752519916649691951293335068597271000318820379882996401478668778436322329712624042396!
 3610880705763813064840189948118065020655336337946496107310034089780194
71810864486092887499024411307303098078524313570457392148227632809380243440996359837265618337774147436331156733710277358342041903488460172842329278868391880928118476792922454257683413150134660074585447054496861693850200752702279701921159712758088900408218711063371061882310932717054306026893368026713072486762779862622461782535747438873286079630222925097939466714300885741903821843526108065126523951575072700445385440001280149485562660425505179546467182622396903449879154092382980859589715700978865201310554829477770405686561408546889619363041462939802963281363686598467939206102866136053094779859784528192073491956173430212407713937202077430440230322379592019109409061039256944754401813208276880099180668245433535669164585225857287527404977934011749890140224266558984973836632121328615811693731790829287606218773799304218390689236595880319110491350380817702015825008337944244766880462202558972593848059455297675687074656978750737887456859332784961728948060924629870554336428488931303931668!
 0185976167426392753887978790084885554745082346436417659485862608279474048350199798741023816857396445073778814336631999737216117843779814866709224041926135182569124997843078338433360367812775383758404624573543592800571213936007673913689477603604689213826165071063437166760421729839428625814732620102413718678112882294395586321303838802142174025650256912730872614371508246710530573259515047050479420064443565044903337264417048706536115638102822743389783213617108735266683108444408936975074357913972143590223783041066070453526991094267456040394704681794814799314759298909646604175229783657445776233666241965074497222419720169526132141249677551599101010930841686535288784771848250891846964155408037161221031048104575985968634231730445733617783816603895450329900255121768962413516257614287787457744308610346887459695655559791177798171125409209987538729666681506080066635137915026412194797648652016547162571852473108036525497777162118248168680886079808695042102019560900110335919194018935980313!
 1866580285742597269729549585458495732798665712430990642193081544847984
16025574889928161598930392160319492139852924331831807198441803683012974948500776702647657302716289770471816560429662055127390915852543543935768906215082096524164411295752759625278811218220760573098674287192877831201381437798538466831536544699255284347528976218634009537799075760698538451618390541582736807678003631858116177735253959834920567196795891070097250002721007124645015686797932997692823421480424369253071079552263913860056121430426911976329495701090735979815509658671487514166391612157689765997301493805528038546028996296767480138890210668408658562670902373047009138861247106142794867220184466330524653962554133913672141059215290215907288434081163587601142828593989932729054023057529561612281640400342017179688938770328168896116613133485686122137097617356685528737950490782691189726896405335042803240752766837281402914700153102490789554528024206331859201289476368425335108518559504576232865706436596212221543681673406612096948091994543674185856451549288962228862342562099460929866!
 9577510376473378954372774997710985415543581440471266143057086099190161453876676360043255980730340397760130525353755319148793383467889373798617119043496843792515664071869869792370900676750377348951039280214659941559104604718233686600499932353247059480576799762872341794111109704888975969371106944094391342007292963909279769300096641077193588219358301826290662908090847588735994525769970892431437298882049159098502654309415018764794859914174576398770032179830789841876132207205412197781979414598530932676870138420804751478921619143397535898544355866256217925613753759507532319731341222178479140595142327079006096980122084512141287343607342956748458125756487011186261188674783240920649549945351197807337098336727542169115284216031223653713101418119686139113763082964652324520820165612575034191628345782994536425913141887337402559380102784782512202294772216496227446574460148678641360793944778834649062553243925284071496743070519203661108417594552495646763763465679197946578705005960614211005!
 0444305332784607679242238844255238855009519831873613931191323022152464
305
41448008197557821008562070748003549329079750062816174935748317240153828240081829367587920247105865042885595280534464844965047495540140584928363336102057946379050491553877183120550296888404775267332363009374536847101484479561426339164909067085248511653846072089000236063441585158438109676312106401765334495199348466659953736556344313718106318839867373092277485234253560436536377695765864454013132956430557623430876290979313829498113480718598805609500665576095775882250896660405612543719958253819928172715800933896019804746504420274396310053340435853993887469075473693370503291415514742176300808630502248096379469158808048715385064941884271624038486445964996102605661808219156545222989534122644102252083390512100966788684919865569264702312711038494532651759154622470904254233482347815362748234413251162073656148786776455498568670117031418920163281303157824703007192273901744121850249591009203270698441616688244531262639239077060918646604973346120001456881089623687129797470431163461668717720!
 8321104334448037841094671927003925642957131640642781149639403774288433054565625086242917930756690806312684726388926319664590878806537468538253681846469181887492240120186539069316933508335631741332213881986071115403387253771477999286146903622949005112015639030634781774644245278654455868506827667897490872717903501430926207739382120321955900787717260630326862586918338382561252350989385034059625788762497521780028341996393065260212022838353179166088281734438031353118234601525728302019490414465671389348698831192929245041265426633287228272943469543341006166888539036079960782828232639453101853255156709278505161579356461326084214660850722233342842750916176912038028815505626140431087476305929152038512141159536364008973376961737552171981370574195952511540391011363215302902532681068748747046905501767593814331473524885552332844457629209273454621344422823726342573370307726344793085074186737561216913362258968541554387452867250121039861075149980739200130324150084668381015889723121719690780!
 8135170241526112353510199074163636932809780208930650030724506906281989
20735246334741545597697755615346840553014978220938705013616321446350624463394156772941151730552440598310545301543859000920180100096991924398725065701841295305692853254050442739048155509672753094598264759919030532224515808879256706680755574416398084495478545280472667572600133109873783113631305804855838841342975526450035366069662758322606639756880913220904301005682668548696649786443009291419874930173466107048807737078361521544245483341486667132491151213571518052679430810661114681554507874881321919811080491400714420358242530106268391381609044613033395742924592966752775344032442147777921274068681801579787651308461821661923473100796241238130582247743932370106140107402937539763137219298373273997312410634521646242053763210034913990339109911555536766267558791544104848020992469682391905555164591176661968261483646102384193285691115034181978499674835992479558833719275671148530868662043318622345320826895252959745128108490805240257809814529710866702205810572699880113057188390150362329961!
 1746246778926796919045071352416329610410032692473804997109456903040481549037048176849984768976878833539621093319114868067246927279509014389462142951055679729437792447820808655733255430046281137794148076308795024428214588686151369437912745225886186106165591400854410767860711814762201119584185086614161968280422500081607299958384624406051034359146307297254814914336004579411874526397197108227863224563119808924728583780214545771898655519194751948676041939715822013611772649752302934326195278327977027822940840616957723627847858488676007331748266404246175833290916856367219731091530011969529855118464174446631537550488272985692006772001510241922993628441630737344696583439801776132966146764145801322203393410039503879900964508682395664793061036502620466065862293626654922436446601190868345238918721109649957256456430221204417437942552584465955640987420403849236861028095428912640667166241202863338081879702531556009577558590890090590759583813827872621037888118266388867649707447076711594786!
 5073250840340683549001665882517964080181095445893461000623469715032443
68154755056235270030673821441434229767807852038074796441095667291144702034354321591344274619431690935995065739921703778892507963778890722428412194254674573152097136328982051916385748632650178868161531583150481889876789355468535919064692462454990038261222351894239755935126948581813690814878676169345592071574025082744722919016232015316965925964375975264386225681169486649070455103736131612024771127524285174200875487490127959564767322268499643172635974952631161164135491679461630219914050709647436502830843725380000399076933776486959396311686558646357635940277856913226849513448726522218097823434680963330322648195460890091398677364626520117469019994649748166866298629286980525811044761373413445452164532061915200728872476253907338289970558444956694197516750097715126303808798446624666986420463600283708796813603369733482124336947504162822767612802533064719318808977672577110461948603265818828725062101893822062851319155672594306057251647363597167596545784581967915766494193960341355380669!
 5701816565397743916755826757238758880984466866373724965727389421163159882486752647053425914533423497977170300106569557239709071448360745466626141972772876667912924579608350880530323011778186492701711146334339043378180105290401932311217793195892324251261485477434661817925997223395600879965494962734849554799501753640213885910186907700197292491669955452596405059185322650280257400909921712644189035423774586152878530801031539956828399430680326324752836573736835291661272146986828890471768010400115152298961040373513323745115968284356790529160104363575517162671486609094140600685753867697126093490207188334838143110914578870211535002263834442827026847400023447770341812726871182257864309650077518067683141960148012486183951316293485654546698200755400310330377866034689099343567023210778872598416277622544712265274254277816636803129200454316265952746849588521606642424775142960446213665049758906879619671169674163359298512868339899585462462561711364818001264635307628111196777968968256605867!
 5257959400818842295239485231256832357079507952533985346176260085415841
63514628161696236323788693280713128996035670212933300260203953995788504007015439769387576563227746793218518466079470794703392716315296821456289324067991715138110703495625847901377388998916883961364931040726732589583651560782853401612030072341219636974033335236736121195806655861038646385099928943981574097599712531236696310423238293424740614072193931807897370616140241093469689252053250629591525070060571389930160141606191164639029797547572793951029633694038651860849579886136379994596604375605145526044043862720006016934995697521197604565178098135339626440055235282877875293910446678627663518416534700045274264367192926241539147832941240036047279466704021504299480544634126737387976186288653781769928452957550579711114897626508827653929966737966229031619643557472942902866339859273743848762719524467067458169892373199605272225982291585611162622601244873828070510312682055266081362373247997146836857799866327382758612832479859564084328100730482467867454210642801005105165721126667018249690!
 7638210066735976115016674419889339871575041672739795609392569399967008254780016309949463912507435400394086337098151358440672574963952911482391802919458680146293588086562411718940223405142486905637949109040167653008881339481661770476721110265033773179497189806026674142049151754784054906917156976592314558074222835717669931768266648828250808967613967296262478972559283377483339188224964216053457309070192462848995135028093332544782766374152894571290894056489850933050675249187244049214790137562801407045479859612156375365845370875597330950088783110513764609983253075566194467693720280672138948700285211945334633656752023422608862052647056370445015559697450223925595026934284858020522004982952010240073337079630238154114068130739924819764047946261502357215944403419842458922153137446503117771913184104482492707721468012630089840560800739556245085846012503402765888507206828469970408610231749842800055353030460631023363766037660540804581526293422083563471309651151956507032491972012699700821!
 1775412749958792381680773284443044240501832210804009076680122688282718
253
51417964337952774044563250143411823821830423382812746766524907713179290772461436547877064611610848059501079068879793277840278941815675401195569994239400439081769423992492208324747761595489143095762498531051596442875443887857378544680622885406551594180210554652477889664411582733364687852228435782033202979502617879497798787221093842585970627557383161765836850112401476050845783490734977583378193592120053293981936180523267039184509620031000158901389695449329441890293922835552668627755534813173776819263165795697808289674825802136257321502113039916574513201445484959501999769152321744665597963338804887205772347910211092739104296853374544352633647226741454588352651476958750385652901230604901799117691835416985100532503166547445916309390669161306693094921613359297606369335188061755119782991495526240460728885537681123947945262881996055778215768373774858088278606228300350029082672443030805518514924625269606864774918363124738955475317176439389900763041587370626520248179360360190844274580!
 4710080278566151277626452841279675683829474380654559875603905476889855109354718519828203054167200743370492574238651501306420422920309355190247972690203310025732114617157566470791436508623531142302794551475821237240600213796775337275649210262206942791871324767093409787858206898986678201671136031979971401163819621755916530813492286526917656840582207795469425645524450479005820691372099648731888346169371006787201948259305556083685061388884389030727854075603988240289880833772556627420149221366824005446608959389878196480405224303997288145061014051641106273689203421644828519880802384542361830973551922989519217773569515979784578285614618903013077007478637583863132850976946473168783892460233151457183465856336367763463948828105926045895180965611622972920936984886457169841613353387284051322169087598645276622779044890463110210359546751933446871826367611781879535800722710559617466061639945284571343193854922653776175082045238292342523711782575173771363540383281099554271387286634517513339!
 5166894972937824156033738972911547372850358845092491237809623041839461
03042067610095618839160114577326255235527661322866787228484946134172086609473005234639441068961376037782335223754715441926354929480275588065857330324398064923100360904510559387887717572693668933652811945735426880884055000671847150407373095768297105370395787713221327962726362262192094768057794794301876488783086179545267998202946213503850137993552485383553281668177676933009838751411162174544578854846885105708552973794548841030094600674841948831443525451481269097290337144174119916665944555248310828159771686724911610913274736949857625758322787747456278637791812727096663392355639677612772112303358386262858660294410319041265468932918605719216731691865623544106431943966805391169121078919283893548845555739237349929936769822262009036264856076680308600314702960807946482878914508106516839325448572249366146981589472410948716151242724418222420270200646609898632588179270135120296470563742504940475908065273950956473906022595446292568587710035708483046167402831022596002753301213908789622342!
 7315706703125572273148695112701682223870066573858495511105000855930301721054205301456047549773684361391004059027660622664960034932097959219118591677796717962322179091563207845858450104652522443469868829614393431851094132819061209995601513286589697895089233404994317462654000335475328928266897688601227486716119843042450008308164333937371009391089403217619334192555844011603896255106248706209337164698872189291449266529373201107240232305379215975777352971790122464610152890677633175842774036020154838640083720920366831134074497170950228605889432157547037214147473307613805185412489648548399443220852219829754330590387552501755041002759509895542206605871648432713907486917391830585093553450513516811671322437074270351472008779535943777854605750113259957708549999008274644482305056636599714853759688221660252446958357697510652051631842159082560141252730581892961779958159638995751182038906996053039025402082242160982771076957989999934160437919312375643713716614609479595261634399231338661636!
 1435743635596413927935917697828780110589406834463812429613235967049183
57710637396512800821082737492508443421182384891937756152960043628613547673450388813879376124950745802735426076043032001081063168477181389162518553856038442824394767759713018628406116392463107903313836649981224591942471970138337993451893137949845849193312804845688940998337671359797320152205032816223751324014060824590010259455825221497397253239902835140250216518313465649961204541614917347385551223247936651904732871648745515267266548096943602606639370080304957480799108876502209347040190109929005647297390444688090916835114491701523487980642463144963649317392689593398007167919377765702110802483583511636742998481403818876753441300549214742228660312166013933991426218449542084411468308654099990747024827376411497507708087430762307676191202836185072542465300917496720403625391145286946276267815413119016936697131451922418991547649616100911074358026826854866498363497613220285603314979295573171751233241415438763663888447349573003163447690504513496173601665649566978513479288912232761326834!
 6619918285506317571556199064951612291807325622306451419988447099623922855793372859989414284376042651204662798020975337973966178861230954868184867727879036781065999088281216477335989696787587896490172944348421407943909761778691456625904491592464184018810471189194015011474498832434515181093630159339875143053555911548521375314247472546529308382073520262505695580482181475077993911275917820011626384062964641706468822780832179415683731486293389284300512360499917222558191510999920742241830525743034741758792619279077536772528321841324958720623556954324671208477875688907065165048264609195218648608985571085010154018287514212137951763306140336789683274852001078109973008775084053518177849928743573621887858061027912974657679332458077738972460156944020964509499808553443660290964586418231409053485855187646807367399173670731522977809526446080827259865559550060386956961397391420388055939606471769942011926486475019262921328495978496482256545472678587349676278921059329562049366771355835304613!
 1630914445135682018697687663845113108013328882415166224892071594118552
24711284758252504284092642331192343467045063693559206346377245456835364511574256130407243783596136596896417753991511070514828392427931736832004620552882090616748569005736522366628954023983268718470306448434256390147314177498150045087114130868986468636291310270037875943310817415608077298378533755034043658604648942976901036983042550451176693360572409065199302070832423764081582740413736372109385653709971882530475564510801972710808451849647420069924329050062773173606629736212378456217943613798690269090928069151065037650166769930222574849245041754810476945925943038925843589661391817815701155387441800101671570971274030720177236445150836490886120429703007223062504789175594349239205974766966191740939400852814159576245859011578381879891371074787540339992981891525943889637708422141784024985209220631237209124564067512672535779567397525976252861965006648891254528966729052223951256543397298741550800911637287174698066694308306669543306099011733111446658609647293684009521647484633793871622!
 5790676146805013603287283105362661387469426354349689878499363176857236893724370874261322057844426981366111743441779737268381310269371334257982857164161006976244432364660858302053605552010966939192332835455532876726475659023021241860994991832434685661400605213482526956255922747938945624648841040640857963568089010144049026682446281859799105573649097427786801596141040315225544626428925772983194939821602094107510631299429572961206702521378217304932264821956425176784691511483662980046198736496267426511538986716517144607349033082024664392860914411959083426523440713048832129126860218257555740310921383193176116268091605361990905079721549316531012000671198582976537126115061908703814431163035728088093860650931637309288427902707018081331855001200482017611921994587293288073191792844839565119826964298514312628535560125840921342882802780715590402079827990567454915301222487432435875756479648295005701007116511700165895297804245084207085828347166384421750867476631439362049912473901839044951!
 1531334355552994192362207451300002915629640142344035294744237147095673
877
88775297364932898701391627525564506241803904140434920089760328867439073937395259645703194371756538836492397826691629408296903342266770876431770645667529698542435126043752024009534307993319221653646453735376225405457730603966412584532939449277955856301837514927338867828352835506649202372431036713767927017781617911901043992286174720711321420792262612593707010729337715926846279916035252595947466589879878416773030920622958575539012839282255277438918162233840444762367956476471670688437286157273429484909011525732655385241314553571374185042296156914285935262863092648529843557490498248318500102396652019962917368315961193589090829325060373209769102339381335087754007569386714574333996906747657041902760135629143034999668235904038615772462817817656321732655714768634329387107698965955411020955871331738947857009721298078738358034177716867267133678826705341514011298858596489245573630460822218869657878238621500180474828768277893592955514395238095034610800697136386307301969353921955967201251!
 0064909159337133087369510011709472804867883981849789322159605217411443415910805873029994736499389666321798947169988844385730944684046489167042874506938331453213517149063398730942170792379943779311219672611642912588694168953030208680309355137681258681280572957563057152523776972436867336042946637919399233072962257297657234757001227882958059015553607538019400193862741720155555072659495617556054101814323089558368309429416624499388449492633118384267255981213405729627102987655542087524561128221354062788324762720169208322348628560892827599018371979768206095122627603217097304106904439485771897320610640688554716598822772867792995553965330641571452432520041113508417770306214491642119416760943553406725205776799777791465895916467593941191240913080160665556873970260370490655711274034369038490859500279413165339021893297051328371673820540253170911039273841088722489620845282231848079913914012700839793017957632920769645613897940024517130065328036975721397318437475047763703272067734211651065!
 0464607839899857290584303620370322031159876765070704683107773014662841
85339100182541179572912731982320245824933939722507567547133131684663682269287080233329318160819480802291314176851385611106840114468067110560725177305512175919958826336934063835928589862771969666026813478938520974729781934599098176005904178110084752648122868618271296245810398446467208470715591680687973849078911416857548492832113171671670002649555000642835964834055997239070799695659672062239969736793565234061895813344242501619016646890833130631326657648101424417136871032853833784854299303814564421141683010235943576371638168415063122601253840497147759387593154456793121694864233548199400268253764351430907278021766020080102513042953814912747463487685475211632549851282711147068429992011378003558259547972319259840651697707283375364218925855765181235271972733650287130638547952471248278933464730964489206203084155380223759064687307851932088860072640211274352720150994025346838456609045164592659561099126675095565479409548057989798440556476233980160326376768077031507515774147170888218582!
 3117129777733876520055572215527526256812969927537766903496023887530276803749058583963585280359215153052271642573275665874890419592113998913243257903271349403503419757511345458779230397863336487439756006646518610316550839198983923275809833042183555861670093614247257642932197820741520997843628489052853066398060904465559938261039668117525494766649399886553025746715193428020387906048717942361614928274923317810309005803867263418163171482929637150394599191951968752378352709529910298970604540764698286449713380969820927609039645038823785159470819759420289466070585389699170540325909756413658904250979213336374183770892073206090421827949125505867777995983070864571937704771334414478159672524055230559878461289878783771191879646733258975074089156069953581579102607803955360673774869926097973745893913915563818183154812180025137018313398129045308113822144731832241974047585165715957291989172401821483184010262188475942270358708739331687899833221883280765996135629028978204589548384947255982506!
 5818918968322461409668830021071220224533550635723036511313917802449283
13107668813200167323953184059452332385523122183695084987643071455409728562468325343318303062762135644410633658408349373034928786196631495837141886148397759020976886928270479844792035659926636374099719436367814023241618916530618919735222449294357844645846512724481247689407302853410781661070998741414457795165883181575965853790195404568710603536784613766141960811197346375771619790755643418799857782035555419408952688447685859577722384260454087426473669840377502923500050649186258585633250412293305944936692280591481179789740092897557526725860814377404688246590652844542012221893908820420359654027253774782347068463726416908569209915755745356060078256656341530182996574977092303231146000325376551529857793010263919767315760051673473200020378977167581322737920408143951497619415153387051992263732505295637192396198756358323748028464990440004551303598494677912164458699219118463005575136858957938345969744687634023015089440591498463367847550581606385218935539854243460352919156977105412506589!
 6509942902098263119591315457812563056036859533789772200592742256797958472597698949711214680210518866563078854858584387310720442002676578139169364351130042898529987868022264311224182148482181427414585274107137625574238896792792707136133943629236803203927443714318906731561050630806213180576625082757323645314324176400913899798498145383468457612337266190271174347519010058914306550150747746498451388643274557846302925755100787661042087096968175169884566670268699066082926083060916907572528485028704879430737233912045216445973503362706224094226385541523147085349462822023216374501296520823652107508646866820957450904529351906399927821694713042779071561706146470853184554109625314091372050133357415500343553244697369936751091085920438657154644359603777739626740532834614263302488451134394569511784998700605940128150583686423573305432622102267599593343317286951065019905518542827478425775777000170041176122346315200201465254925613793455043577522525924153634867392548427193419658315795007166711!
 3351886346603211646560418137098182216476174312752737848048088439932921
19400067652791843525999316399277912075624045719679651393771773282628906880669785215051839061695450432141904991128630337564605776464996985746322402159256962055993989279395429340572227640030217827122396360174034874642716029299099764656713410895391892472850006495806808061390442771921017873214952713319143341795701687436251904322089471214848072621450313460419243241698814921370856033147758102191395260015641560069799289441504698665650800732132276803639129458071632067599441617833637325774878927512918757357625670183262430475556951948952230148631324482959331849924181597516052825684494610359114821167035381240051604647710508456609650343848615353787433863785744140905043867711196976975021483253555805445367513752296248203623486275849947043273781458030118463581894144559399840789697941248451832323233095936026221346917189708081156409426794379380741869244176515531297582745791218650376018649770531492871832908985300466276423537585138620882946443394863008754668920486694512076888037768611458112237!
 5684327710522139652832330412516817955622780015213976057836301226945592801500491033605545394072031440857371068218634390873540691626659624331497680445588290347352597587233371689770173213004294241150184404827011967701276269983512081411635715960399596976989922474087143842014143032334396638157932943465040065132917836142815908954552879174367146477341033295496111585483846346821732525811814103269714294563884954259162799668882250872470477800374991653750259709971949338889807057374864257763337937788903598605613745331549941286069869023685518045894898623880026299966915319662563041555444053754496482739959927682821860206428848244859547308534913942594233517044457489830198603864074703766081889671104871595441217069550732035454700029537151352274845085533914912997540491438238971080077144808903109399781272295336892806166523027766936254249787215110059987914796750500647696772667798631187178120282133058663278419323984130955159237068089808543767631727710803971895959066757225370093987225867773545964!
 0211154283731620542459127005355188141198685917479236866706026608135027
607
50435986799631911918684018974003257120190378052272169247132226709411253063320861647029382628399429333942633294076198928181665776335934996695882340621911495735913402477813663759221226417941012682648876236909285672051949708772553142417209930425188055303356189282671172339855965227940840924907536917250565667105882843724250826591466486710268390230221656069311420119808415577868908692020628858316590654430765846544175156287453977412064516856316660831600133703234307788039273947721560783885401655398112050933675578467841481362523831901934245338609768580194594025481322527962675056984318624028875322705745986165112324603882627164777128233213825493372762382689837759966170555773037440447271644046984583881659231422901174383614509545757812167446316937159709150508078822464670339526592921571033958250964328251096030021470562386885714075059154969332875975685824137059012435754195428456215938717543759646956276836111788181244313218804988872484643803651379050200288238989614458903695278493367636521211!
 7348976241693006789934660987362569711903994655968814888157197696135179105931142433928186564969971187707680945765752105169737958060504545821892340224290256871750272978728377256009533919910565614492781289133184430006105199480552980241068145579323396887510897073071055536395135760934630758613168320600216765746992596740414872076288294775428242686595516095617053066919628364699073906041866500009337322954291703526537484546790647633502989700919524345137611429880458381748412095358283648656955784596048984528261186333593260072025875003744934462660242894730133317170195804319220985589051825085823923287106214828049816938288455578247575208775053200474415551148433499037371556689797901840868811433512480717508834789762233082897799973789947828398800387112846107545959734656124671340429820145694383180614005696919423387526090699072941135523168862593044990435629605277301343193276591873821099747425275603624271682278738561775999631990687638884174918530167545542503579044015568005354003514372213575523!
 2777676528075608414783738951438670981725030416776224590711138807956006
24728273974711117228745771806583673566413957006059136791271837348251595082941792919952715540859417003724724234766501426077188711952434211541932319626778401850747177549429179420808089785319726251604747786767539246133142884962882195129246851590052368279737486244417469549867311463086162467157038184620910034436588461271336289481449453490163223185102205818851796704226927180067730850296909535793491058888219464886348906760357781663110861045000887260609236600749734230941287255770318569223996568897925808958996971351886660737109972446131513765818690615567225803180689413029255438556865927459579515242395337311427909569355193039996061924995238369516081249053300791321283924761267301350284607586019100884912060717253579584923160491618138238064423385864791580040029657229990646318860275569578988602911426612212133531690280163219557082552466718617728841162372085820394994479696147305693857387402679072078667371861052223068822689126758515104117101717163702049212289467927036669438505526645674588477!
 2822568706895506057428128149706981991506320060571917829017645870029712959556627688680348894690207524832071472003684325310145619510421158924520470751687934791013573974654067687498356984715749904374091339436896176536669571719571905736418013749363664239839321531420895111053125945281429994009128575429605769501527223260368402053074798235244921218826727389024126603683743593529141399927650948652389771356052480135653888712923794250979752156421339843200744548601475759005122514604620733041861899905063075499603487063318997329013773608317872957905155518547597993432763046140360397721788790936720929546161894543455488077295780219828311883483548225958134987175368617096495221040748015766378148707963874729539435113033129651567985389339848553435570481281013893168155727321337867799757526194075532796876561950837164466442832874490505995644258306142394476466103674887246661879766073466531605211399419510290034513547278106834781335630214343918747232702419308119788933344939594916949045948313579956680!
 7569558917041153345568957039393703911672837816139202229781997431244817
88200809573642199078764072642209420363159948204205421732828179928258562489125818312219141964016084197909518657600894983288706503671297945733185203472101057031691629050630807107790947353089699895674795660050076404379556210074887698640958924028618152859468553105420597231693812006172801708855033788355648303852646340503229114618781939962181608965429780390022600548706767154653959293382158601364220289231942084795134193506112876221859162866250865348824949164782387659773854737706352352917001202760097498437403614888649601877279213287473739338013291841815124240830459683223481917597756754448266414611695536438629869249995556788817817885904975189352824950730404085141680085474701721553639851636827305943333347784842127828700458348744601905972631591360396643312319079680841781565405997857062953420185449600894588254805446685041937096668809528566662290725540135864342039050291028220818245902708828039366485583551958741685089093396223340295670259388100333957389173467672645650389483521027414287750!
 2822557574309965154831459359986874600655650507499916232229453179876234466544289671114693805464747773986990836925404451910288403015628760114563663374204469449597563209771441911020092205400072968335247306824409230198532343969288245838723586219935505177564506172151272648518229306586008524133192636416531245222932072428616346527128293181810135779034545293309435151677240318958258182516496589376579306655463260443929271510018623241536285583639695277020644262871306920721206857104888923749425861958354071921951036693386868267227275419485436313288711707162034240857143755637477380125550748889303471715378528259351615431751257830469247465702423210113812706152832083500984258410820452775952060492286506013756987045771308914055855448834849104981307364734407634800009999569361370330224481215644318876596291580760188253186600406388985156687856623180289381808483169018385263748660038765655882081117468786898328775373841316980272589804215770891917203404477237426663364623263417310796634863862504275995!
 3456017431944184345068412389564694646356268500207569947370892145258802
98008965692253840402549307573184951710624627427266765596792010303487855972981132379243771852879066860035026575814110303919849571792762499913683935040375248878914333010883122977773059541536584673146507599180162619718317115424780416508844271865988469672750526423959325132304446631690318091125965633124745559676260390767316376476955463803167564035346725064064768480209310303862560600479906289645822850828550906502526340281283486864825645190690992912924647568671732576281512193562755676083223778315354245408649768634396479763634697575508663487965166476860026636773328035939252669080169277754128957737396608485658537295754387622053381801380401950875534471019540721330947114918210987257566294622389471482497534862295424578439492727709400124276639128098646482646811011347722150973511097717069960527999622580503622502994635795938514279081201484056168949614733326503282083874406879231693464613906652212072319907147551825890116441897377897371265916175327153636746338197134041462619223495529039904625!
 8130500919714697956736396329436664824235936747520679905361690064530140744366704401817005414274770232780471864768894642327141592633719028826226382555589259877371547334958125879027685029652496588916611147619318581499424571407242100369797906472939019734687315360236462791513489666954593153373452617115003215390776039250836429501719081841561335108685268975552472663999414919339969821985333519667234061414392914551667838267314238048167999102677509376754069292390467048068463930505959542942660649787768399376104932931947204345368921225517411882728360337026303306241513804665424614208313462850236068293260901588223365969861627828299275959744174063644711269296618554522334406686375770816009804010867509043176044948386734976929056571673912632854130456748149385573268518881607175762554905130059041334986190581202035245466417417317659760860936793979686012949495080355210120015176955572364472021341436973046910034921942361389999213522234553847613136444889059042031442366911612982006391119865095396349!
 3173524231248288219221583593045228246928299465870120651243287461061672
539
39148208561402508626648699749099755214457570541851539109513740530750687433963474754969067126093306716515780184980732895058461829328339008468072595712111256509327716488556626681816391516663541125136169805400257955397886778602144381973114296725514494152882229127425040417337716442759080083427606768919709985362827863088733995569139467580103006234626675271632757058221212930375799645883514402738413235073238245349207705795028202281071823685952885827971575607082914921426907146414254499144574509123356690067526861535140684415530142034300913729567933614613701636542395075372610356514783774846603485595063636120373158227039602812434232349845319942317801757445785109292233440953182011794538990629711197047931585130119220451987388821087390330868437567484440432278247732916434575484578984473852960349223856196668568292142116114878540829005090344166732832861054480755887520029047051513543311884064249727077624100602783291645071624712694263508684943902769921677767674830605272882780231574328533154776!
 8628561993889234819004212183683685590320542150315008544256375845127864860379013625905666020872843293282138898650030145976893888868463256072946888967173536921048444706880380045189908721123307247041724529496499294380398056308586561400218967974660410630881151951585737926372327877579405952327935435589467001441153207433490787437811030823876904819192920361958889365493677327164704310266032375027268700877389174408284362598267185675984422344077954690893596888697087669974684963271650171897132683499399241844559756034096229021713732367003588195612513261593229215957235727557764321587944265873097632832265284686439359714685124419096869263850512468385903625876655889825523724584700270982769146290749663282860017756386677717979357283829206000483516956281176265404377769167829308312625449383769076358638283021726780083601025501782351314831251021089172807894583226099216774495697813017768846287722646929293460418796491952688589550189452319808568595931129365371749675939257062187985340664259661330549!
 4524406371633925980640750389959548594238072344787741106038572713787641
33423014045010274039688733118221074849955212749579329238591603277498097922490457758771316129753694194058999708305419684662810136497288164046570078884687670873136991776052667127993762048804222468902229800273174100180327549036021993590317429206075128375709815639366117213411869678214384361930000392715396301521036254849820335774333694420357283929899264227718762713716207579647578981927514251437898387912564296235252557578160189788728520053414822435580843762614074442969961877442326903084894626939833819211253548500883796402016248807078958105456391323313557940447873586793400328402995100222931461250131315897659436488766393558620073668776744172956968630116154773547833715486676792651796128559382971835134945932848961771972150394032175420524056104654800600557467390783664889815068617895731657409944038590109504651548569693249470727854185888008712508154383235221460590271916014946812210229712357640906109515900683449582734622367725546450683028294974805124079183467132081489518219218103712576945!
 3259799580747612078529493096387388034791992939309123608454428993928656362683630885915279601419408410014881245456094157780939400561506057866675329142825992483605610696657980005544822638593338297796083245118219637118703741499413608984245384513254279223839346494813457267864899726574894979936171789157014788708136117693120569198347582498551553883293661038760113890730501054212220565141078547366755142547262438256970617397143625257735543672871234753315108028538596680851633638447538576091297436046057753863868316908999373499681472658767296185352582272762577516097933207447229496403752333410911385270901247468675003317228737705356919525594222511043218697032953925089366471415529000146014972122168642716794235445773433297364448906907091685902135585391147531513853185812982526140356203794517639207514318622991819966865348117094460631607072352838556611854847910861453735224777509338833577609239702864475756495387615238994771630324942803642479484008863369683008724135375396745107701893926413176081!
 4193271523998427338634274181515135383293981361485839878008038367426932
02477237643139370580275895391087913517456093658839444997108059962476071601692357776744410533207695633836706759124106485035506430006023747186760101899034122714874224908163417402530468649820104913819514115214688673688007270333398324621359295003880598467901222884693147523763017085177857310817336103622106764033531459874489070755164053867206222961750819822118978438328688437701927183102352052140726696760807116985392957854654211213667640522596223488282081194213641141767147531845242652544251532001159410805886132742268366922862194936832675370106084429140384484231270544784077412144637875314009812721558024087428671278302597624613937327646058545051436257513492081758617194693048374389961778203563121678410906310562313990715864307602679968138554299212852641656489244465175096071086828992455509606296218680754594244582551399368116760589776025666978018720523283337555399981933296303265876904610189039766768557825332879491379163970800252804004991619393506032228986496904287718504578468870284656558!
 9755678835551989774395874882065893630552769323389630520378241822310460128260269619235661842132316473451937875856538365616736033845748878263165375706284868522115865751903014224118044488607807730213167016138190695464273835098482143232289478948893027239079261526122319044003393541714248592273322202463154511680560126669030233677996917524739160184732422736731729195186688734244524555425849296536346945488447961687555408575598500772314510276789094065515647701392569667404523732160816918719324552184781053041460342650137139168443322314008671140217435950960604525172091868695402558169630326379314210189920683830968693394381198861629010887541847076618421864310268031124229663139974708495922943013753152579718352575798842214179340062550291160394858731668690486798268563663289190799525718689308174674515214845171145229659757116073986742288845976009638420371539309488397224348810277753381161234697726678347255594090345777660708651547684077091620279429041053239821193285657229818181631328777490484097!
 0963513602874327624548879835966424161258068208234298491250219654789529
99667884067236131370700086855750714655729838186404855831681040578678550905946061345331122581356656614789413507026586748470309947327449766681582198877302586645087237098998523960930780881121148152117594816081667508744268089171518882564033160144919327471848962798831120351956361428266813508426716209096645773272837153313167793095826329608964676963156234917490696105392188373562639788684680458850189622814098932695794784923887949064712199819126505782377485083975877177941616209172592763117082391625882617610689388646730366423322528990596358182397750435642749385365089719699130997187250448959818350181244516984464835796408947083815531463786194885427819832394766648469038356923164485289030912715613386657778027866671149474401526824972395396120225427594642989271409493127100392696917236049166055004613492060192739294591471937472545982164618588991523576802989899827983989218992527348605352809934910166785263246431012873446257832434634289271690138429044967083002322656018789141460586358467245623684!
 4617753891099914413917159043214669387939675006334403546747274544526143540911560500969923740209343936274823513755633392558821848356985699935836555260256310860420503583227535891598263260183707595501967841331814583689952852181576555020241337548712147691636372960357848804311448298563606805940834015350180185156466921556339317852260437841549994341033237676588466268470428491326222529745206818440979093619842308120228738345257420203825202331913631820671290572572623740332803599916573451960758130134875020077796438184235698879251326477844912513387381327198050458648544089635654624599558099970799613413269704300505562190864973025435379818751635164764269244933212643345739345276102382727615859651750406958097128990383564806369433101777607132061325499062454790756556574718497787528326893200886164086231519869847062154390172256891740833804537451410151181410378257293029728754292833436674500762984150000230147578754035717914734835025497532676463272733994948779683496654906440302125684540313117419234!
 9312171712222525340679049175593610620019806770304083759386957941192149
167
19262400867922796639783740273072840134443920062055657241523259769896834029632998760624656865671519378753756719044493010428113673248320323481883930078233958835978078760201821570371233534052474256396458937184548791179973338264254441945351131049990564828650453427758293464293387094146308079292803297574759569275574943902787604644389970068223625465604187449738823255677064826532016092637715853935755783060088533058811454746285297334018037835578013503710349003546123527941112988536299930314671145703966311649925802432851819037117290476250704404272983622423247014681647026601156353510725783422668835359441857611223469281139646616867815369655820819571785276562388016280767563683393422236074354565512714779683762276490072229415482109148629557539723763844421944407892638956768881351440623618220290212616570568588483592415582352389676846205805989752187961642530425640952166254008676041630208696304561001029154814436103096503583802256629952699509188415563964301660471794446700699058137500293757360128!
 2131529803982619362784984546207955766326290631741596242433083306639527635518827404620948345859463315713734554226897597724967151627940056537535048680134332517522122288046318643317386190434888978643724196313113802901536296900544855026829409065156700962059471316620704482369543889936593042214163215687945597108957208007900677678613956798873336341261337263504936763195442594833742024118128061289402393016589874801046094784735202929312074288111506861572565137838152089080044119348189201585535464961928674421959903098443188897378676434565595147297034846128348916242057052816923273561249820746154220064988845954846201421846395694551524657123781861143606363120156524892202729640302092092960422607269333264032015985047700927502823213606611282356936468357052310440978270523823627360868395351769959051194441559016151545371470124209075194078801027294977677343690028408122478156032279392371511289710879167006103805795244623643643196525543639287330202493952679034088819280358595971994532650851569701445!
 5330648124895274410896295171427650951113673534714783409908227946334835
99108237309802079589928362883769053384694867441099049022439291302090904685822510485848497892538488207427941046121245684554562822990026948416223930717079840736792773593478003712824160830197676444588874522733512866511662918989033676279239442648770364717587076311182680823225280742321061083034932137473009254800555726136440744089591695843462780572772943897371172494086326518414958472260857580927631332624826264491087440000571524637913770200548205896523168579460538213641579407790584434199177592935726647277069589312387224231440966830629302866258397452490770434275040307200661616164596089911564423756234078514928992807329519174442606501356001040388382949673719747382526946281767426903220015704476327962618215819985773864101191711290739297535590510653539835391432834879637739328472814447706567320163923350574037522173681357879710560527023120987107078575456257005344297560718787571430027435177908322316040429544384869674977391714435572525686124771741952365783329024728035214332986310849970144564!
 0214488095436652663193550521860440542152101725607516048922125769178529647511384893285641825685953320900470015733246688488362692176420908478340164266408295144622456482040706027703544231263171160926742772484056882640533099771010430433124625304079467898690287784549828847317407115720333117973349971027275067153959683895888347779907912831909783978297813331580194698640391582185896304799830205386168316071517546072402443350447684204362771471388236886132413649156176801740266307452437045913061410524280230074047672475600671193315821352562427529321198230427766699860830059333536038726622383161352821187642119234090341269505815084752144730289910532985170724946871389892176466359018354439307341594869456162888693555693748819576495247738646069601720271250520237655636840728453334962839956958766535081647199801360799280166521363615820178276933361413906770170338282222106012631413652885386246591818476322660104581249577984154515773511316004838462175347446524116248410453992529294040570759793713094168!
 6342792150548561109571922683715871175803591551851524773793474088459202
75779436267270928810777467981463585335232907632553303044543292344187905037237054369575957475564177856046763847444544394152746739292999611892891352447180274069841135325414593707967498958831152119228873702107849853997316072256242041604813929063685809720360368317863255389721991032074111977302320778472874605753145361290033218027709272692454244546177620801909724925074214016932396236466574068602428026763188069545595081698551410589633921277909824574279839543130404427023450855591374494371567042735591968914325872785358650327775220452805496410271150527152509873728163249207455668940532782406846428906825169347165215713826281818309198661698641126124858718089433459951494026198285676971484671592739546284784057280369943121276925353352512559642039649296835102209358748519324248429721169593588769702106406042892031429836192401339311986060346539576911736755416827095990797758801679607394693299422692045278368160722287710595686985828855796841288824243596677260330898732576414701261594087839281789880!
 3023486374890330898605682126178127777357883128068322777081629654054658595757247100708409436565707960004775714054590890025750113410132095203050777279183946821240414432331002653830541710294405495628849511662805080282442447113795966602601427311542713880924716385650813614153513496815922257603258747440872272415863404190937791520404381911759960028474434921337369831641793042606802669509249392301988938858211257183326730162974479542140521065899034281558553691167272464757281064383422885436837236363133406690292717036282460127354284860103611996973372265676874402979798794651648850188205043291977488194884251890724987133093623673968559617162268693317236307593861069806855655262499517096410955918902884283816886636866125293151456174670878892887456071566756350961041492977203301775177691659934607964937542655405876864729169401888509630469254115967122389585522332083607681270634329237900237297508985349664554470430655498794246548847691924782439382639596424262646214980874985633124275005013758947590!
 4351186783501275835011991294870360505382058105732877740538635789461668
89462723712827729839741722448418594057652992972406109081892353751223155877053561763181474001103002892870762626330927565812654814496148406893735556943510119002555826539405781555741755142391023346715855004407246623795365347410525131077518578048925039622696493973366519453130958658780381275746292981573836589681206539606419204048737439162605583711110301590915242519539659110872018160186485347012922133890604686621660686255025632111205524239924297426087369784207421806710694312349695484511651395548574670675079765918582149549963759435426913717657572124155786937559692819015732101641396054781663831582581127427109662744206348130493726598721695211643309484370716805000255185310270727991550888591205780538290296867836134794468839013227735338592872763739806489119847525329116106835815260125648037337390518901687827950098791891791443819929116641124327600877203476671991747747496382404503744972168995436956828543078265082206280310589994830634518810797753038069022384455079651904014236609371797122049!
 8938972866874439009503773530422503806039292967384310692788411623270074073104285711269716613073666569189043581350811483897517830938949463675152447141843981498919581014305137834238523877260059764986762793975536113031167656126147769376052969165981025588609311780651284217470687595674619598067625502794826351074676218156421174241743966128791772057325487968022851237279363341901535128530829762700991612794333612577068628253172997385111409502457670238726869078034294000489084971729705227217615961479704131971902387630760722461734716760801761319700646112743244205350217723053404839920195726666865551926491491605217060720189561235489643698852467972351055852474025843371768713726062776135696504973495811239066414546905344506562289859328692169572372165301465049864679590551990244054406739924046539428222191152608698841107022161454701358031715039720759304112357969016093193021212254153015429295817320991717834558361828052570856115059025250404415639558466880575319600284455362052105773072213217647232!
 1525679245457682199029599877185220459170410794116958376071267016008735
391
62855965155259192536808620599106623995092730063225117041387333833401313275914531763774131773191044898649595098820175990268392803895595379567204297987279293549612134268628729102291581024099542841250257003761996839369016260636885781567550539653890247836707164899197743799405263342981290154889014980930206579201114496592979139655513683809299650411269763790423881216272241639310528284998449255487600873438161710275035067271214818630474939133494024999003282172368134477147957269760802698253983549820596843757041019523439303991212834539004709649696017079667934412107452944796821209492109103704790550231560518393073109351306522788692360327728071863685132130389500964020394658111762209292222470929998126129167768806013672341213649328836170247410421391324880166941054893672582012756307252179308103686753800401662279990742234649822450143058881715031456519833596401480743510681523008652029665929332887212743508599972287976706059993531919319936406045588227068110597335423556620126062293142080830497459!
 1837405741384921819435605022255750005386056891116221406125952645774853876900826609604179389076021011986920939456570997835180810788016170758337170660718420841736288951802607905312341679136352478627805555238028928400935149572162926042397902538597305331369185604228112878180663529336026735294851123986918520882220190403746531103942060428837017682735797906444394576198377328267041952990518425989545328603822462073570504572804536627004582077336658095228068280117408262555111641268527314984086429861714437827187492541579993098455498329868175091145728687185414736040149889461746621995388358237539634917123485244482959700849534821798330966984545909274163702712775099516881363224476072068133375641501607486936936891363279977986510951180042350374753577244155652631115139835147336127767654968437082275295494731817789727211598161267717452932337792235887176697429727338450791130618179845552210869375734130386212028566601308211563856033551833626167865641708075799861734295848764201663848065573234614528!
 9936806240176044057668115873902485448163824288566160537846277830213576
30287968241504655464526013533189758041401772308344400952508483697004162675941650694716672110820720154343325295533779558347913700425385363481459240766795595385765522717548126810151593568554259737062732988465818960099640126770152248766317054623446583940409338972321390357043329155124145556484560271277020132872553064746060266755638123723144174611180597838613508438023970846173213169403692778140096971775243802630206203665165969277644497592084709909600859500655399487474143093428689611527559404663415463287534651963023164028444498658772811837561860456761038752954943078051821795807937193890840811121909534762040375557279459955497433540236269258069096418521696629868913354140996601576492529315180881451133188747028871611042638803060205937903760426271043276224708366970785770839865445507284201461754790301370499825921403893033274053735354400972855338025408342545976495948811298709397280024176249899789927226337976126757570956972015101360109847109876763908021719974123350513410821493259783376950!
 5861108681996566920820962439266879792274480124288315258719172012266305883357565999008169726424521544773314600651690038446480267592184308710530065211417315263303998572087445778515519582074672381414024660972765913587198354980048417932203074553305758618402238445531697965004191171799183529654028072234113587528366767489164936539585068570744537424630877448666559681965336053782455320735535309709196917525618521924718512748781378497969091510749221462677937108783166453175772569433027725280614689887690608625999873082005659122544789863626818592519394091891418858337354295825144920968481473777229902886653840608094003239309604560488362964343583368965040167258400209646339590133509626523979448901957772299823298794196579398126291530002452052667675964272267870085005226578264964215971904093560404595282355668613772448675625396455112520208120260807755080884075538053566244861899293429072893678638267706776139793796100747387021823972409417959826365969190006019351800191274533152244800423264280292358!
 9469084990764435193501145777756017897089701885533764190063731197824950
80751842067289866196061331046755944291996684567353040575794931511903461339078213402252969687739926362693644750403785650587799742083137334527535297748516660738073451547194691679502060015684485963417966003544368411872231855267913564341966529661563817753217424457529735114409727351948258975637177948169078698538821098294368523200831515109125565669095232118042638865414747409706168804073688242115293136920771603050857772621472402366947369900286860908961615260731383099234368120797917239406782541475523455230637545152324469302913960268493564053963806111229134877927674423410184900261325348122771061206639256289299634274107126588287357737421496261315256565756686564529705782863908267089409296840978453023550909690535579865802524055294175500017291202235896510643409793525962418111133022308572952828633145589344370756613609279127208435034514878655602429216890504185102476925433412697836979115858506252681226438021549218082231821527328394526180638401291490590390727956034947391365668609248402496187!
 9178259726657909395599871571525354643215246711917772905846938989361566104698019335552428113204128030198139087174432252852737091209603867885838016821119962158554184629850804696690554974705676427736119812534960770223104214155148117466067704190982202133807756271988254155165616646781745571129114070968637483874737849620908554100334526567680539078659020753958812136706033395285832988140778860572372648544544941307966783795244272424293806934216964279565306056880638242723546230972509702877412400493877481606593767851196099635400827080604211584466131309052408635584588264565930489821795542942515446714266914727999725835363404214277702563280866080787724078710265228739351192076821383609351653000011313864799949209781613539527674167521692773092724121381642513794469231743771229072833073470009596243867739539566522959959776431851998822690226781933458859571216348913371563731857134909685251165801897624600363269784761778777250198106493933198805260185490328461558977223375327799744547830473731755685!
 4895966401547798109409051762685740879547613280474869331149977328159877
06165015876411029974660719536256981311527881579818220066143680403539509844658420579425836582931799671014322549990873682040347332813206726298274716891793713190055903041931111592735924690178896277114540015136110632900455116034381239059933085985851096165000735044689339347974640186788209693644786841083022844945431460650647873140121897966353139726603327481729303200595408538194412867529444016654924362551556375415519133543427985564625375218450855901542783017822869759996836410793097320586286757236333856652995135811585414289293154155683535306656721072001798365811890122595001837001517185479027470117434096899557372282814031770718510567206013236890229647595306998998753439966172285430778676559386402148885013691772567110132383545824869284343436669950010251172391307364984135680514788281152912876228881465610631378714285229989667139585379169208001923691638403254874054108237039133795581381186805420063618485781614113466482436876130567282800674601712661013809569128712888653289707855531695429231!
 1117341082068661228699361085620580586989621817126898614321163366890747141998985284387180782120223003321229708282529690758942480469683986533322469537853103217200853441593531243339756324347937651562659667374185316195133588214505610144082828278277148340873404475204432111727910490373597998271693770190895061681044222030174922167582344126582984085327290976256061318941780521642753247477127479711521642170127055033392420791334441337979389859114041990726948311555873809408415185817043352088539396397315629735985850561330879305794974470192231400089381806691367974243275386352657226700322375836575883624051260726836145995254296288364378008827120339272018561140239901277505999341130028970933580938164659106278112711981949022173475256944414316655939047045979227975907271354278393645905555234846687709750822545603493244240336233698891533316368042516922101189209385791921325005087672751300806706518010107802323962415009017921884078881954292746887820995338685101389736986293633042392199354038037663041!
 8261261291422814572488311049111682350245821580320581216890791359919386
845
30125471407604425831293834428245025587188063393406279055439626594302385454421449567056448726043404358342908004458220436563753878946920010865185109557086702663661019419964596196647195427037047087817376652629362747578974493503235225678207374792702112486927649550340999092203440242363207273829697876937329645553501063479606077860673108152489706749462894904429657629093842892194009361039657652058082112980120383925580117361211374157019473723187420712048802806711095438110040745223339072997006748445026502114060465857534082801942459495944027176989792365055416926459616637078531594493991730462498640110284979056233704805915160050301377318092898242318904195949021083030600162057116586683106214396616973982767523812602750869528549393095166667458867606761696472644958789614718935034054624003357498305334901951452632650710332270155581857047238482681841857148654097981133406160527886853963384755787946811791373587126144957974147119404583232807720380768354730160685196046657264763846264507579733377491!
 9563249788471765331043084907266068077220498124104974597903901566049527529627319483473917836232026667904540647045708419964911701671279550153497656327270627567049105735472954380088465562738214422463100884504412910613091156362820807161043086733127534249530460183479302980561451318401866746054997101832855629034076923313799004655179551972143756095902461239593576550631651686456277443561681719937572324762663485920147052323819424697808542483680310115485666035739867763009584426095427665288410194759514245273234666947410337520719531341593235325664342959614521784821547404414422514148821534904202572061764215256261071001193594153632098411182948929412501270483125466192964357999838230324517593285103682917798347652365104327909937810328744203096154910939673611581200965863597751235344171068550175954537882142079661106248225497660126908108259146700573707865957515945890566585435630195355222831872627171962804293689916524579770726753987010866603000076825805429171386173036455445395251909218580424255!
 2797844879752584574550421254492825795398589849333057904180948031660930
97556044267410724403055533148012345174040743087280427623544856122313623590918992415849598245095244566077654054137655013121053606967536355311573515043256117917711873794162515527134947731945251836708331203825108825603695808107151392647217552817527713348119317683786379188323429141033412536788156070920300611533010249182089789251557314856978068619209848688590010772567293660669982215835569170216269978206221718632748569918159034664946176101067616338635298400850171971810787632880983035193616876040337606051670512687884169806293947203735591312881317223606863348189722920992666293204961221799404833281049471009765388610812712596699473461979113383876456876600291955831007795565545604221863799771336064292255424574600944174018540520605962694449378557197402525687530820789138590082034340281721808098478669550892531176434809565570559120396729168273515985043754621492238474502082242976133643190919304245261788384079892872437914059241273499509039872034539601931588695648226789145184809883569758011715!
 4212515200097215062915312322909607810156263751656010722740824698677999277293334576921852154910533961968742379310043776122216766408765852856296102145010894016294596230620924712930022112685815034494879518507318469009519190423380672438392281249906625440425237896123815803986305990088403252299580172446230319737987272961422575619843405703039249241717085295661465917677992980649220521875582819110512100525619711898094439823622342390405449569302264676156216481951199397970769746458902743558427952319645933457799965091469319041436775681200788513903006975922946285733235584957471720463261098937417775566098280272858634207068373933594929840563957773490548811104957652811602091209815415212945714744019593677619581736555443151753798578766495847661987239205160499158011329164391725159882252988449980652986117418539250364371895102396039871240959996101250358666547477190162600875538870195720627929793147216512095777564681294658423882718919955146557555723785297174545977957721077264046180285279652389269!
 5856408883751240110230143670868278010679685938885198517143205881803861
31867778384252530296912736660815154145636950026259212424626516530600490824171693353131025322103551899727046540941770681894170850014168823814919189719402144596836876131387187312250111574977083349160467297700853353251662647167700468879093117987964684143561504235908476262278626020934812807983212954207470362777143461951504103470971906518738644252863519645976150518690226076992153082254289291732876376548975096045872644786053344774355027871560566292305798173893833918087646118375421079766888245102898451993697699854583234089622774285867474425641000134939049995905805940535871417609704868554905768933481580635653044105601052727859389207332343473215506008099337080752116431655898173896559333182490920949781574949526552444733146547863461239040343393931562462627133759109972994629747718113435327310547745330779339827884430646533854847426311778090168573046652776970971968232028085403228898983070083041467638260785038784876602655093632791924193886399854091415420071595715762556233340379071084006457!
 6178552138957832300703106132983208970940263418342887265137822560904817842109406012976000712680618871447961045152393466165602550195892969282244812359837215919583296633991399863555474009990876596388382788256968466514103709166800736237178199750435007173748595378619762063988291832577075549280835158726296897618263258346594391558415465614854675820017018323496174599134546731853262110989493691942791414284352834860526009802926216937304205431416984545394333893912120820547753328076203433631944246468257041091521868320085957621586914288481575203648173557536687439638249227205333715019707541587478873646401654505082093072908305729545925649650196993064862487858293169959591053984774546294567196119220813876495815469018076102918058950246992884332549884746695022882499772333838701361365379599237739919967526066429972925397598476830197340866750068993146427941068033937392025716008830084070827187002372604674077518779956942531542390409033098261316803354374298535304856025561533126169450685373523246859!
 3155762803438547483394365692355719988742339344575560290507712879625080
43027182678486866102023738463009646118628046309499037579725023070641284502285171478438396458708600826398607789166325007549014469871622954042578117452254879831947923295774183870217632049596188690787521206602138771640000789021094047408164808614028853605566344317001677515791417703837323512035677429383230183034056384748485723110283631551764636393385984519563122574459209311930575518660836618736609531235357498572168290522370767167537337879581975999611691138933786429416003787586692721012445483085670357151528853547674877228513502445674286209729993942436135565767609316370795893742992217204891472373426321111333625903440636313253384707060193312147781843956790301529007941637871695625727664750785057202461170590170543676044715103278333885921246520336140098533802325750157260440145662546470443032883798810425203453857190659932421618634425732356637530341430363359798425261686318253972994217749531480037788118641140974434613983840305959368693037081854962004996327345497444831167318268354993081603!
 0486571825244591566610907320047487565878684545072973557167712847078274982534187704254232174903730711870059127116777305028358493777433678367390407009310732527546767695942504064452005690567507190326265575600239334945547166247111326857338176289697568712292271979255266757581217940464789435431202837597775118586424986854753111061520695473531472190687259375791138235537165419692617202124902517268644291197483936142859167558448310538400185342425606308344563799565435651776456276423522279536315455968130107521742292945570546659172664096839998305126797633151321797859299141860157580746430240550031290388282141327742186676899206356752020992949652098611614516267896282079950947549376575838066055670554135008373893848990691545464032437781317189214145646063102565126524371573536405551524185024041418141723340406885119742997791226829353384097072894020788540657624095329723662074634471291697995044259732586149292281461542925926498553424743770322733082465756966010129046440059570995202129011931985518413!
 2064388823931010193604841107073049768181391406582094668804179880477037
324
34838490577255450332102920223407254951567433328153612985247296833444157120202362805779249909040668784088517029723713314196740825727899937943195449653921161692866912901329086425480183185144220904048089854425997971459629674099488096211568141941984618743903424451817517085638627322090487466168948095169155495610656836403214798265812741392707478470766577310148743193768926593362597495069955165919828606001833782895724086594402608432453528438871394898542809533855888661944641332839445349883224822826996985134080958769629309447301891067786272865360953503389623320694496643352874760374819303920721679553775896178757126222704410345597351407864145503745978445721066552509127344303865276832148313474569218178814748190703042373350767564897973029998908210684017771866834605943882697468607499620348684669334913552744226589190404807616616506108924016791940475511342406990881715319183560602225087535610077289771473298908810052412039941589110773091201975755785998784548564658832442010228775353571213135123!
 8788847296309242813384703665322288466972191195163788437302542221259187948451908823638106785248020605599604397897523604740683263601689037661366925828416547343770996609797891473796374413613735031350152499090800545389980121335661460846294171767991174390942366632480144960193686825772889572356314884487978024575783824991994452702942921469410351022782800963813379701971561629627569649513864311851721647512945965451333468441153221349527272384785940489701236528672788930899908435435072618122894200783886770521465362170971531268270697956021276361114730441846180276540120355758525544551958724676701223317640243087662633277565822039219080415195632654762839718522233446962803408819410600295181588345682483723444690453768421709505854164555638933575218279786890946772709615677031603635617575766111511098253040224425374546510249858032486685778631681620549431259739293421620652280348906591506231435131900885715023931503821634003121547070643820628748451644562621294403430241758109175005636244664486894879!
 1077203894817612441333036552916365622387450551934417012399708848613970
87681822566259058470458027735543856083087999182459832194649322676080556610505456812831189069562988633155520600603038528644305781475298843002418535504768506105807520565087583637845782968057856796358136225039767974913818337907318241371516615208316343814669876197130927789937130351756175983252253668443077360658635464580765104140928752830796731827386734652849119402548719287194404972389972887198941310764870899783677885125624418217578630933778362504897381836526233960629335321010683221773240722321705217672659916268380590366440436216336850910748306461427091582550147440768705698363056754991282831379376524418023561445989848668508237530097015767108107559988212250074135746738316455804056714897517385480931151815336941908729574051456130382440242188748405839020248191823475882003599247145582608706268201953362947129897137828743148264952754930330576535035324624563654769586852147495638952397039314390022002330155545369018545561558295993113276486758778894521637241409912672064126284503623951414361!
 2196302066062934696176458257275228267609242040017139727171326181510327193655935541924085674128709631105011142829685895072403327574878357718195235961349774137308584591745695508015650378287274403107955318179813182069215020490895357544161047185785769162251804501732783436633228803534405490093855497009458824208603006543060111156457553977253420699629078619126100145722899481080670486972734992961547416287251920999901530476830265973304466970153021194792592799658777489930399043517086073786523824858263159232086891862458299351787094941217276952214334616296389303052970269041949626438651372596681068652931915830756777669092753222888528351723270370207426122561791419161078563599136928407656102447802758598146087866393567542306263420289334432274480813545603902134718103126781151688710128451616695189785102796516153600930537993809899540220545971915112683278126182042311381138614774017513972765445180018960476746020645973351329239316642909192975663368218268388694587741423095157400626622032579421661!
 6725681311703809669225009185685272192425722164326808870595016123420199
79818964663281668319835337569984307846977745646109288445880420284998542440430342198841251758579294065440117618634820492499818602171949497160384532516217184450343470061895539308228865388439741173209063970191571093702869866686773059595331925492836809046543860475525303285936930238498364137301122698827929202859257377072083332995560968385342663444891520998246659030842148284933665340944477803224590798482897442027638857885990847742688107895784845769640530410945598594740964790980453311131642236177489570861156333250051810097172221740182397531821225804751545180069227481244576507136670529744991406102452948119071266965693778295397101722536540044393292817568536768057732863635803538320996063993270545209878833183435374999886560166348268640900497933047496373766099347231830222175274393625196672510489032989778186913378628190031458722545602214668313472357357227109183608623627268240630156470373694135354209480316819367013498520125541320833714622349882326532554576001648979107442035739946010900810!
 7995370435418003841296226556451083310266257160544489548392418127475122150112981398156258309080205286377398184093358687421486759127970387463223050725122010144817216524127574980055381435680885381713462732141660104875140352452583392308176191777104256720239694745196474583874663759903813520070962410158081173190413913068501033439659225758224066437635018505859253018105617148326472697122676393472590115838698418194708734426229420211964817192007326325855220036944791649835515526047233595889313622913142064621494891776007512373126852533308880032753207188304170925416795374647814877336406323803648119898384426574210248865165495264783466910385114290902948418378943978215944573998056961269034262787528412859890257741754195439106530557206119267303961121072555387930507203921250894301475794061853980036818383711391497455446333574858977957496733209951942618317947380159065807027718315599689432102511921796649784390894146005246516065960023044855323342187006568100098587576516987186064807043416639335098!
 7452974256860958666659299142571089345346824640351567070783847240854207
89174501105698147242439555144648778060930884207167696573057973147760316396709715871218411115857872429427231853841119275692388150261653218685774863931967808862048923216695342151156314713840656353119370429454032020124142969160732725816747823331278925972753055561351115375801105956751558122816558222346416127744558382976861445480818092371314259244518628497969307820393797782729530391199314109632093764673009245073633605810885670267463355274197409317111261638583761341536420710425507095805785084299330713852171911411828878966333872928472357066473397080358812450848117988928797417551364178172510911181709314194802624233389975743858592356910342816847204155102323971716917786483682751886875604351390094223124877048279014764032069888010176054792874954022233018565624421108453556169779517712976810450742036258096907696218080016680876091158016729159631748671749778274857930154367727730618880773443714074487737720323231568524093334700627369562999268748831597329342013263476479121588488626520802716258!
 9650810009813279431456896656939936013781252314730974049010103573929516027429464069995369233354332931166782991065775553924509961751720944674937403243987259863179283287588188055260517105935720766968256416578500929644821667036853430119684896390162406950448182014509142284664156615818744069518121827784195002180380051527422225462499791803489570468586027217568551320930499091365688608888149703139510365796735723398877560442933624344060370360434950933382815590812987825532387358854814209509464332369127396745062499571622092741560619181569163722447111318518028999857157050634373446726696419261905597775769606320698846619490609540063147360689514112328275818219110818156187366917285063671293572640893178425013942393620096459251805432656781613499211690996500604406978381602792961539173309176132157176467523713080676120976459675249019255782224465062200155597642487560526948749385037900711759078469307254722426196453096125200621552236377858890366185922411074663924968886016770499507575128722280144289!
 7075664271573437931575782032301218289688317727724952574353739010814107
459
14222564665598072831575578426448071122454207077144744322412193489148407808524934572375822028608693088911043866054821959009508521582152148821969522797282403693348446364785932429292311907323560358879106180328935057992199643005173008780333497668395728043529888277928987429347457419897613971513584274104476336285020519142251520132117917666178397630569843815478862865329734195104444083795219475413529156792557788465267369461401718356238250119850526194302653051356769411951417266522855136032881744247099421364804316525178617801455599525807809754422893510791176408070257564703055126263025692180170538369923138119340674255514604876442958169814786142029402054620247909519290177862880585557509240753656922117895270771324331595934533743483719238175539122910061095071437676396664308701461376940674971318208841532584804649824351880935418599985983068171936973420516393609823430041615997738362524929040883762129618562335670227427171516021583552386197823548823503749212975442171058259092731863425638114111!
 0633701594787293649500404967112479471511731960773799191446229524435205950168142137795374191310300287463188239601393283149936338166622654712132669468597900240947668092165433107367294341370554962519245712892031605493137018777394352184120600531082613825482438612670370512718014795378440080606432419606410759007702263086074164071173546374527540386126865041872907534179419019893177370619492476406291488832519765078362380722395181443144554765095792525321865402813158180302095136354779887807613707886399200440468836617357950589728679956126472050528909409625274552476898992626469447436535879313029466052935177512753374627480380450997053884951434010953493433908008994875725978507923022267795050820655860575917451026374658610803721806108780066412796367404549358322342477826308554485249851125673553149603116586826098680606470831638789380515021036158013256965536510448801425945732699999316014468179602525441212468091957005763198980307333370693892842824790260208324906541799583942388330912228916462078!
 3511716792988609666296474830828213604848607908030654685063303164898958
52153240636372363163509187014451742304322342010834378474747963434132153682112590598472517516381621586870916501332292555713124203183154875251893365255153598455141114662863623463753570114985538713861816712192074996589982149389140384170397204297413568321503203760937331643621735811749196246868834421793202734917392131989832818722586616548638416975980870516087814970042041116596979385706129999863042281123210333606521982324761999491402781408909780002102684940746433112389873554051475158485443453077268874552258151836634121625037182137297215066778151189686150133715326398345469397966825767636005159218018284401648588282553888060389320279025017034452769442505553359299528794660841005853646463013710282682918677429555627876540192667143203382253476260389997002439064193633066899579159498696209435854958267078468969453415584916299699752304643155300070640527844927882866332114476885622952337887353456345773015271100492773767979751523186701257344645562129187461876777324280527503556664086098156327443!
 5922575580251755426500281192541409847498657270084236922319271822043478463709943450538307959042994533790403451360457517556969503666820595709755519379471124365587506754152027626492745358091413512313988011913587779996228338950982254784831949071541593209402000156844160500600470600403799562227918382838582193375850444897170699323137894950490902645486102912942734868379103205330512007599134220183397362267190008530802970035291714074621837830877600729850737848531294789087885519554241691160765510617665806328961086044407457551870573175158822950999598119174960315591928008830936841957870754072926193679744532543498758432364193947905983215987480725505554891440470093457383170357248833442806471760596688561054138103390809595652375613603149344367608562015574222734773011041042181764196611062143812691784399909162907599831339306126617310757390432627926140237056560802017782590562334205435279768942610944587420848234439591327202137408096333710231748926279838061331123739995028204499081650738814010782!
 4571045143689113644183446048583495944361188729670666341714446737317598
72376899534701381246655499332181289828676014671589532183203839473908220532329663932105564590673768466368979806576930541516390226961461901122588878615962825758010395048418310919518689633595328730559966704194595079025057642310912485900687854811496158850109949591395561729736419733332194074810357183199691434852522843388986181380769767006274235422602077764756179849392131417677410089831857243279753473459577526889660048472152764207078144464901215352320638152831715186079066410624626724410190710165757651777703983956263461285585414420460320302913621317786587140107119126155801160848143681514848321366314195380804498471445600171232383239359287367545279447924360253711834929233947099284184759987136907763725915251072857090318285426807125573260410060128559433613990809580743672484669508515587492914978499964001681155233050498278044558682636375629000330779627421767142234116723997726785952322228488289005853431188353805362153160337805732296816940952640576273986489806734635077241952592410397024831!
 8026380575503835188322181517799698581745716868236715924803397353172310685452121455027396461002635874471062450995891075928182797961511452089342415069585478080310931963494904914545693704855732980974380420933455721846208849967737857641326498414849042715472935078284603497243855198177996542486906057552670863542455457789843547577017133728371483868955004062997354083892556960038260850931165760988059004286379382753265205890843540190961402343657178767804385370801121984339411464187982627760424612181175767240988059733541246177864393647462642629326450479469552962935404439741214100835638980476861378172229944704971059937899342179354494408048373937199281270121443036206539851458922732537777937551757056711147194984400883497688060960877737347517557618320559835396689438160299954020505108103899469858476550864369498993192378401889235285073952072805486132466394312470825246473712852914236877506456270342617355441528319250474192770596182514373690274720123840524626842618170842633946286473161022503040!
 5542821951331576772861121496397082486850340927798971483897816839923561
72800985071309528278360499435939392604726438374578800784848039234460046739444109348054401042552782646778085600511184237688210581357294631936853146140786605352909259393529471943062454412609118624944352911384119545440392733518659180372238841502567518259936173910493738796455814552783943212550652241766340147387184137636905455328856355188593623839474560598878188512517941678449348290534343520042544167607305626024600945322376355940143080362471297963478829515865236172041134986556473963176259519805902121286839146235652327826211710572491510523218805610368532699909019325200195714499630278101825620667735923570289309983567935657236982622422930240843853361561407615124334119966659579150704831302650205946898714918586574748830345531636402848511445998860377397079734541722002170553915276934502259992374539358383021408509864737843284073518818436220171588054610245521472651680927527249862874764927412966247020950626806654577868903952091326084957855623789618234371391884841303528372747704096663191131!
 4086050874357461800597471912223314786422262045470015968100738955180836981024500508765677487796955558999668663372271727013354880596045907632942524819688288716023314047088864344865984699970535130609545057905720057373591364309561099154234310952479898091010437712700778113196649628374830158054562162932827902247020241645474707948501307401425822621052914824162626174725023020620120701439826944916390166379957063852220176163098302842882108832988412252613661975128402796494126883843609744252282511293587823972471261207369565303895720235336817553686446242434850614938456143227550041950090948927991456404830241599362950858890849663318820800778256407877870378176376708510737878381444099079593484720226187352964802563645801533023864166742224302323374456092155341394384175107164014409139221211458172760255214509223614339993605448917278730208801524259801253997782919278979371274147016427922607627512132141067386210325336582229342826492037106508353632531829277869472921664440464151661965593189468907365!
 8485794728298893843914506201415917130751653786697813504545608892813029
867
09490821795288068048724311990231795353385405164913804693365118562776559620909664118370096009458889022869791836735063287954140559256833451523131488588123328504224155805561772994543082591739608398487552143212477661020272058380670130750597970390177573763250347606663477918089156496027316371203488989138064186050273450052587457391162173058997459400351484500172969356955020036045811557556480328991509318149986728725244792827785111379060732328537014350651051911367767081805124494601785107204386369879770436382254062477331569243624332184791582404718989862641215617912389124640683758612656279936428675635091389718496815780970768466425335838570275284285060783966936776503597298668761962662116174695900740584956990664937223878799501043862719711452367277949153429688539305448820110933885271355530377559660712759336262180026934242949932072011999030696190274616992716558047684155466216302230841985328601508083938313075947514229358028467425773317402732749936074334972886576994667901847745850100516211063!
 2677800613748917142320500536077484995477518499036923050185872822632337701323792237244557141846831017874357551534077902434829658523016156727211976654055367614124322950856021421605687472534570751092789260325316506827764713145265697798766027802698154144166637261854970642849656104044114953961863440439353131678610801684978778691379716392605062541594466626848311106862445717189368804463730662164383288764487584406876389592121024481481839113089234688259294838973998800540314864772384144360249238028137083835615615758009980085886627409892991301638057454852600715641326407171666770744921329874887985098675545681071759451592750022550247838963772500425720898441967727933448353019427049052318136808385225821467283894544123523485589316912021059853644711331856964246295178227118994031810816653331881425220986400987643015142877981887559735038630816546141559779822655984578809851304799693494521136226125244031734003258924717551660989992237788669891033437210637027781718153787304932760981899755014445512!
 4242260199709297703797475930544058262649426107401995324414332057844161
13405707313806767553359482080212854428630117524591138364134580426866225102803942468983702019360143707327859017201131860613657425773809860290500693975407382435586251640184497389667197109494103878384805542845829939693372869375795107268152093706765614283889175964657639861045029388906342744339263451747759881518366780114218188266241563052590023506125212586192270596402643494338203597922064968158299824468280898955059875993016559126703045479229798312906440832749563855562282378483094172271758311385343495840194242043014496158940942071120650675724961529471248666626633304923867512347451790479684919663741567679571583008457916695076220432687636348492678877135755300658384229655763098470892578917612405136830237237000194735709107520496548426894489871200244169150663385379822636737197570107017812216279882438354027442308249658394058123638172847155620561383144642886155766721792341354932115786594797761591441712209341095738145847081148901298015659351736865983967990332415171594091300581993543659406!
 4197163217989105096828853337255496779299304718992278098259317375829537713725765046691555791549049765554021708783845686191572106999758135422031999352276670044888629438637483291425054069728199122158594190662323519154274378524025155197851485013012719233491075934074763999051349988065639351759781460920098914677775185720485046361515305258545923749905436706596212384073981129946047177435701476338494073108877697647829318244792494008956005366953079381081349677408853140555116805281753976926357951094167440890535549040074526992337749662442559131260127634137953823603182849142033802035034865646405349246602011751341027686486671734586166981695365707899534342092131501565172448621422367313455765783598382876946861947678727226287074251392329392645811708920409139301265084716169984562569844505143926871745279084545891694846263725316339181511042231586062396759898346538024359426418670460792625791019922289834902736803975464326253235165171391214650349877567298153831132019990470130128269849087882261714!
 3362245100712222436632783082862131869696775289965991360661241473502119
17635873047097881764307738093984380178285390137670892809775742764207508109386374904306812636979342326878133816767604662119382442100838814221389172641147390532469705844033938915181662981370369586398313791758002843351621727513497915579326031422597442626753583661995028582758882153703289053759127953606740608930682331616673683490669783832979161264930589423452264319710383754331005032969885662008972842290577028991090774923624408025555478088245602954457710958091954065626720130813658592997435847008676470327360490066502727059302019640517223953265385282909649700722933746619191047611015432750939646392658571939924795963565442857892151944311542225830856189667567028269140477396048579959817250478409115062012244816101876709048635557241492039505157603342937157160350962886569882260120386856056289815131681847499158023195617280934293420721206997452896890153465885682948424510611699868149453443417254419650100718459651250989961057792974951782982337438404945853316877228333472114892651564268348946254!
 1026078959252353334750892005341227752053284652406110069001466051589209748586872228602612439990883061669760697049663999645652346773870715530069871610110988761084784796843395329489079350985526418316021862142648774331175926273918713775032210456482689170831322210084244365249768976777496598684249901761961724716360257836220794427711584134416170028677516754017155368023153957927161211363860783739133937652326530026694284924643866516764020902880908930962476133812843100611603549841555863107894466953227348805839672314260654734158953894743751069049530983797259000435889833556612978799716185154677733885663842623796499463237437902058390417511705246491245558457817229663466108634189026977666347465551682238892765877940808440378337088763426733804780414113041792328962344191773456920609581976056236571347199705398730893864951247986495107516047114740501334238215048255646410252480994139475709704248473936637451562836874968966248383457465157978592821951803729579350133378113802382946116662950278418989!
 5500422050607835615947220353317264461136782515330005892229486652695272
69361128882402169471044295882568662004922440907408251640862615492949143860824564580883180388310089095348787577726275581772047667010018188287024334380608700543692494017366628227128653714923694684975721496888366654567103453122842178982487642376909885754617464889068846985019473567484796233188885412396309524965156382117364473933368425110188293416617772408387877821888458542492785908205356873872394663013474133117210261783679249243526323026105648614536940836280313489615417111499888319863949017193937248525415728242017512785939412762067236990125210645008355090427535406478651322039944044701313293651109970090114679128375929372283797756836244991123631808064029865042065400911248832772879741268544815496355997830396192670641720518489772292686912477657417936637717063341999588087755319732231883473652546154400356757683827126433212097695659554084173806285695858433903835310211014708680822074573592509271591007318787697414394814775335914082398179669141426081670130310367944541190572417043145962074!
 2615608866873429026053442210021068114541835934327743435776013929791619972574500598032461692742671220491907305882442175388325408387672832604745241761570482429739556129490496873767183566886126069786371068445823063925071810402970307343387062011023404531518478775723568553231082012976025577832161493133303371278053821312654995634290078921813997604948863906460561332265810744503171261664544881234296664104783176712107923480811019999304485978396410988024816531597720983097959707852351642562017698406166766744412468496434291757595714704665174985850652214834078761556186386078286583574837802579730356344775600168852334995135777799196276657936775788764544923896741102277954647408129859714757915837756976451119046821627493976166154591841827689618028185074758387758815769350214450848326692404564305790402707392631101342722241239853120533038901723346424464236071558928451349654071903884848291581021790859022712424418770648184086370554975920247848993023377075949812870025315921103834277712294400517867!
 8638909390248592486226845065016636869601107168340887603881199956390396
875
25837148401708742889271877869382648861021736794857229979925968628738485899877892157227960993875677082989337042645000282274468938923473495763795758911474237548257997569047456729194929290965753170472908199855645482970497308210990388218724479955962603210289592319488879839938772572620473902204732705636834300008483214999822045756598127678752571770874600133911062958659137122650182129704248338039167633602331473257310341941804360346071185655166819517075056548918698572298134943169106528514925051894179553136161916121027566918743623895820441108755251237891960412671973391531088152322297078808800666700549972128602771938071648944795312097509852926506656733698449607329032759927968196466817829716043259950378839782903059950844585077842733552744385435014535847559288402361317392231713631711444658367856821555716427547514540924539039521159419416355390081213541376589400155222279264235782256291787585398337250487949570562284550473281609921090228882120867123999805999283697032062834829608015579417157!
 4989386560001143067208272051226391257580772662851439056736852669712044401129693793349767890731006633393015297314170949383524251865233405007709787510256549254656185992797733179965905752113275873730889651068755290117108396754970787843804324590222600097413410194317339649901954046865285617554362003860672535423956186674506972981094062642326468184107939277213973464746494446916029766322848849053810445063420037441459577523863800216749991079678535593001368235362776842985779466244890319616723285604135539593081936466682205393686946860803661600557714706174794869967583244566632868257811693535023977929839192037060189429396130779873288015136736345537844063751561881089925360915875422864614048619535785731706408906664816641635063226266774724145265678227490058577593259860276601379086344235491486684430296523620445415557832304972409362020543916757515886830704188532013849071590028410324658877752455471976199976504909127798184069378626139920378038574265316712372088828499192987993414058807073732202!
 2275781140459727393223013237358309557698248395708896047163964237929207
34563464331058758610051151277961495389130610851029935380047239949668975380851428906831224384963213198679375693230205988517406430435464470959400082295762034997727480157020886432512544397412599381191114818821840992898950333622075859194207645251019885284672124848092180574453372017488837833800499314617075734126559010559788809561153366606854176026574241823070063829916138050518081770519859081582404532485469872897213838184827867212550006185792734990612024871962816354719233210754651378695040693619106138849474541298326731186550279956337854759931054774467017782588605270562281835946326239377765932931406723988422606235786058462204330073529441237301328550095402810795201836442122332554747917742004861308986929576965214257931449258274903743703681210853529980092234009283492068214407850904492276049647640894065567726570772048520855802496160430802346528940939784152334553560836728444972154295896729235712941291904229127865956431363420943981850032314944437679664638159659489832162567680424193289304!
 2390748582292691680210301940134707772202259752215537949015583747722818340186896079571021744898315786772480533549014018049153291108389858625938190930478097609211541153625192341482043795834664157737041814751381196642260584729301852658323560426306122588621875765379707273302802996318216068373707781384518657176831314319270379455509874152177632594815781079160416476845448429668986779200882944263631544610200974285432759314610395539924582846011897878539356116823785010894967665574525459908425167070579097952814657012766640747193504609559606587620709973765522112414347046505276135473060062672201976132944977146359321526706547079884886221252828727791996333941614370068223117061295373821231637255124992083073958763011652121513508852606813627001281363298763067029170352838773142633551068002717410966912432309594481565200391708226754088208369954912073500167779976062643206735328005644207141379050201736548152016264072195561382928534737811265380458910120514376284007456707898932951909078176739275877!
 9867680743150941928249516733231321920870070916300384891351035720266322
28486331647623421696731710095436638673988211133441190796465284893250783161502157493117371738506331915413055190405864530341350647820490044563628827594945420211645657498982845784152061319730216593455309409143181364654271100616156407735654534880635551219944314912678669416142082865081186499821752069808799897807153604079391994186433217474540867192696953834480269514482251487135156865833551101819985136075913550973443783576157031657187066003460241598687825477346583975848636682939749153437634644160796031036238796946936769249243850113747703548689596093332450905144973288117288595352543096752327165033843360297491172480131653954444659806972766689467102201936302647951291510830624188462403922395213863526597605817867313737647877718706379998238843093182619839786400278394164737882678974157812370291612093034701851403057275124625389036227971450801677483064263150923329150535858320387983645580600524055800336602753844693020969277469379145830451517123820745517530287094780712982836159129241564355789!
 3120316837251868253611122181916398478706550677849320979824751790543082369203397937399844577460095437989938931592475505155228533148676684589198941044379946613546357461474964275891212498628394245968407811816302285053947835309741081530298543082813920146820341094263797669884730033235568846149286909154969428247312200967078864832133359503068933753277352194578031878306825523971634696663082560452580657677437325812444944552745033121283598884082839017502166942836965008698347041427765019478833017456731520839075858418810627803174443576795781739882569963127396230693053646889987476883251846489335318991185389655726289643484017464044974488043322089032226867592125626870860798999330134272252793621468664872675984964568978357885364871744314421217875013160952175473991467447274125177739083374405497385520190933566263065120671445629803441466153197646777985662018225023154781806555038047888435649651267965685079878183657795927209930971769538571515163470437321502991768569768937172453554421726716771868!
 2261810959135188788876847067489143151998219896604220226309523149822904
80034810317343298316066034335611872726048282349270337127776368567157782315122367770032912594827582121891390352588483630730491694631257314352267814458404815675916397074200619144902826381422790591399460155784257220355741808083880701906999206533339141864041444341299014949006968300747387976394651733024044482220619707774917379527760673015209197601000762311773909288735707403285306096805723032415077455850431496028421636098075345826748204650071705745688545618735223968612895728811298902963056797431963398482413122250777183495197999736364575973352696912673023920141131151889204635754362130730838438458367831793636081897110106802853270249352807554035200893234270496200661208447058132532793428876657010526316781719662023501513467632418845603353842796726077928707641530104435458424069533633408410124151106747950489801182569708770825735353828797174778895993248479057598224130350496108140176338492023097724520311227932237077500957575377846961909837574474326314455721757275782268577142145170066093494!
 4452123414058083395486892850588289326036227049448664095649678331465384157427005259954124265978615880355505131925057686775168724685999073986634641415555187417414844349325192380874408249189691962565275073659980295218693676425955502245501732373756722701155083394106663638557424281263807756592073722097183670582317533217901720649830127781725034928372004907224737288804762448058970068793456945912787191945335449290752377851477716358594200246313375841813544288431828105357608239847376148871604227073224471199436341655987768139264091035790760313465362036320713533116444372021531449063228898231154024715313592224951380725589820247381280353082144083503218485105875467494140676633639099053524819421331904692173334750228186238242160861271176470485117808756430678933411588006995637543941761797481711005060428358869830977951773583121470004435407954764917940241752427398941494915950629810682344286771324884802991638693138428975916322204723390017908535799977650344179880948651828430324162426242554418549!
 9883580454668405147515440726782124637900293008173205841296399716968978
438
73074207251646518970009207073438511818997961945400249519893959204768222342182714732994894989364174112378139182018492242953444747412297263523796242026763820493661408970334301589722643324527140100762338274789630436882430145561398095563494276596982023953580601465555681585766580470613091305465354444639315678006821957752842468563953500059870085381812666674424259699568823319138138432621994876563558266502823373587441117632842145427492510374564977782405418933088291191017642480062208179538053256595588600838224392146227752717056164861862143019184174399174520065319126046349278226513742103780274779184247765167521268331161379016012018345357003045971651132805818251480592531710084819652676386220360974165021339530750567232986795750642062588375313836585086839744433704760337621320083109444276974704342684036757643471329816485862538851223488228186947041835315576815863358723105314171112617132064838371085004934734815398435122618390135752919626568005722681655183726112990057367590002822077144696113!
 6741037180643347418677213101308191093821926334893807366002163397132582658823119759488322840122307312500166518822194470193098723202446137683668156233298362126788038800528723528465817277724276236840516066533587060313598693990572946946171430141229083255592773521963325675195895146954040585369492644520091594454799709287578288314585910076286631179620037538325584112858353102623754940923981830547205947193631885315144127358879360725311710346752287339420410418309243774686379283806972529359472817612383311057764508849819427934976228875542271619204694738883394834933523563798696322536883366443754553957704831298482749328428496574686277600739101648449883576909076694545776595590510590630084772220228691680820036871356805171750292993377956927302665809850418568992035823017397815960353830840139758172625247801290290131522811498374819691150704283606111940224867392602005403484733716165795116362713830155743644491066873341685237337042174851292886419970574779553136954406661030684616039113577653796134!
 2535533487333884212244367085823892272312214200045560007369741301832549
44818594924017996768839736109881205095509764328723615105756894867764822014577860499832186308837784690306394815285804060053940456527443645871094616168036355147823523061052423212933534523355909900412456131168769048877091568468876961174319658331083916643669119178310548769675513306640624860031000138947579265949251732639566416238041740959983841021500423496048251148496810588494712707995443585944332780103606557747398318285405416682893033245930244124352599731773633193635911410945398697917426384574105877000396171997078780211090959224911654557386918107054808859348123347880291901912385130277259168702493366889136086398763169003274794679971824623569485432000789186656125089534676042040286057000960210874089912732674468195428590944610932509508906446930858922619724016236027976460045449888678433733977257612843159474633365198747452390008216004638471935066090269630899642190708851322209680968183370902769101613391025412574747731372904105202707594993473164026867375133374552199550550137457152741302!
 0027105147580260484331959446413430189335080005753551470786684541293254586723296802087861651846931691882920162100205409911530192428740463980690781433749443293103748402261598823432676586379506365600053958172319214223925771969910611901814807421271828153375454776592389230413317664792204947750178744738569661392630426994839907826966682371449053100047167048626863583690429383011313487669092036096492967302628739205852454319540455136385064564517742965294065827745016568399508391759601478883964584362254496371966949179160578008843178213482234855451243041843413426943014386164815240170423617059310565298258377322195974665147256294673119601724369322751641175748055792519803374994170016403737762219195622207153054535042322453268831139942317701076599895731910619741334847167281264847660392804705111061101359515922690105565274818915915641844241942831660267040741656059237096686848971548794703137410432667035565171849358355786659433253947271919502312748773827209644859365321842382761549870997780451762!
 3579114186689280113711842975529287786660841107240957465356488425425652
97562467212140819229517224685415105522794750678519508557014445159999594482390630027978442128236831296188837142293526672535075542996266499026205449518235878857286732580058360724663707616627035526613344469939485265601031662507195983044807828663783004562140296186317692347803811421226411894627920365707902463717888967240093056405345175373885020366354411987874363247780571989262471323698724106763754934457066852943290726123454134362017705363653800762000388793056024020360773605254578377440439885525999874243205650185434878936504363242257112808935162720249815932059621631128522298962990460481798927857718806042450330520547819209228218939090798969963966262625596420827039378309811382638956046576510331101418903985340119377497841619592385064030600281039566055408182243059292157592895716239375844960352167325916217304381591102267539733884480155729493625207319632363043815604556085062683296125168453750999345831939833678965750497865047761114108313172658845543580671507921748427946153918576743914656!
 8718205957501285172181148282071600674945909242459713561943735928828313348089049875559293865254979302061344796696876332036283838352211965509352848406085559772603071915697536356871716636249196964945131712619412424305437487258127370645374518808467895326338579637270480873858350452373301863835051835085572090292068077672980724507595164401050077034378778139933571377584373299631525573029037031337974208528552421934769184626445458430610185579715372518065471501087312950402110636587929967962689329320357351822871782729980504852345811374386207647191996028904845867467904077276106979524393095304038230617462699396188610547188281889530474767955434633994725855992092724030236658499613478905802007746689698699787992122310949778289890883756703300060438298062304021252344308161676487255512050026700532876578505924490272137957816816436199857887755590414251172211431843093547773801028961154652884903003629938095545533901608845130765987543286090681017060091101245213848124986063660660780215927015696364030!
 3467636120058213215154914298166619422779071489878877675181120051851337
27050351608295530148620170470292852257738772288417297119325550801920210598976531829876909002175199104435993770187143308073392524155760480395426161999605850809978346852659630202383158801276927090987243487369898337099909566978273352613222070055831790922514889172255651814920573220619849033709154762712887615759894433103606214712447492019390292627342630254859178672726485912239850166608863703773933069300864532107795005653917749194430463662964888551389986477205113729069352242004843973230186480894097332481495263712879408154752972148817195490463881329480676605079353142926071204020954100329397558701503575793368398879038000576572420000952164823247869670903293680828367251388773597873244959848739984125857706060631982609241142954156073616535360860196142969721835654605094953696109196464935684442337517660996690156082829047447911355226240212950170409501446345444104356660002093107967554145317193803366052253565843823818117297128570351124205631537041611654672337252791314470842397249121638110694!
 0786932136585483483864374202823923545193456128083007015710501133482162931952920964878473694863756377920706122045371649412341827009474140534008172593304061041346852785341005553474842454548318337226775423430008193337065825652876813282534512315528410262366627516312023215345681199734302172498722301995470403846365615419739770491295915079052549938815056556230312757682343623685706696173507033453104032063597095396984625914754159932904719176105398075642177355090654775352983211634035920666455120986648030256955987659036905766908266874171794183290005775796235228015730353040281933759737996901328391200915352771938106749870528499813570150665196293525214967932845339498053061266822608270813252669270140235556540426624310241122621382613895357488459736201676648228349404200827822258865765353122876825151869319128481683792514325810608252840313784590403097620663207000873239202296176962829410483918008064126344596006754728211771041003091304634620574676925715435925507991427270101981406511098000589491!
 5470982930270551502338438147786932693434191830784407476131236663562579
308
29868464929005141048371471142673615076249878346501229570500898157550319087069236361818266652588501170150251180537952376934057243792097550231516858986608596520750058164543722650480658913838429402131525858409112664010423705969490529655771357352533424338092839029310670615707393544516101159230746648609684641026752773862987551684424924270534933011572878220133090961118362799137873331413610303181033686096946189765013715456729231662328297184862354555694649965442653147410587395752942649255339403398579344853296265716514547417590344262499999065379260336420945663806247092885149549358623311285046170317808416442337212060548498194788980104255511571267779475091050369410026110322394493475647491091025984011902028234128903741708256497591256753538723021895075577351943582844925008847609537068312664882399400603601183810188567072877473416672276027407371830878396857384511183446052366205608873192803654168255820315125442675740889508686696535141265467145321204268534616242861759905994648158067852383066!
 9146626390505655612938924556359884849008703288437144264379852258047624342607766602306840227143181005742837582013899065278878726475395804564347666961249695426202011599408572130116366732859815767273284488968892093226505035509166689186406173349493589207709227066420117670450947216330374702621603394973102216038783298849262538351095936856848304815076707582456266211139782659568665944875575408668035718703608500116515815866798278843730425798387620559057038074744082740919864898266686765354493950301339282294876294109252694551204596486262472008814250877924320752628542206430332782945161651446489191702721507012318330011195902101088584201257635829082565678949466300158874871598610076931288651902275410920584539632839385766209375631120232172146392033233952859030748587120385098289878551185200867033694027681950845149494711167278050557603839268590366026914238499894456693328889854132207723503564022465738692710260990531353933398630398826975580842087122717085540171910107981096155027547956470352183!
 8866638979470608111082168322272662550887158853329113579511219443432117
99252031673594788688265539200030167527848992652487907179424919864945797931728374377582930257074185838674166824348244860083769833311786940646704189545101137141124406825258242969304734768074530486152177455229080977970049634585150627515373659137556786342124092992573752157062640211064332578032958784301352556115029139427148951218584662018693325217073216642728808163116087306889785706222096843895014902671736594865064275688143516268018075146337863351987077565265714379112685286901142254230832415906784556830127537223218092482698283106560855330535123016525305645535131339627619003699933615639734490285053996302406234603290975438675695811594455172427727163151283857987575802669075350200853777859621909186226692400558661007921604446911262716247860332756618680476890390701267014905320976146665045921272615910346168912579038293853300236053719782863960350960248467613926147704396013528164164049095992484480240507032176278475453612289861285592198026548128859242694821874229757641839032966958840166903!
 8783622241175962261297334367219496995356073104570373016386365828012562228443620721814203680750248024735173278376808412402014093299260740424493098268551381043031931832940827823930569891102621699226585610621590861496268306234417425260971672607552709013888169200814817414315864352102361047953283147435022738208559362245215553770570001824639527583489496993912518905674319879133562986149436770251939701872876513447255086641997075379209329848159283334533871788992598194315131573146228097410610104855639092333244929514469586763936210843680967577724168863838805074807115295794582002956503366063899794509283394548726995913328323552576652106454585671870399046344738323791092743137544476756882764889369258049750773888119322108653472147729187068705775676348010976720913854880863386107404093945618926512064635668111491486093931429088821093950669859097644556959049109793307830455911042437133882491721113020126511422036317922598820529760637637809592484111899122920340196114883863609152652767331732116659!
 5154661408959220311884392713153387680716619306013594432264046863709492
99664401272360793788262626571905485517833221620132527470522316943288046630184305781626009648398862267710839789242956246338170439233777601985272077648462262533233373430783028851968605834325303258274636809053932803306951779050665820572176287753746710435518654671743401488288280205257765851752525641231980979177974651839752992420583882257714231540474391636726223795259070332345366494292874421322257821791529501297226820627218468413894641809178149449839067347588296389150634673434178961075502697066573752817398209559671793474437488680710297078160407267286794850953123055046909574146808633572387845046742280873002936824731096571389467442437571838652814811711962612935250421894365397402203227485564700347493791610567631223363350957336738051491082271914028019109495573894220831457668154898856367676541036428224407199518543385009667782968272958092311927813645984002910775965591204335390952057775035094538590670511958937298432906779713759534941860241435983514988012901330669214823060153533770155326!
 0428893133282576263017014361012252385804299700289408941260947277036679479243859988631261715152274311322879620279216082197258802927030995191237873154714210717908284059367487262384505205212582981850469676242778289635181013256889877706408794938432849826157565676760195023442238280284408066925203847742816468829135244661635457705378611588076233157002616459492187967092894670139977636866885251493971873154619605606861027398928426474267724335490720886481135478208553375531746455092219814485995583683142095011861047501938524210851105210989460255647538331948465096939570373099307279397434379429820354420411133887987321324779480291673565705109344820872810859347473111742909163855231643763724099375380499385845348174139410026473685454716506408737768936764776447637936933928013854920903577548161626640350928579471944277584689863758019367926770883331246156087755541006185964046268663499748526784417068905640153228240868787308934542906971776920874337645664232721208163192411381886132615989029426221585!
 9652063028856171418753957457484314837202970999871469847565489938050032
61535821306985958649623878277924017466870488443441313826022634462391844967181614879197130332610684361725854176338751329989884575508237920020534731173493317884542957344642518305437884280715938935512115067916110864075800265241972888028780245608692465288528550681985069127075401333455448085337267575221278592346312597120442883534842348532807759489292384420418152871029442051966182221711917739273073715275561118689074478069928407092868753225682520115221317137463261316582431085827444397414030336771643999468741318259420903227226353828862548799613719412029995553763112910934561553810441475766805063187223549644379327196913483803625166943261549910683181802966134689106701971857198578343101524887219565510007187651384251712692964834957387294654155911085742887063683899262535176911986563866998297945346269152915726196220859619415549109638543940456505001652066802074721664807408022178992842088424498097628388077993292837683076801501520303944261433272877426731778031841564131619605163634708812287016!
 8860262468577387347561223893843858375568401051173202835029693333153227869563134861841151291884963578950149798550956314667362689430042520693833769173796135054133203736042658971324311042335872892334600219374283808984890138735465068851108393856571266417221545546626095694091896208361284601967798322208732496349540590381063105853884924491171152225254468931532855718462212523849152816387140413907994368618948025998659206274367701428916067807754905625907143213865660484100731759853032480959674479488856096965914302006148498632187241157177688153614710092265992726075411215739600416758168183633855635779386652390723646920922085754666216121653874476780333411030698198662047089262738796152932211919458487286191997830264628178164716304559179136073822246237278281269207624309423826870607509612480764049428354331943252284412244436683810390454592113000526757962257992363949704508861527312137444823693961835343373367635086429093879908600455722371463884105884331924841061723395715698522449032805700522585!
 4549254640307989466585224859627740736739564429568866820163051556249505
645
28333846078251237221261719037993717965619151989527339708567568738304025451539831479011186636028286011975676841090175469867181496033698766942087765402055307966563057135069299563081450750959748532354967094265415072247007462004616097545205263520596586681002652800346980649073480004087267886562792600020297582547694298097114553290518916942897215634764051291044429396927615024323349188642700037906575636803329253419904796370898572937423449283247858246899157360099148567229097473200044314865011564962375660585390914975252650478238020973347051390032176444480367253332681205784595635954512946095911428898788421596663673570629465633396341351989976594898301150873860374471275124631745401654123509638563161259352751966283940987547985867819874953675750894251521280838946979856291794469814623055360213696140339468425692320858567290197878243452904666879886228987828436287775632708742523536582943639897718854123632539407859058823283465275359266134151335571652619918494364315225878529382987209772033347701!
 6786235552564365266558897843586681302265116845974185112070171406346939050538880057470836259659665833692869061839309770037562544724590020327366908175115252919513881241151041862672407576255086887130583849359555987610826861528304457004346291599251798705246247312132228161414756724918865308434997247474693733546287974612018015756666529237843811602002485053802633303804390915726701844812517476691587086240955779066344926264601782177088679507217782049875196975579633336701009104631905175713069842938344340635542630145069054385307292415872934088779830289024252920309878480399123823496906622851124543929777278870422620734497792274946884633980837430799111334821710692908976864583042872219970835165933653793755172669814050194049610057289402423178536420410963377242296368872114466407866993480704888850860818878841530037104109320091779010809242954717601758645838664565910638946559890643774755780596965781000443705315990218959451441048920053957671557932398202554402371168514830253895416518206443042679!
 0097843088410482349876705376545186904845948764122910521326341717403544
07730141091057840769521471496340853338350680854283436385909915229534169620059121268312489798634721955482737376536898893789277337767964041935918094737829513973471660422498890118686076054283112983476243158271228712556188912560501683660910195680030221857455992393094219004398613250725803654867717999735363896553014682719339499763614132925947287342260729410356602474573581361745589820858011616883688811836465457794101442646991956963482880644778236563258000704868965761798595333264293358816131535043335628721827730931536946381345468676941891472988853258715228779830731409200585085055382126607944217239776741915885830614273222426099090441781893416423994852659352626371432839405213263326497782358484679388976017834517528534224887393067072087379639487400660013224138703779294031082146452792325783631531171876386603200184761029822510647850105367632000062503440673779566754275721533737427934704833816239436541984199051634614153113907779328773118074881278094977032179915056419757416364479150606202824!
 8173540222967766419757941684061932113802349726003180392866449789744327143294050481534080957930966028852636801166106580397752276259560488759085182148935463309651712228984209227855640691712442345784780048112700320033299398911997844016966262230408468292530550760591929729687328637111259664091154231879305997777768727409455364942429046508299781627373738407332331038917749642536475130817086725999795516791378917067927210077705007304993429187719851049645544259006434321064717008176600126912428193301934385496418044311023006433211860044928969074954674109172109914693593070279119905008880910789721695811561298494190704220599513120525005895258537104714758053159690821382539705348619934101885123744560087700033731412147345428295324531614790321098460762796455700610757614436941865040028362358069149784004659446218793660505070409648275840795302467596973592354156810259333176631228930698373810305413686121409991389116321167384029214706984213039553579820248277161246742207245297035096160633657364953068!
 4052987695951652625134946830402883610633213836634470496346265886083760
11330282218686376092348790721271625154326157315318152374113872939225896739986349737462257223976036715437419734917464504791778612110203608035867556762679829675678285055744620821537399521132088349768368730131009247302657131877844301155358917674015528773208258416303257150599731931748057603528713858330219052278901277063817893800121425912331285386249765781298514976412543132944303228941833443653294413566691439704624875307356005267385173073203644798800824074493615006305963788154719590466930391219515980855846764311291501996294884455509033482533205308228302420615828667149429016582926631835729088169754621410062340579864297036684434127212549632125239959116699334477530181766844124785418564675757004626985252586238994995954302822415002290608088598357356304401827055507420810098559760568278296155495007769553997627660862567760156795284713681780617735017675121504041634908510054191448022475610392260878868838505603112981865517967766529437491774704652489827719017903093968810573439734358298972430!
 0506714637598234007428827814525579381930613726641629629189578436350568543776731736883374969909389703865800992736881459610974886820340251091620780811484136952175286486249170848809075989111055058877852139726687180839943647980836864263114576994628967780161937829877580544925204466231536412339624706034795883732172186443256046059879984117729995597834344430707707042488205945048288772043410112306597949702066769484189559697092676285219448837706496986467603568761234868136275316747169188842521250491471322770669043686418097049015499721194410138627847933531765465266784376095319296240818562613737455163769636311512200578624110468873405578995962942979536798601930046059188681916759626467611177886321156161344602136127770771502067320049277370642617093665871222043435726935557831064344709040553504666126918851727348640346709176806957755937527529381281432143980249757755245269352527108779687832770426619185504511847923699909561746174427767825008375938806391331694502007180061208185515876331623855451!
 2822176413277954874702086530448917953535397117930214441842104524686505
35059275217885857114340408743990879070431543134425429529978232021246572343744759735587814293322346346148441894095773792161408016792606146530604687599175671436745274306869073389840740797031522985597123698640861766961458824518344465295686597564851597384445709975503218933965434579996695051803908625442233029996568053811265373544999065067130159108629918787212194475689104520991169208090817065296688105391141985717010254399007688953968929747845680813327194450071249891249936118677927021637823182078137494332135636035553989723537840213055785807867037495900698729454162501776091278194429252238695515588913123104641001492642947452301716455284190502328356407923088329779112508752229186236986747097513857801317895235863304360269976048862991854811981122174414073073263697262771857001460783415487982768874483304278353810618237836304355358588042360947511127377953137777488810972509110991449798733860245567184837607516175581693439331987579393266654919822688490998924726772503033871869338418873784125152!
 5691512011853298471727431758973779137832107438189109710153504751592856921971893431270251346266506661704569416840846263307062934807653631673119508340048887456769467208667657551154077074991709577923280893998022622210759528616983096900622171108494343358819691849561482786450717802993227111545357076538249267755613844846385813453947846797525653022976944146949095005365669751944297761104947685004109830192271968804377809182543228560532741555978519816957765587975935069212994947473015883592927095792568764526173829256869453102391121381730898655946528719802085744577851670784866660154730182534979515302125741342705220347733213416694056655049655238505589653457674882636532897283314531842426440510615429288647233459459619886404217286336398634695423273324507668391405792707888892883914504729270744453762833996469325944613832060115271757703199414556222371849966886532403088374572840792122287851219838571991858289343652548766101679877322953596095098139932238722621500977429300937258239946959555485338!
 3773837821104145300475674490872145786711912719487167477392347787228409
957
82110570006515032306358852212444161051325079901008597184399507285859504516530731159488397581950034870663102824123983122774744830519957913838139841773171671633522932060788671124848162047340845514724790234422328814052845623458291948031911535892456051757930366971200790747851755145437119501439891109196853358834471104194503460791098983573514192567329525820961698054794689665019233773875600367459366392904252348740997123963712934256391458641689880702162699735707198939100330817627019631258817599783028293936521363662603999841801169974294160588715302300838642790245442714686107225700567729671726284178461390274705140942824150671979209763699510844657007394273430762673981147587842399000819418177415661961779097940174504174755586325194664503810947825571985081643943941198846459799939673828897037922701729678603106107413225115791391581088403105258938094691068392236730416071319962229879551693407200578075161698921168760330048583755702447775594459049582479627344490145453570526146347008647903789535!
 7732347770692206922119290914276691551275534467949232060218520671737749856260410362731945896842203000569710604471394369517648857041566316827874268279898729031955653166611330212149748709055137059845004142006624882053820328967000729292109695357136283832558368328111908087589715548041567590693100173197357549891807279641567114294191405178079870296393982999384868968190786394257365264486111283439729581335020535622554405826407656795490145561253277424686039477897177931015810415240048767009447444497414295187446244195616909366777487403015581083546151419457370793395815214694444750581344160408242905358408690044381786331263033505184873083593304700270207573115604692846003714492115067415264732097831072710233922972978451899225919329413703272087495516507276797961237648758950456209725794777470886538279196792804238565431790400166081514991828901999653223050141960392830332206935626107654987958277574192482785671683492053500394762245040582312440060048724035346710948421400958998367171533516903846075!
 9062476726286882657003794226432572977766349177344227444673899145010392
46858447476527505587305911724202664200102799130360476571524791331356824381418066938015802915503127373546551056970908427628263437374230784840341752844696478184714172511960484363278418837147940849275130745601352038315451623460756861693796262789404389614683883186176288671179048238231817308929327121733915985412662499967997032251292835936467189675723295966670788604341936753252334737117262453764454727869374127384461928648658403783681318133676631466229168802385376041565770871618057580643128380259426125337744387802026331416056327089955280639711346516121419688247355623086364067484714431556277669911124831108788058708827029066807808882857999432541586277266449389980856738749884298919770754481207943241310338421799142506244127235739290467981601919557248680584162891239667144585310030520956217352522059907772460436922640098776904276529018896131984717318664611177239255486542992312192884285361593154312160887401417329996515131464743647952666951277230811808193001024844417295580779634003082832292!
 5767594674761316455495200743053609209708333594139490331080587278690415410388914865729346163930477026500288250227947363323176183602143077600632787944144786778308281798110764536159987603650643053299912893326613555500871146757885171242428189030950580663572772935229800450576355252022042599155805910473389756960172466314188053565861814682910603252384694954248249722198861208560630348166512964852930925643643710408156726032238136683302174020634568723709217458002884131140335919191606591995909048092232714383850525122775535734830857388616262587827921478354627932065163057205192967404891027304431472663566681154691315079658902294996386775964685500839396851408128293888041171345381444152656979419963730198592755533747652068192684704790043316534180074845808598025569148150215509687572804563306236202852109432396107723530994544914196182847676463142968350572764875689383098978505029358557186241167739888223730070374938065913449442670185581137209141638809463257214429524081966173101887451026805729023!
 3170690234015226408687008522739989532787525725120539077383321874419895
22086800832670350798629501100533779416623310485901155699563295362865479373483414072283361142642791840306459504440007789283004179897359723474630587477017639408962494405176897948163537294548660753022699570774247850610784036729681203539480603437444421207778613226184171948735402076489770419669490442252398989203050301179472356648534912143894683199310958560341471462774713675190814338041573290917490783563878132072929940420454831326062183895978793787305723418899067184009034817917247583236334412076565238395669721950669554973512289908409524732103416028645435366863999542126541698803459442804011716205609847937735388519951265156104934099374501836106878174153929178882027230511765194272143004764252940618420835699937712851495082430008332806023118790709144278383365447660824104739665015120662599781549579195601467000118865160870401459395669330446887486702455385681525433509517542202807017713886203098675690995255951226757022712031367681888505481373113629553379654187867586739386128245873387852174!
 0665115313288871208487277971310250358055787759380425216271023431039840245312702607652931108979283036000814791708554575397220665292092613650895393780389472270494968479676349426893069419563692881479311115303236031089558350771235078945422837123235278878340559382054824503958695158100861643533402530445814468649172568383642696626042227141027493022497617958722113432020630873796167506526442115886643955370519638891449731102695949927293888069965466582674239909708596180594444204953679471004674235308419929520620689054174328104522695104124194292946451301967541894037657244470985037342831902508770931482136301140850044676646720195808072254654460876583781696860287852191558837084646186088313781338219401075144492427098441613517849234963035799521941524288951390539701418654709444678525480075618931128615060717808487851500803841225737605215410431499725907322916909249302281985341472131256841896392955359841829505972039949138213597931702157838018812126087792764366382224812437975662277599087623439209!
 2403796227537175396541883804685084107143412328214670494177176181043900
29502589151444349142873638405946679000656675421243626063059049384303688208015583773236582892085416808341702954387462478904572914238119897969069313894091725945871575114438407169669115939678705640142716043972145450997566625060047171040736725820031720641424427009147540115728149805423839399104036700222592484990137897954286729713871537245817196111713631586114359845061404892633006456470954083419525244211463497870605196396476464717727858869510585259528503812296414812311436423724882866624270863428371317648618262298262902406930033988332815577949680531156248312722734886127302423181412358899236590478432720344390469663721921213836686603955404444292604254956871897080839650468510271958467577141796976534873873994848589565716410582394613848639749498164541434551668512312495487141007289603119636253272292688319759634036119724290806273294094810525129549220941426584797169452258676454906277299600943456141043792754804436871455701471947398430960630625666752641514349364834718650501453390137918785204!
 0500181240195273714668968984899674169578874527310250374155561164175531111936001411891729266611618342475911205103409202268586694705247876030379272224190576117344441615063227907759860183605469483599904051228309695123528599936905371727713468946593055214619419072522483126129213345718542715479651087662365078499600477035640183262098287636016905221262388552166934415024684860522061293959642127155313378683054410001415429983202879728279692669597658569822432195238591072367117858122503289167166859265989915875850478705265328694055086007425367915392832013851755579110424178242906851396678354385983184529001744093220365842382331446797324683274789612524426678554948277460575462428574314348446907229742972109050028231676852810088376595010623176962695745621737188540542232191669142824780245791211911117678533217246365049854240679868765888063881051607877136531705611390358482520766325104653104804085362473703930780306864696821907443174966454394599875504411619059545192770351620381844342750172926174724!
 4186300161742915840702720505542248555756938163151812543662769188116183
019
77495665019414826060146872118414349514597688229541597778816531634152714996031597995597761292995825580974719617595846746295626459030627937265802945183010596327744083247981736211919829385875167966442847889361467343328552547103499093609334492521295785391648366305119325705936759281646979513964054692529922301868791218566089583759220563033159230773990078540382944507202638090173852524492724494959541325621495276362382623682560682767715488458062100211558676974044990384779853213720909168416374902668473376332036571433009324763728252589583814335099702046499157876486328668950987604534459534867077470800638872099440666124845958118316848786509278905342459382764318801570105019821927339646048784372960814612662690756085179650258496822706688933375935734743315201560371033579515798268700022567896721226196923717386960545402719938352590843648471660155543036249935505729592881823544047930123880369456001224946437830700339365446759327359560445532217767389224242480362921102855793609517419121321058831143!
 1382948216764362952324204586956530948271547087645695542765414564061669566974257719873499126567004057058566860990919661211748092344703295670646385414908145546657874227357623385664628126376102463388519855947162171200769016678189061028255045378308352349536619656649651443519716432674596276510152586880017816449838235716772079031429448467492292331326691495584640573339568166314141546454358949474471345066927203917832444669424927456577029189696459758816296286726974583691677662501184266843275371493750112860867083414606292571579409179980300237573863799786078705100588931346631134368553055407892425419408502818177990506050450356085935575322214888972288473746287977732841232151798094368711228970340635053617626902083070653453873461688649827715635267979181182302902968276768043566318294297211694764461750793172083736192880032513571878629875947688188165134029729036980824644151356316991531412515900958229632101399776732331146612779421118607626713669239653391189333610905867346787031492582344604770!
 2774923363987863917241478256496220739993076320462148743940579708610441
88580816056270462844993637323187864882118174094726804403818743528312838937056536547562982403107801589206209310100501497894303981704523381554927416777536270752842585792734053309266398260150388109914722190863624010706891582365805136766065506007027370129704125413168361638375116919160133177521739282450608134078776189659903287957987859852259573493820592261434140218904128248191180770564951990798593695110636467081547410743249636101715836376206450524950726500391887743141286223707020802874570485219567931479469714340000051131416934832652397201375770093327498260386370189448925796257278954800602386466348417563506336447590755727584734565465092207722063151132444733687570923538552115436062053662494566971949137157053122682831338857457330326062093536903612245893239692943009486350231193641837211387977224415194866591642268676450669958662806097207793966789480167778291525458480329861562603105284260002792569752762972775856575366305824823175831141394127670637845448930853141486785894743331632697072!
 4471005410442195000746106352878901807348512312620479628257228023676802452514494123979292057811957377136240147907125411860938790498574272916672056449668842256381053713871413980815099245351377908796028172261329937124983696826883186936973184495204167163961617100566827899428820189180432358628282128827074631058558023333037474294416456433161781545565508194861050036186154877293223183098182718984565864114686249919509453467428070589145832278820524076935980362302322206147075048135282833551150378580927458454847403712398343985385873357029545527349124034140142447604884546367796073254595441123537837358013015648717707969926535865913131346803484835277806701990850419185242552655614709316687438561908944428513577046308568757941832785975946936795787231099573865883454245256251870295574625864719066040239091706870323506584244388877119351173128436208774890368998016325097919210985422102518140312780231408303809784035715750376733584400193484868462100067644289216414607856395635215306977546854976989208!
 6014791899595207915927331870063532095395303565402776834903800681849654
65027416646664819909993527419235184934282422095042609378183878970333507180543268195929065763546467068671391090290513095074463844645131628843386503379034908864581619233628917664627267754619435154667258596904188483254777582654027017193322103800368997316340156261744330765061586311009148650906080234425237687656660661834140368637102285789126409933044438717927783466570820536544041859444946682031218460138417774135911260484187203382940929772519663309225703108544637660820118255150411379724890980448051864328785369709457104970056923354785443765682277633726641308327233833984254666156193440091557244249830258729841132354011011512599457579163571846162968028326434026875311246779264949903374728356765604460447718149996599734214685693405438501326519667345427319385711705933360254464237525508303827297602776615124102592314266294061269750470715553351220893120168607190447617656135328362734052521948223626535709379910804853368622599756572011127435457768976523614168426731139746563833610578257154051296!
 9677333843513824169985707890248546782454581356256624947714623272379451769184646392056258144809287135327348292512169452197576343932297515464068350698091695743505739460553632574031523013190615655821038462933995942456644856324640386662167392385334616407704887939389896386352612271049096440618538026834234088541528822713745437145853319927718096306001045575946631703688068659015931095363651366334248958515430254872898756420334602736220930384878049957927155490797350617072238855078470052304455883130108610429272808631523903801343117115825606194492937224577578417567712152361800571624223926131260742305306161307260193282089726782408383918505865367075657417286298081539823601068798511899433270571456437716810157394209329436101384679645311719413217976755723139554650967551012868187619126674854518738683932705890656123864292030920364527471546886341923479715717381574896852437607921317791007096044975631765665175314364241620737166218612215436930802746847821126880051126941845745070480975460931319522!
 6077490962962645100062812501640641792099768494461095611528684978068089
67431613777362097433514536918382246671073266858036595921478940554295555798924067976827781298427807064218172363165437016761071258761628297761960960360878640966700757556991164451428049352984064892026181377193035022671185047768584076730389471701106712696465529848746164915026596691398121582300314759581184092004140581885565371248467856935532281225589350438733601044385522860925709002749671818472440725638221607675092516876985561656823925532782341567003100552613949357486596615797484676907353486811401526045614897806503952246216914670588593908887388677508221243259246593538598251227654078733149851290518988598863021323548704421838674634041212452828596478164775004143896261468261699413575498024699290360739508049117829225254197661545411221495540943118401786473774630222239948591031464884338699947086164991987810460409049064294721172959929692775931043859727441218694048728862125512627629439710293938977061839691816288516040202702598343041991279388145071282628947005449881337199755974961704614896!
 2363168762664154407667409134731503854071967117493367945387220998022549451701814221075419797168220132751362724972828608630791418126011767767567896960883552307305722489743949195127127639201849238891435679000957161388959310343326919543348580985265970561684172841247152430509273527232823787069913761274830413928916383191547062385080116016237396162228222558629418438050458300064827906127746769792346248094317338682370334896655636627141028775274415264385162559734034472071813992813548737578633997247924182056613417933194373641246509643489180051690285945593263773993076404209101569769719477758552520355095103607665393992738209744241225423726830832959807237183389104767133966381711108507809741596451233059643437737291820009526361017009278077585593371580314989398638945974049609733774402047238594664223763981754049951938184259589640106340101012433663888363878972661204487914677575459454576754474125462146256112692353494153191755212873625928441426416786799258170590178574277229679001686344872637487!
 6642310127049936596235938280370201141935454336428479362728621079815969
242
73845601967226341409343837693178649987868711677205254579513542002998537163890426391103754674209309502129957795925905833180607195989519859903015297880501161742424785508534728495483609136318343843566126705200563790372924765163740870489287029735374314924500029424847771142760695776022648037942673892105225198679398514192856975742000368326393819912285700677317312877402121980631741544661857891294348629055122562600193047435467147192335961123979807946068475409474531177487368390451085668492595663005072930595999944429993623120750461149304562364745081633315097580563420976311774823771418984517640960193596319563592667416286505858058390007911231141658696000733516306936540375941952032769521339835513466845889619613097103905672574683609010228095435925887329121224398745469756805347734170627432186949665868955360820337670766005220734225696159975350266953509870048022982929432232455926380797999937788907569256848240090828829879160567587149272888141615163531219190362385224909297054257727128221666739!
 6573554637005163752001646297826609282695065740422609760346721825355538205588811280946558101461850421695170734322717316050267206215152203837615510610973546555706571829293206870421166434717649063807027207271620369490030603592787722439033491263030208596410726020320600762510792670330768914591282723374294277271462128570574195654266360117467611438061000663671525445237630132709105014713620702427882926333051434613362482340468098741083291819320308702300361185210549443349745784482091227449766321775546055667435306076312395467309893664221118096049385921295379897851738276857601615817375213871060738199593048083173917947612810381330418411590092040499331510839572482211908181874540462965385003089445835181795157563229246142650488895712267004820279022076782129533405479872194451224291860611151357279871822411988104536796102380700368589216721242658677594514857699856081031651185694788479982005323211871743016741102589031519644208748765952969235861388822550993832713159476693412294884863894027349951!
 3615902087054231526021074263590372945244338964477882464624304981138686
67862521927331527873493225604191955523301435817308843114243256240967258696215597184704474160980709583022760732687554943593367178281877162945044948982320057492367714144918736392922457394177682824788447993660636687995459288707719365239116378054594526732216236208735416056527799995230759014849279636304889763903917395167107399803769224175687698893151541837228524893958689605092354091760955858756010030188628090135120278611599976344121475403319543321753121219983752510319982760344249437683514276488255411678961378845967962278743501367195462148037743661207122862280690173755904690416292814242458143058804092699122770035735380121859726509501949338423383762973877081124379002664282771334753204848109212892416636387214064526197622927217316590360334985610623632588424913107898346668098659584886835787020196827815050880194238745526116706004110755545129026844414517478840315033998773318487236360708118916253340255845272171137576297582702381130397187827351161422564721348472201941775366631346692410785!
 0765084002727401503017309823179179814305379077345255324369153143070205453700493447119982654132016927502432254109877401297392390599575099443923268405624513996155984517159636351532736331083535501007199131429532180153738502621074066156421099635549172086224299495160159684436856493519193543191459487846458079072139962007670213139330520965974870881430425464670973036534339454606509750075484449215275529302115974426676506037474019275768499314386062829063315663326345928023234847162646326396908694796305397729501663006557314963440264721712315660489684302759779063699095034895598437183108620115590725965413152704834038599009414818154962764078038363149389307958519752628004115327533451681157655112362944132448576436303905896319006734221900473793399385659027396152598829437958349328974935625377525066728840566408944016977198165782293514774267081174113378156769150216922858598691014354137457874311280130583583648284155710120691926845656918581739319350313572214749170454514827592699320794170529208400!
 1384265006733575372097674425104842027872745143645749873557007501870915
58548951599978196915436306902055113920819286497313978348150997622772553961419727182160365025949474315283205195997434095036257634809110879136216196826724440188374046726849654883823786234489607214706065042578845328972247318552125983976115721575814129795929575408776378927145238984722930542927876895665066741545495400128294342484502762543634262571119106991755325569072258324132971402633079960545030857743041156801241259661271495687212552059188049021026111869532041229726040066124299484650166805848066434141531283091556548602454987670857117038035795466831187914354824035218036425869342015372395587421585058796059722351209754076211349196410921285759007860071777867911943893456265826328911687090071169531406873901061316342325312505215302531809237176007460768061698217693026406563553253483110432330880268805027684444302358266078764867233075584487909625989083974828279114106039254053599958330422359746421490884302116886583315859504460108115456812815766700056929356967185896038672955643659715149988!
 1466821623410215467801753304215414870104712833649477618977008561107872999003454404614063423324588907689945484817282966644901075245349248904734621228341436964119331566967257779669250765961091643837476961615104849910496499462890181142392908837650267635087106452541306004019396801704186401245866566115309060474061876229441312194296383591744405290062389613764513002596514730570384793817098826799806723500508753470480911304951593257493300195947152297600102453228942091952705948732424547013840540422657368405271380781504392974797144901583794310678407294894925176876255487922809768291875748310799308084454190556635089847106253820307249009268484059018151845353061450037505903385757218294411429842052074263519853454777975586230536069508656525294975808078784288397414035548412766737635812346018484967994211658319976853571633063510327143301699168858129181218436862964477707665474640274638293982321203477533733013054353967399911769744997827935360569436551439370206430511779195297639502188470422499390!
 8052741710776787730677765733697986857186403779533950493191451591206729
84091317452695049044127334684786198079691914979100303683919114177578837679710662759932365028624409288181307808992686489905214952259776351709411214762244232355320502174296089312645085972474657568763029133106156333705142618167178930722984028507306608849969955129361024561282062107476154728989201419061873990131284361903777172764632291361147609740812996405180381749834735046216929876151389137406446509978519751124157131845685093661657423242159392407149394845318990514646915713289260544958542126252478479370767197084316094579581948825604919027223068038570233388150776608154414422259266410763588152811399453592877777153275139126469291593764323636069996685748206005881920157313250498971727168701549327694216042403792519383700843917364781860429722227671000810500002197743546070412440256489276196324324699012693085223852811971378916828416269527883083063093092373984083773148518010369839900244651678363943680751176661529637465795771799431168749650773126383953675600590326156070118550739849963818126!
 7415266673036819595928254054053101334113757275454375299007032390290632395573050644749485763516327667382624873538506098059051720107218231936609200895991290542828662590132722221066006710424936819347261728489930348146424497658695500852093905024803180337954371811440501521080080670689609250646733204646836427630643937177195179594727944193003128770117170782370907664636562634449782604806815703903235847047171929740451938688311765648839638470103368207156105629035693845091574630512465703413674817307810069436335257895253027455162321394785639580841678446136318705938747999863271207702013476046841776514308496441954091623059756649880222732808241789689832104445619236915046510566887424742926018573815060476999338077293852484202773561597020073454291737353566359849233273609078905977420598416107139314785142051997492232481572678381959275363568201409084007835665073589731469768298320019999795451813843415839121150972581222792129518953529341682632323678327434047010532040515964619011108200050903240540!
 0899047364430858869872187445140368564877326052518070759831349884136511
239
90717626006328117879364879685296815904914454505190466399506405846754483521821280857146654535183690242103697892232191311345063996993083050033443936029796528165543778087867101835315573690373905569900861243478208816580384786924071993595639646409997759546634743106972034789099276912859742533296770445680543067456487000543652326257762698337644697990688529778735360860895078726294831922802844892654930830959693222426739997435751105058398851133955807297560644243214381277129428511880285063515779941754675784076473293501282535400248544481651864895294509205002089006213176302960302515153613854853499556747804527524608859073665937095435639823084283531693672097878035194172134275424421738153759596916232907318186401491254096502521369125187280248454269500736448229658578168545699564914117145215197660947199653291275568364150969758658717879531368453433326111345961025739672809833332304115239399910288930791149077802195371687516988696891247194112899602186720812077115384482266702004661359863042250609390!
 1662578939892193179014070336817069794853837318631463056823955281598588018996343900172188885084976312781472922301667037929280226577952921913173149742421686027377817812538869721956380773837242959682442982574593292615523378690996592777027496335435636606225327893227255683898102871081266004181825194049647086573091705119243185614404527796518096373748782666479347431400076677368615616552621976844304914130749634482099604313676407985105006715976559335150136654148308014555776465381949153849872521553955506979970262276693096667399641685465938264478393954582872937684885878321847355617949295025867601547080983183442068376353613209589492548531369422064351623091008404404552294730679488489555915970706106935691560785495854344976506430397654506413540163092178834107615789884202913487743476680393768342795959146989186627471193349099905718673486786408682489956982496196641342123186931116888441123493441981001878830444053880056081893329904550568850405155513544107331454479923094104859494541780817078587!
 4046331677974131553145499082758198528373011767443837893475491238523904
51752054366388793747735389691646325044097042400082579235866516539961749462893389168354769716843332085461264547885076092662391890967306250094926640434090058242856539193601393067510658929442157555603762684354673535476717405327728861018842898747927880263431427988347480724558193889633550379910884232200428033745649331773254657406858769693363019029857348278940056258140123709249333750083519230025368019645353597190115695765416105350118923966113876330307323946958959035377602852437908757268694009107592072200447113862805989583780606410346269292477276633749311819652282075311272936858814061051544143125600728603001652682831386842565277665381200298032117530541925675346156871916825930041428605267891230817804881192375885138257360749262910937072005303798354035856746738617690224489700524600655700055655785130135049102322134004291306904412133835289291371565150943086578027824157463237819172469366683100244305240503148383973389160116740949125544080153010439886808620277526964306646083547850674371436!
 8408494613000068934186405970103525666461476451906525163949327102614592462010193016791092554018943645133640774912361591483606883925421933622119050851765785744896142143853296994699481661332190142117414268443992022397370156326767855645341051101093151410058267060749660369101038078015545483945191362360490410900402298484517769873577844949583140979639913285885278600447113915939278151617491061837574690499060524513835425176578397999135140169504365836194013746858274984873726905607458185225249485785427820669170250208283080626123045907014681023219495698745697368937599398473971376375512158043063074671193084135429992152263731085125144195799715026852681264911768354596565808942828225096447439690770868364813632750941981474217138564101454854256742639885123542998287701758676628872230981828154393533815415165232856293487924921419275836589395196460151096829826838678534814595833948458465236727263571023907090939655443607431076191158878811482700905778163885257198293969090169471156497411211651250492!
 6533271928037721241151916487783443294928032743797882010470526750155912
42855507177406441963455613244426806774845389693361139431235490744348955393644313832508445449719502567227490309520126258031394033681165052879105124244061373475788100864419267437893982874974594376888548038605775461022660244787448983137263675258448661557860600790360363978050213015565251228941286063507581512509310424558587544783965761206154259202599922801614675949634330589762989652447607087828592420897083400230222801905072713105765915666805079628671384567411220464444629488545517117668703979776179260053619373270085252046769273707781281168373048072631156538276780753748860553208044575955595062262494925716861855267869255116522174629558989559640976858937993562688145511552946904246092732329506900414585943542867234324816849477645993883626845884622696734854733483157752697996072551300444851545385758107375404196543847170848149708712914833818838923269627604491585368151060274968714486495468220845928982861464663180716414016882905009326922010717705877625466318283827702491317819987063047025394!
 7316187731195160068192129248195275142680518454286577646841490308952345241575949936596158143335691387353233002235783044293218415357841025556160212726463584297782192461397805259023327354992666923154391164803982085489900375018622364890994988537978119458543496072476853583568870793602637107095120179016669637815043205768625289949473570268996923989879552064419198547784141647063068053747428432579908105974472099013100305331580590775653943998874269402015515503296254556520699055493483548117744755446538400761549329672337685264913164823298359887367173881773329417969538707393717373069300905750363185449556732648458893206097979823729455561583812352372142490079051976028954421292115733424834391052952132938929369627080270156064864586741935311350447716477878547639986537972598856694056554339721716936424842438413407832042702354818517363883282324496669306912048606953084075799354506487352624921201876894146959397128730004665364516588111105033271157503500526455380591620839466064880625521421453053757!
 5764954304721315925271575896990812775030971252580221768082839200005189
99613373755436832755568375916714003277925130874738263972724719921575736344003079519103892764374346404296312108095311313352666845387843311546808453900748868390992927626046861707259952142450656553890207311886648358643764192768372780383406734153285256709934528553277849256201177595560262783430446755993042477437735560901164642425982631991786783402247403299498501075916052014532554164354649626221461605370982847962920821327456945384593671513973722068867989642851054760115384645728753836846381654481407464618410273317267339680701748145410594158410804787836408131741881521572455504053772118347777427539618566890814651090472112209107187014521799934706256363672629169874589123284828902451966696360861136128083471206047060828241506972236413065847183075952606783755091637913687865630920528492775199943879959668088276225828401251136995793172646086556141759933353328641782642404115857477856417179714927478660204427994841705089578111410302839230719055549679062522396957512320821597867420368420586547389!
 3331919405120441779982545370339383637431762152139008015474230487381117829328766303269710771011651362709111024149987238433674284460094003463552132819846331625767268279955831699513925411445345907132876852581824142357585193277311409108939556267143679796014028052502303103512415542797740862794367529982398000309519099796904841462379518378110566305383714488635938521494622766039495580446637110128142804166499743516380849438207977348460111867014210585764150172346310759837779965511390031935723006492630486196549127269861704291102246869361794143936942080999280175205313538413093433090423392605302812103209736067153499703936625644013276716364458038434091788839212477504761602402446991778431211697735530355326023292507796953065604509585248914901701164485312018307033680889415647654744598368700602177301592777182715165802517624869501160237741358481549155442092222276197269412385149130190662761666828744549301761108308775652966265177285687005779402079337485358255529354768323354726559538627443292231!
 7779673143862465831176485639309698073189994111808747647284457694329084
752
86496346331922893910098450590632018505442186725590215821331023159028270040771636240318064737808785296368335480725614264022434545294629313088121243361430173328981046177400002977609415153563261405917586425989070711038402080095527366055406606395624760152004373879438624311389585442204032103467584287240756276984164559230920692367138980184518547149291003953396533717301251869623053668048404459552319601421020346933292478057434966257000894787728883306491265985871044718205186472308615052951108397135374525281659756088324025732211995880413153163435403408954275460141624903928848069900467655719437745551177070876817812521619223001399962568088911269281407861019687068309024918250566892687019305279765257154587745463622991119075514927899947331698330439754083129128060123675624716212916230025695505842020543155732306072036045760794361993197305315793058628916997018246313993913400889040375489978554373076948734873380964551079859699750400112705009162115947684624953583981888676465750890810815387940996!
 3656502115884676948148379382095208607512765761108195591141968911098920865185521742027584750078329223145339407144934372933160619258391298383018999152160834307763115489501553383845841595769622186366763925821394044335047304604386698716631561289811935912714986708883899074660889121331682170288181814525384520512821955281359603946186450031642793395559804393681497949395934181103165846879754198106772759613487466191352117959788672883688023533042072064887135733332242951338781535407810832881578887819169592263441957515469323420078135376184670667740804348023223855945745711226730870254199926206363090818973711266317414192517305522311129831035323871775751506489436741591551552151765562490277584798878845964305837403719258896849872495231269001958974781305670660529407020616722052848389836703621193663704990489338029061549767453517414937034524815095477014473919266619022806233567898940292154118381592553286753394693555554045304591545740975082986135162096087140228259210242042336701851484103808784466!
 5822802955018816606641564162624273918980552624425159932589808368725329
83984166416007024902755759844598665381154345808659115352145298045152721712430683925770382669956288490385922511609339816485264080589581162873451781761184154532533945546737951564434632430508404942278788531601096187704971790366548425050853156055796317670967622013488127846289540777491411695507855008953736355495863185206541099630440965536094173537854720541384802896696856379509757375746881826367286447090238101659785189333949041999131201330000110674154079280048176645116427549185154697768655937148990929357851468672714493531415107526714357085338953034894800031993610203649350191036036236386559399322787734904623640151659432897753704429950760999867118490642370041973651154705637597140735841391680372466511238168861392554000356571405275162831286546892195394808991978146738974530772571071497814905561405926667973614195995220413358411633066251723937712902618730086152542088058798179710977584282068512298194592938789552939590458346242060453723155240388672190780006445455940474435463270042574913697!
 6037249236671946330075222474306174487145672778340791093966824170970259986248724029219315641397336073089145413099307396547515859888814606017418181847628473258226634194531427160453486698339410527494478350671024703135578882441272178961433867379064168772794132836613638913988257485913053787576413111080037424714723785816060011074909812049900135715478416035087699339606059617995899768373620243665938494376877555820818535396564266652783006658047728984180156076396609192567366497608204269976062257179969479193582057372860379279646649461235861766607444079055236491792353437598586476384482024608202466033339754386001732907677030575763062834538071224906406644391538166092003585858391149240110517062954023344696548347137074507546623664328548125346324104825736996117225193868514866260664919940656054728227980847434383934827676372270882504907998619483033860600829207504185548662964677810152912935594092332469597008127941153421079768831545724594846881511435113493776007668558984095564223088740218418651!
 0526534224948517506998540970669642385257593218157086891182933652074863
43493223384249293859435465331422655798494787812320625694529782385527310243061940851078762518493942821893212583157292700154411698990545727961813351198540860983985378676007225525810002301376289873317538034864445919189557926620833926776758711386080283385972418952000591963915250127871645480568687383322059649012391716025572482328277816584148883365679152838333030148406557116414293320010083281942149961411977983859201706391779563141135319782012600286538627687336931355417959242844312040671441431809621262792704813703611254723430279078980472336317665045996304791543343679665880954460908970444878908554800769163001395883817585453702782639802908750594135326848092624369281255672814794536191616540374203604498337511716847366048923434526398678966639873063406733485842121923433186671990123698143620970472474446338659281826530772141239478588552099694620559407458206852471057755949275277855825845029883954060116477179311156661746040107861502629769140404967829575492172845582342136313075588978260119587!
 3341620009796244247096980576373170721730989304236100778706067420839013206855534087390486237952908249374052570178480622113151814971333045232485970534320754845215284551744745220273492985168990143673161774550980236613005592045917001014446925113667606064463946939246411810184396589689288233711423952706995928458272803566277365758967717857122385801500982586022319159944243543233391580492883280564133930911613229294563601178311360399407068860443178833117678058721287769650456313266640921345597360412917780894520446228812351284412586931211596823484941543094729639670286031896259922018325272931919348931001459619916434085420877185560548375676240389758796111242191858915781021926964920342879370241633256052747119098652035649176310610464449948678134796709758430198411856454720994113544343139732183354273344292848191953410898587494634835532870730923368984535787105455511623823040188226901993852589725596675683435036682426927734296761127584925722789045144825307743403803442865736191999683924477396007!
 9435377871338554562558818368833476851798417113822130179287913285715423
55753804466367535626489394063728379689880128046420536245838616487482850302514906808797028626545603268155941283755910935731914675867378515778354260231638334332468942912059695829893630125024152162786607226486796429505705044255314992064517023717287498041614384017375980336998487756031550377976178788941085829704134204987273747130355461424280558752437847158430178028717194939600437472130627282628116455669534565552160927452697359276309057648202658584984404350245441643449462121610345149433020382572087386496455577802120755967374531003712585095517008576558346009762365390416510619059123120415636054120597166830958046741637162103971754407255088618560466669033474412924683620726192765590117148233542571495505112037055462207462786801062806746543136680741831920852873489076553444567442394805667674741308817243073144973521309555320829709652310514617044768369225479862407692457228807911260400395521271098495307669681443129748460695389774587659821365092157193553425284896114129617543719284533607192529!
 4163687906226308646992070217682575480117069997455208949387772318176060938313770167106091579677723550636178604958729549684073408880110173624063077688491878290357237821191445369066494664537184505993975051237420717714655543020133572109917890049575065938879712386469124139270725341922378152643685101015143913405548589665138490943485490372629709791995739881486753801224130403651451406052324158782952121212214529956554208757298787850202654816768408250658598469178641884544995589241613846313950337784912189671708255524892702632905593507081229978322990794693245992961889454215658506746031277655589055381598570173271688596055933880729554678400627987103059871873680331920075969705266424457951182040374536662281963682989389977406843883903536721838378580606072514980322397233911056074709716900853947560461335565941284077014167069854715217637678314578871772759986295104202579039664143814189538259790149292604729562407656491573814457376358749337505129897938313809097628090331455225988072838985867389868!
 4152244944474994162620981528577283019010964588506507282563154174008946
463
45316039609103766810957201846534664496672204851456769081590742426213518025960667910065872296312094397366013885789109339243759278144871665867726189253842678597152496100587821805903039215088061000120355348815560944990359482346579018618774836635867118703779841861757280119568273902633162246752110327855985723246704755591819096641084253830321400447559510169526197425522620946579950717880749183718437311507900972516587280413163029942626726224027159015336162614551990217822716578511789810042081596197465038045999400930262462014903065241332865769023932373325468639843829565374965870222391444545553757892817553018008885427624357128745839086553438198727409098952332925387957777736183105376892753320338525729259342805829670538923588836038935135667676968516984566598870999897893516182522794707635144019738301055205970413495399178609788405328556337033018572550093940450184142324876754502230232736875080332621739202283643193660749554975301057724917926868098844707852582094829530680533398197913197135766!
 8284632860902934054390385199373587338145929178149308910793237943544605904637137080498534193373081190874639131121744966982644265368819096883322189161866852496306013088143135857926450878356343944977997884737883213445410634806927827953821000811169704756153315600218002811410314576619493288229329255560083773539432544790406707155310270235331268346491008682084428592427498928239417094987066331687806426417927719960873203338437715440090332316317754757722764378239063424298107384284989285423431765807679753986372511790396860075923738215333057901955253375694802311337535042630747729622022191593977721636881070725034584977436465513660406168663246896806869544953018370081201270079490770499251384918137246983198193023192490256900656958428117005401319188377232760310560669405523518321187167991002376915298894716454182574509845593453975993524942656486729940488606129698668213783132725170184255537271997304405522642076633797004870900416935795940075286961011120780422060934718002726031596737935936311933!
 6270530314633818548561829994332084764933416628130906530736310067146228
82468634907402385397523654193203787497066368530492134234325178038039273934296550779088410252917537286005938449842811109973996866662111020058092688866891943112992665608927109722588522420372591159495850646471670966480104583814392783142984405025484442752767817302157431872761548030748181256749488348721115451551843132902459767852712291099148835693074405917062846942845334842900235469906541750866082834805341185379214733486452937887016404135658682137377682254493916586717759573800116873338942535918320698173712379711014458693502023871565617774677325149302152302641978941986413730941830594665780752175407905697771698279950590375333918390479428689498396978333886989670429642638010263731561978168702144049058321233362169582287004620437279307464554424049575384436088700754773411486597110353007526521295567482374202138103129013046769808871881218922864274026770664200257198731383449012624887098768326954280302855605387286976951607944315908783790224743566878696617605930157453543892234812197670142960!
 7585615862929932700854767878424112125856757996840826253565320934338833547310015644076299152196264571910629032508222773536800130222414931111260105336498261739857536722905943782026749657264680347053198856776805828496370829654063876701237291864386254994943799580025985690945191286014830160295149664524984682300431577165182058168070464656973528046914075791761557494297322222980446986828110848690288650876234485632080278797188210409986125632575520493027787382052958037512678835753991913552578518303667958643279267457692713964203359205815242137621507169893134006594468700049734927031130332892191771733662681619396491488207325721086491591887330698396095348850656619736060826424509970167986627272741597830264019599286747534533569803950056765514738445077787297912178470769094476245464513737395453057909439034348626756388983465013192183047749959347970424017568439493522358775362271823299705998620645642562894290295364429634500720272758840270296562030989787214000384286070713337433406247601698770497!
 8868313201966238224316487325661254231003104385252875143135292701454197
11659428340647206008242760398927462423738037589822550042352078838458058453987489999957168331533227670230856593289463976516434472631414653751676335397262971942682721077831681225100624665077058635108096511468897598986485551451286509810013256040946209038922676193748630183732027682359769210154993302324708242980837785847932512232913464585920222585743782865206953184219191674611972684753889771398390516858690059593274718580858295319188900758139107218761585387673827611636619810081961183438002722556583265747707199680562168493357365526817713384278564580665125442329267312519589883635745416134360208483163017782037322684923673148169781737386439420085053843535847066501984286336894852624984311274553582023107963860294318298906197229401523308619825381575450636647163870393385157761991007227088116734205639818766178657960496143170989095030787800749400975870790604585221934479193166891129859123773433007224151970547231443636517193156007055311257484209739067917520962541017837372447074993157815434313!
 5460373647908497691497391657705382865297296104265139429243594645420437610515351840037944998722654377338704884767933232756440453460739208247578023380851068563123976779207690835981381734060995171347489836953576161083250619999251453692208812425284618755986372902473465127854221277135818686914107687274493146789370076162224923773586469928637454162434314167901937718637677890413327067629002270403029919194021461159168639789233079076066299257964651115290337955080109542420785306877229759567684005312515990274709404262247739967234905658022946919332056900784250462573298680492159951900547857818990185103957629389805279351218914050810806098878627738908584923536263291298846860097966921611967370215456886317795498039249753737795131515097259701283927276658303954972829471637246262005111583829738046358168266192415120019777145737075094004160096170422109871327975993685858643476010270734233221512629338539943526750240931648525891208854237662617952657779085964008646001185720367276418115080947090196135!
 8775065139668732545035606942187562216063233289858851049134922415666540
19449247865924029010948126476097825148812830905498194732699941110835167571101941330161641826554697154403640929299397693826508241355329830567695554843791362278738720177892637526068453923025274385615714408142920880490533497300377186165198492988425211274334089795775601186927722713652654425921200904540224463048401352172803617935255566191201927344847552170787094442022759106331572878693216105588506139235463827579526156513691986751961840788933506600915043548686146130197119666997265388173313873189688064650821945371056931327297491836131426424900957734477682095925819320689554913764276778440288841031847623984994689254359245026641275676514868726394338719794188530158061532783792667981702985124623275389030708049786907670413256564011620013006280754029994873262208965542412845458340174565981615125218377959721304571053645331217059004270036493017750983539991235367432746249122911806445197237075488353357349941873984102800972300894565398731693681311332280872054858739032093835330779500528486034169!
 1745902387701023093203870372647468444051827821891124710488380047770214923616533577143218671387874817452169566055904373578645225670546538819105363801268777007970588380730745586899276475924307746007141214951294578895545245564104972795015106449450425930510516007414956386768991619452775571178026101770652653391034503693128477517999501530257402316766987046774838049889762348688327377476026779802217636984608669923206997338000523858122227879088986317328091551047049574491975518316510110376551064319091810839867007662345620441101512822287138361370299729352116633841847972603020065600469682614192264263804619401913634958207805468156068864071587117530660998344352504560241309932472828708194935573256189266553739229575485804079315913225300740613646721131868638431183649695263222361518087400067344655059836295666500557034009487710998876105851597861892427846283424849397887118732204122899594490053789095539317416017860673016437163908167212709729801328502407065749948270551429224405239546947645410294!
 1299708203131060415164045148076062340931842108417714219928065889958160
297
65844092784746917724375817514197064903620075110125884154921785680764061198166704707708194974632345338343661161202728335681552594436908612558926706475365161811133949617910400654491009704560747792611793185782893086451265773923590022084695461177900521166656578221600176834697673525600335872640908185272088528414617254755479035495718948428734117810398514761477571168244370479804098635823940966804036336313648223869961826854481805413185667601351023636405023844166236475146665351326275085863308333806398651819052195043103358733654436258277826645032474124771649906004260231686605585228545500336303451516384841141690525026413028848153631459212856197503880135517146572336351945687883696830020592588097999771102359402973456460828581796959666426681752907909771108583867047445796747416049841736475841037684115602155228391150316489646649495197808769399292115016083229542898621076069925050062580316809861669253223181714689045098273430277707196881506638564946948580849419639701347836770791291293808380720!
 4834919452352820659411641979147397542216599823664239171071062086867083903225843345498569304287065813714928651417706028858017756079026344990213812928838868244662035362909705524841155479699714545684262869149610838420079224414932925366338268760247472404209240640882302480719988468137777449605971928365397542820235539344226895481049807703580862782970524979008958875537849835696032176361884904661867426680797379879162747291396040138385225347043964738496676451660218578778012341099654117180378212339852333990294283499025133705660997441149547868548134835941305567131669130794755790618749872078315653237992863154152121966211769614737304313297431931336581384853063400532576176088133948861447172473980276715286001255340807215001260306631665881687277080271026810801232394661259633297872492513047778395733263470327510762749339543038528524924766999043753255668298654270422159293178528700374432730840695243429734929208567592935555240231759459414569192963087638880644882662150646162489020566651211894236!
 1474835753932269810666235114932562379688086094032203426650881657110207
65168232888861730257789979474089611125709050068852796972360296511777211528431184014123566423155671538346815965467787371920853152823579697842631700702041178767112768924724566318145654374780676267677174546845875998730690561023891919115670682505109064458156977272254112005948038840324662207843058627278907857057608858239772388034580578245566661129138240401676699548487692648672415950064948328670588146893153434726703943059737578001650509122613812562687923600687835470364489403773177785196858460433663956787509600229071150758421182973976670922632068432817060011192527915975281512486595714802942771155140958129750865419027006287682492931491748918582171718444364269175389197054389010919707403652419488143360129006627612973013854909256385593929839196377663759645526351408553053890511349413836327554454781574649400530051102631164781953207429030343840063084325798585987814923050493895258669617408485513516009187251492571076667718861235084158972239519970742083537683150076497114012050308853300847020!
 8774356234130508039811480235452719456713537089674080267516354293580876101967975601918081332025722446445663027900396408333552532282662092231102270948764676106318443545507649083877836417003337461184993590425894883151916636345298302194604065496106588461788981245371272836298027361591987885660161228037382376220140163695734950921940118419138925057769215526766811087070590304344445954063510790093771536533341693440793610364965854989191875953931955348510172788099343667897083759290801969700851386053039515433075144372751301089819353790017566682857413727809387857188402486129210147596640319896602788373101426777605561726806131184057752643236059716777860721497797823581141107327101262367247182294652022683197010408958780048142010785771194580131938470001493369296355350412003310524962519311741426695406895901483300930439706049323323319770042228396021716730180082397279188024138847123852947279258170841321224992036434999892370190661085688374819053111311954263867538412345850625905664495679012222717!
 4908201904452033282128213221040399550385848824849198299492246625238849
74600996378035412687061673457217924344047668668701257499494584816251226579790990771211123586364440700015471352959954511187332782408936827795587992655897788434170825838301886589367167452035787371376268422081151919467782441405846270720248219850331889162379577057669621129843412561022993271412320240911169493637123102062442015437471495368819439711762735919130996024440682931651768011196713488822680464330967926715361936355096475999615197102510423953404652517868882234336371966571762464514030827124567838265338240646171804191506283604878396549887584834644851783644367555329950834319796725760375487433175803935864611798906339662667285433394240729937137638548480353463044584394085066791466667792965312806902360700814150964138785790383929725963149201940332402762055851451667697576759830849938996017213378260799967716308152894794796115764575478127577926868924597776649031130837389931318317592512335586948372968649833381659365603196570023177458220902491884869047044083226891351507301362317314669877!
 5016371445175492978732240948505697709816187351647867187838318561554903756100508825881899515991633769717949435896154328558623955507585007372013257904473838831175272279280980085548056453081126264912285753934640633698596099287878118102390843330148517480362670134306658391446808014428493038358817406863337225076550042784434636490042223168472107992730230156674701044295628116395857827276074847546678315782755103236946030848832138337048779825448959433878746710167078787644163564058431288277328932807867783100943157027329772231466814150930588820963321501331386185193267571234544748054934161852305293218728572020720531286802314544388104169663377226276293649627977822063242765985405060910441089805727525220100455799106308468309565522988000534251926389567445274007295810125977802128951671477096655027805347690712338924110907416339406582747158594783701009866157567823056186090290683218379982444103422640244988500091468775978213518875393018006029669967644599620459672393271472403976439057338583071239!
 9720370683992205810203872755883405468321178022027794530099777284997457
18038111259464063933097611311114278476671777680971107080589969306762337685623530793436489445562420076507490328781477639021599208985632212276275427325176249345384916795932438078625530348834257002890161051484665198794406294426544083828401834867306820514983755672971715122844711847267753371270766913814024890194367894889551910588306895119485012468474923509645869224955073972993984652621367770896711281309787877186960460686555149653289997417531755067596801876877108372205178837880667831656726738655514963710777198091174446853896768360922254087495161547147214264288414465494338139987817933563677131484040844707209987682718304688896985688733198538117744254432869469728333263611748698616634164158639331282337747330035730671797798475260066157921964614400571163039724436533618031745593874613551355174309657607536402880299664041873815791391348227845364047738770528875545890605321439178783812770712832466031020536781066424917156899330450006643267232541187976180209554942550221651152179538894646378034!
 6517710447373460670019914814099828496235422762719433251403439080864959443189588565978159001253483267725478007291615474336858444209994767444837703573050136729227752622884179623800584253698596564431556245870419193820468665990076841630044357229776986204740300197897367429986326347814613851660492045824123828791695380815859581363567292080210589893716325774317287115734103317945490957794705247496424293009279141304973042859527025403218534196039952143451790512112867051215441204402199315885779859270196394603317000937343832782131179805830952631349641563875469099467363726269215509951419974059651283950091385763856893338725815581373241700160441331341039551662200397863667187389486424706105166170391523709139890010648711920320144384343730717845180562512804263657817965215930362096306193495295809821296944066806570046232067433817989270849622324579963810599886318610135228783405225100783726800614449840719147630353659836453486595218363016291330051830834199170792450371378743975121477203024459381007!
 3542376169679860794202018628929863217286487566846638668171294652657393
094
77125424804811328414562681258231394457759994927260789480607894852456499041249419270406671655339608486002943927763105322018658530860877914486735946408046760954496269120916904634949759952741479644987706191486043678375339855723147015517203836028346678972645674270545763362091512672964053147825157989351888830860600053285167174029909496690350877141545480927193660002249285629753332118759232562216542186347981526453640124400786571752789915309022812393784523330548826200527414893742375621129536637995897668174037229550353429814255617246768130073900852010344996085508548570405421345962666567434589124704761561445148802725512748511656106683424410576766020868238377572993854002371684660324341541642531424845329415644227976594220821620531914573826781542506925725775898386627738129128766637717808126505223102856490281012845141836774628069163610797593228804238449051005368099436362376287976543271318447242551523087501851263130196713685143194580031723858562526407809329010907442552102354250484005963854!
 5667992189984898351634856258667468778426507049953290103046451929295681549607535129718309970500737052132824807240351203202103415876284119063801436154543638233385388162180915770945750682284002232475988465297123088481575794513508534197665468665825967820830139734149060278543765472700445864729043366112341878709392263349309147983696566945860092743838901653400286085059555323302184589557513229971714540365254937908679471531046029674540124649555630818906590495393990298154682655050506806224089582836868644448304455030504033140854546460096512414014992388809955106412611538555165427584268330927628656245887171385444714614006053244811721357117624147618662085272759191561245669860200971922990755586183074118605519008959480680467972804416341943961817019958908392136209556812966792250504671329264110995997143472532136852753188776391764500181342562425385962525899663585032018232053391240903697483759500813526019277167336779930286115910056395985959641499399135586765053873355636493953056183635427923476!
 0296062088719177205291738505883775506320262740242240817655997169126652
50236471038048685171090526020642690337949945912164681657891551518243461898521407226340409605244046615583406527900854575077874922653042843472000628521494110016378023186900324968816734627985755190933204731149854702659740558280530160625240584944235891707570538140734027578565289480465633955356974364546273719774477419573588035812766436879064858703125390624810529279179426875421333033766238280476627441388609218058987777998809973107490588460733002413591002453037596056696933188750482375345575501345869980968911692206433851165885260513462612098634744949127827261545147744762507299449664122986398742394599579210658357617024652807186593448760952628407920374610848479909378633261079633536664913658452523089001422231530544981227158460676889271127711509887112499956373644266241687633439363392262028439277547857157997628287547930142642719818723251105712624799859512064468984608155409385338869619656149084414737219609012966575284645493340313928237125158217836617657193058560483820595276213692566539936!
 1952061205696206336542724577378142900150971661515683309194916927558794386764746161059559897254180795551240842468258852878421292863465587455310422527970423877721831744309610616625344033696661574753377833407565393537041858123487420160635694943678888012109873405353997955010589705851953231083771924921143558828885629678668230985110589555692584948186606251446919804830740591735549339255531341799823230659157141843046664709589523899714321040502824881924146759537475952637500584398160707353186008007374539260228792677659002397681472189639058320949450346069891443730510387423134674177079271831122236285244384579138140888927750938691619252084232116778507417000500014241427633050864405895212924622316368790630415169876115085639322753610340946489111242407445853575845892392371382218101867902063236797669997313685840694237475504316609170423718339481435162008413445318645280264704674999611016988739587485416835390208871791724861775476706677541918626165910004700337991670576866743866960705285629637263!
 1068102882482977340522485596252014506327880090880212520428186050836111
78109455936779132268826823832025457004150743257260753389105907902906229531251226447505667631268911877438352063925104435186837256495314201411086899900044288151792866927077921990870689332933155221684333611996852246712192576342886081808215002939345338868956051251369049983683700545653061411515765231649838008497417234018402953891173255852365194009332084012001736194269941519182085113748179618379912337431903417057556587524196506083836237361161795211630825073254616196364466394219445196400414872562516132055414020232085061869864948328558931677392299629503680033774068766656268190159129520787915696233411147775256332033712348613596228665246399141898662144549940784067693837052792962052789995843635561403476805831420541883690217138483289093784844607773058222358705900682141257940917473449062423190243980436925751042681409323182342818489265772290227011475262157510442391632209194682769949116263962124991134774399236594579481102854929065146194032095628907384190849564703774360727104014523635784709!
 1959630472442450341744979432568492705963056999815221340515038186655738430301019857891782862618362954377506822885962152225869022427665362512253215391979334569008502838626577131252610072674263415793309093496173634103997815003056370530237048010252544091977390093137995665394209013475513552854978496482855049626253254632987940841251641325789947806354300867685304227173850183540926810447921598020618238505305030905371023292189025686148668175639289631436854077154628193241498708095315274389896825204892710197047584313573381005744767853890119327277707824869570985051717548180650194902687807852447920142957089387300384200182581793506502053673880009303448919395584067970619862303930201941628937269441587210158171290375761028149906815063190709172822556483185819232914804014269305623420914969836448899604968124133576270825126156439249618145974256255198056588601741319549892999213139490767330576509733113742700623788041766559907742231179665176209170417371681490919714077523955842431741436406833129578!
 6289443732637055435386221631772052621026640654286324447848089396656273
04065714339742558768329177772797806343790080189556635792752696930977696346090019696314541557528614245821905508059842357252502719868595486948353326198657359132641643336089395575825921031127527600168622993634411752571815289385588840480752032823553528792459713865097231737801341629196298769130290144237100829755271535522900404356966374538089998900936351893834858591085637184135309009794506972936911152806060709799518356533094031747517493416570807360525655454754635370384870338270272852763416636508330331860656059512263671887505049014746554166827294202831215701988066472213472665263914818572461167531168077923674742969454117532210681220907465768386177544263619627060726093608062212567420273102753738724836704590074736570898169792816207345167798079835995754995229388468612829344613345398220340805844949332125135548556196840502365632182350920687697826760078128077566399052343800523507635653383855633641969547270103510759927246606864274309650945611974442729960641737647051683430274012627275540329!
 9778625000891872338391353611031170931276599519659670059995524994680303403948217253857754469587029827804350287154561025368193199585413597758181883726310730235268775869153632132142944176785038969217215766454688889514399027980435436648150380891625912551776997909488496845822854290479383806320901393803667398525098466087188284619523424555435734875302437429402619761518570847166647115324764597389463779460792109451882897404370184506145934096003395296373470804740502022673359598962434320353543410167670464769587194524190995959598923094966975569057690046013298139996901101017889790665928244338934858946100103334293046971490131430895518764631492532633003783470245713932004057415255075296427021420859721408239432102287684243422540345984683625023637886626211421402602163422894459277040316530671499010672735502515433903465687310274318180144950398536559017079446874333180825020386242912523397871696959620501610210392845882825803911447734846169137385301002470361036115208281466205829674973231060128814!
 2261201993821013741982781293119529108515060691868578790786611192281560
642
12434331775694794907596228792191997887270319017372647630245819570249923680472524223541240376859270130812480873695412900272216187487794791292706639289918868722701374027498338781235767266149708987069885615934628914215809333393014634219430168992274322031768109633832976460429447424013644185658762505469470580949746689333548025153956804626295105698730536165688125827768103589605107105730638468486214784930402582184769121213816412996352045747029750953594050966804678782755099548352221010349266052868875517608878108599137823790420623038906864789799356912974910552594729364081021826135082240847363783635428025469707429912394984902424175017206230496405736647937249176693339799110698643659795859007344031643484156819925961972863913529788980570676687770447509143877129362705948585406150905862564572949785272593613370273224505661072429852780110275946644040479367468092203010223691341353891422028825688156566330006679469548377992950767262449367122046333725055725101837990712007946801518922187248892528!
 2841766032131130157977174733667118354107390955026870770070712260804845384853819311434313599740699332267986399504964930059318862943193083837237118209809523664926807976194050522823952661661294722348781762007397048240078551066412472389369662311484484577767399120247903384990653755285178796248844245693770825385991937450445103789006094696792143136747329375980365691914425637794469384943327346897667423659675532889701829676874162273165179706216489013697368004883745659635828729589433149651566557486171678299088130134087009202280607222415122694254174962664605113833331980702690823094542054478723157156436337703664429236599252390467151815469871046613753487104844167830188648029448230904036767850254531341625451287128127275046305658209441120455650334281837985446725378766870571170032086936152566339116791302663347237037179113627912866008286514412363998300713857584013243573177761727917901665985285169366369293033688563945646192732160784065916130286959648699243833386812024624872594323517247485159!
 4399725544002177854261694456193073671355336149142065187919664162266840
08801160964322947203419132036553179363356055175753452561054367072499575481619176867333994281143442556440653011067390324954559997311194713462780111853554528435241640649978063805277947682640859598992761406994487320256745244259110638542599205223171298171577512953730046084635827325403907407884672169606202791558814455811786466649578466471018537374818410010996621741178158669863033810845671466522005943584162506218312543378248357065764910312114174441480935416368219149298344906016569196885567272704653517862020306910184743473119136891126228765929904518487115977805178338556565853569849296598330259917085030561297742801950214118281631730484950913121488921368653442475292849193697722700025691212392199031078799340829555784096747259960829818108189161646743145411605334882249171786714543139780104862324921013617638299877853108049007838169034401146497215503366559443928883061734677046639618615833285659539720815816742053051116655665113048341833034553052696215528384211323506700461415305243634084306!
 5145143921940279498666038114781315453050620983430248799603161590327885178716117486387420670769691616698781007382522010605879770102577021812559214184285996220017070411023526247251539664589609207449606922148983717981173556343127430087046045918865418428355285758027267288820382030742564551215574087258414459796196487639840008633719567780581002379169884190174217931909620930019054371399522391014143823058139079892843706669119281505080553844337020307994959105837541847634142454572279529859665673487463273959259753490692657357353747009839311997969025429138173462712352472669766587944398196384503599488420923490247467785921632517271069013679579881972222476610820038279998333871848469164846157109384723733514785183296830533590288784896473000087870966739789804106110990708127063753349795225705962520500767908135584807216175687726620755577885014839034694266206331102624373711170914783847198237434158795593334949572737383997147505219695809295253959090806268193632178096098385764361064407461758019782!
 2923581768438857054553338115693780959458314977589861846272860796470721
43355205377512379845496694240800266217313730003149742651993918841156120096530311839478963865635654281983916114022421958407232907411292965664179063456132462247589641051534878284429848692440661196747741009201248010647749151195400199733791718235901223997120928310080121855951926382106848749793590006255747170832185298049297161997391821146161674716233320789727301004089922193573691046374041587576074117315540991422198203817806184779691161291272997241615508462109075722254852246769495967756171201506126273129790905375504442491811943187884873693063576973462680339021654576656621720920981508234672039255651310395580594254500463985361000632784397242987357111062820697511679692601790290667052865604050713687461727615412884775761173448732473823681682371347265402909915122199788917177418205079973314785944779369638996812977536374707245693605731325681341763753725151556683911856043558924378037906094806765465372917669022974539163572746491604117865923342598703527662632746972396477328176105014209895840!
 6202296184053754556313813302109130360478048242658484985563927150807471240341717379364259856241142136648496388799450972075533215396968364344065905045636642877978441232778654190471469257006753165928049209239873991209188554539246462825748218001511064055547987308483224711787140888713222342219469098458634784489239585316078136786123111861312239071863800353603590976206054173116864942538818678452443711012885098064054009488015453243159828764581060637989623355462216983820473748814017465295990528993125717072207676443518057468476334834808927123748535936351659398584383281838449746826091084078956975574330485995531088061936814579206840411418592300229495935031251191318717986480444780901969584805303914463919566738909407647275793467032982956752213747026814250547620655627247339713985091971339329332494364657379857495783036520740987926103871296192095105153389055724398577058945494168183022654385314034902690393950273412869345777386423153458702942608002321020203310481501024231242789667194960716457!
 9535496962575979211249611076995214298104793381793597487512553860583699
14870188279746231363524467561009315955998508312402589470596279499401494775038067730743069476977694269739165568706084526063022974227615868449595901569149551656148596447530223787171646016659630960746880219874453648915209708906889001843810757632943692647011662541289634123724367581741825560951065323959721897764429445108913448091126000857732165522835801180610352840099339242540944097400667646531397938805541310859696403810802096852952179325440802869503229643923191578039397099790729565677883278936834190889535816126908065260170729052360657696681262163571606783205386754516126090297841114898392793736796172901426977091437277136052919785702585331973985885846423045855075839960514250764775752681727074693874955104247621812104394300354189023469459818095488209583059848917049997346518092955608312170961968280456467146610033509967206709759151660289656426661480409206512009358456018114512493073482040014158338982349582333075615371719506414615295200255739188920500953855557637135624613243209286637276!
 9913061944534923613435273623732878901864894171368713728127606240120211697281371164501529768218382019040655552033504428169437471558364263818057248748578581396339471697672019997357888822267029176328220165607806589248354607870713044266905922555472615691954114925753532753439564688731052336278864513533558450855548784837631175457932456512343381512263904925044699935094937854039484992830018331650247625197672941984728615954757094285795155216560968820215471523692993844292928139509552049067526889885156571028645679015374309207065840243769152804527271697250495232919481574690324291982793552016722268630895952408738514950924928315639211986249073453291687997071260639293154918446702310162822052191850021781277971482640153668280473846072634247307490899590440998044606391312951975158398461122534714961307660091546752279360376612333805723999731319750654936545636675501203505361101049768026393096794320761901786730937722185084773062623981311117797877226612005465827244507948537810770148915392547354559!
 7941920264680464606938185002307418669942786303036852561741662991223683
831
84396657533164335505525979166690879913800786961855019556226065178127130751323831450249763459011891191992886556901515329727673998393367435832710707542775594995962025544288577428234586076929990486678228566412372091876693371559530512537058784640329587102579431756271151954761311018115017614273503158541979352448960955046834369091533976962465745898132121741339976456215623818442728367647797135238791071315212585079311634517959814575689769918795786526741339482793371684718743831091746084126114666465455160722561054035418458598374025752947591405886911269351876955746689418532705890048954358962604920337866846041340322660856334489953038621744301105168666761529077625743583369179671351919588430686736931472696566290175164184219702683483927982289878274386525005889219703668051372303181697813113538716039773369682340639978307112476608939099447098394938059166944040686781543489747968218354249391047910917977429010138764204543586634694458688205198491379458915039675873197897042915866363175790332086648!
 6399607245780870161039442812516019707692355709698066988375111376389428665692726021189237671768880624122230775154741412773244704108360708954176291760067365874537026845480587204558858440110470001396777430349055694227566777389614789337781669999918518455609406014996391438831321675816368904744038969955570033156082296760704554269069644780137556567330465762292123379965287693966889517906040308768038757634280676260250765097452111093949881701053896483467029635342653806557533970599694283025268688833610388077684335185841400142982286145404567225931272007685512571084785746390485725775432632098892635968784441430814135696650424024128208279510866914292245978716316841055831789328555605013362485926979628100474247057443120931289518580268575564785219822477250503973349885805159691481173613733947472017436595805645428548233480113613431337803278319477696460340492674347192038234504175373291253872888912706200062748411631591954646303815713189742448135360410202374517238833882982917328891762404371386848!
 6957590674025611680091824665646381255189763216656100647952266881765621
68450549099411403659180400913068885823810805523623558387963386182088044394973732068499086147002476098952472733308237029416866892448750567692685856070568760622017030169194824923324671982908560894758580976327960105670765501260028915206113567607268280142193064612597008681229477127541596268488304794912699389716058652075455890959156454491384659597869690993022306284570114899588880967463104556978704773047876873115065786587502739471643268189840198992796818176057564630945252954791018722898623701290706869826878087474934369957151720293932155911265705058084489846616062831125783504196417535250072469548008790892918167862807121671215886249901383236960588161913230825626741458359411223549049381503716062280846294970146812514637995286229926280890188182624701762186784439561941036067860040804439004751841985209478399694177919164113781487146224021339910829163310598962756727803631821015619721837261861841933662955429408299784778897891806414982746265352753923254784731139731599889401757194870384306926!
 9301388044282521290701291923118930802666806486698699184931926426139487374966422153474541222438257782589343715286422874966436669911312730757188639317051901363874806278031538304362349888091146424576634259762813700988728238473397274302025103114296643876618437336330351924375055098778833221004895279937262245889172376576239669921168374007756131154887058940195321615068469241977667903694263808643186114462982814281680657154877922972240103464815312210427170884892821972137239954120885318100303423351718452134576270175688212497198963201121848455900128266864731117988049927894757842383705717385123054677697765440390659919114391468432675026678790645706282781173009317644741373945502811103939521374615614525244968755491428009102259673280472613164293403113614571518694083125751540238528674308438103715429738072566024497105934098698746812099074301880504751653063152803566451236525738955199452193184239411964869023175381837611315007742252723286295180272538870829169222063886645004561011238156417605272!
 5427144500931846050679150856680265252412166471671072480679867959557858
42304819546977727003246000361982295642259642731958778469418450692530608675980255288356249750565302503615766997898081755734440543448922077410231856883059836697808978685392503181696689720438895892211615024215843107881126701645165245609950802961681378123713996359000361195473327859007366144179973297697690142791852091656118139724903078096017838458270415497920978581372420346779817944314027364073040468838884617861262719816117367316977212062210097715501329932918712977515865288403441882079158145298668029452075816645292510406593739087476490178297212541360755399046515329278874472517958000082941987412475015686690200176963874752486175744400162312052840141855407504325631678199308364091299955711943111683500434626822768975609667874040686807595178887024301312197691297774416592309108964734030535365578999222654584496484236668733222794300708552871866584254801079569699349279417501233253781751964577929479323736250497767018261168133747767034023208341194048745560665849181993167055907222908405651722!
 3690854969557718698494292548877745663850443137651739363111214701975414409322791315415440442547949960293495710795616644402861954544213886577819027041403394710371834487645832703672699879263242616159086965132361227837476010253548429435566024748038515713991107876471143731228652350246261500827848391762857696623804107318340885182222942980769366020154980539108917878741079542811950407376526146966004766953663592918645646114987545209039768948806839815383222066724041278043728791577877804925722477031246536894775053833872221376158034155463842853475526296145553998869138141099996204192602372367399751359106026646873320495264980206348397121850316343572887712453111400446989719248443657527268533865361737045193269615783658441319063256335323860805659501225241112463295181858417422406373692778598787267371269001406989197400106914674314094473086418733125761123076566174405820896113367723091073683957002818272947150331634536114978412089435048958219281700544401501471868436910694489534205539159408806839!
 9710638828867837769365340660584107284697707668668072098419107318333321
54768482769196285552217611892354081332673159174118620329283846280641721080620057363995303556199525313317482387405010755678989622082391853246286009543685855969209499176229555968225907285193042750998177559168180264229925064155130649158786980625484104060757962389992875343159336771437478423442511302968925118066973718935793303992159414166285792480600200892188887890526580426887132349862215320531243584457894964231741408801611206777987808621583152089015727646563262264493762676099763826784515454223807513124416355070719079861627536949988243057326387733701127938506443042406117272241397541822113638451160145886616959956060982051747479063122680161903146294385068141237462604550851768666374892230658751276970985771018843133567266802039389370971822547516613307010559069585376974533924271790758138929861946400331047089090576351182375097315836203260866011258325877741309523592283100267851573824103429806037300293194765889334803136683367883407941522735839640383330843849580320079722216089431817358207!
 2822286598298710487666637759682630777808857563790220393920456847957135705804996551592661799954999161238367825243556119663530840068457186361605185659393928449083523460221468205439331720228113113096131410813874879599189333211243173315827649629423515723059439621048858334792338639045879687507259693381624675964289436096175485289292958976988096860690124947115267431230761607287720713663942659536484671830708326357411622191557215229667352071213225406373001567846690461953833831717315378676917801636515060045643778540752366759336675730873756342438911086878318529540091108170308070189080472210036932039583404434216213188605537012782077499995942413949222453437439658758997021600840249740723549034086963958455193846792080432854381238480535730508895142697637247098100097430130704738113942148125897697207369261505074553736935116835419455011184211293267353039503953657002969678952576405020348807455838946424977409958412438396460471627569065231306454516743309271013876580111086658736318426721618315742!
 1269304144296900461352447502076211524662597048664205981852117400551269
595
80926718952830205588434635743493562592105233045987494233775797231137961306445758479207780229540882685947298228737792713672575226736152913483112098682836267894691779772715472548280337563511623759515681607882029598530143370660055370124110394033026971345277382278659751091103218009748548232821388654145567564102628137834060240827015526768381779200229244368652698265708397476663316307661378115126468829118151311789142589210295536145250223429900546368770733362365689341904695663533515180664640201049873767008603719123100137259209101399983784721716219332307677150912679126307368038830606565446992714691041513916583395528697940668212122398703819822727290453156908711849480870153328543660342234099354171959916574094389997135938712242394055163354661500452825402323473551429315332004946131393760136165923466402030309439034023350259323291318863553466812782478204131475624667798431712933726020615087395313870841212793956972223578199415369182564206260743555395008392423073952261458489300949506979971931!
 1055706452152522644658885748080799889045455236188340219175451801569162718915807701684984535717028704867994985789324304011406876159848237597207882323838803074408381948167601664314676981568971305629418610608493392953194102842553732155999405841115954163195789053405377517618909970356827834430863951664592160687314143877520864025617561897877350740988609506039483525685810268269020567283969771261308727312121366580775211933053887859642783782033493715735509242958775188269697824627970711217248791653333926018402356780389563638077404242254085650370646778535731245720900060414792762144757794023529242645954363401496491456002466971005962925961781889438545086240623456390691413529127935801655919719748766376492440292735820134060155693732231406623861658308931411742987232421570733428661795456189635242420049791666917989306457348338648215272754498674051643663264882592549044614931226597017729743910503489267900659436463090834663787811523267208546518658009127056524392174649653663516767441938560094494!
 4138088791542266160621044721492210804651758913426025776838211811343846
05784903002030490831120514011055861994427359976424018397202333239988917328736676938630760583880220988628788628706159703085413289816111691547305127392518733595741643089030543959014079561017921791008532983352751997907786415822767660228122673223095569598657998224352084403712397642463020332039597877306872857642144517353116638361909338724116749624336841918654487439586897706701419882693664616561315985485529451026747855641671158603261783105175169841028383933487265661786853127273895187837238651643663986089938004955821283489490793417443578966284754666825897839571086145947053419178719822158529672671038256305185499771641180951500236422482609114558463309826606480668269846448186251844160232090583734617784711910600997548381639972971037113733856823209458164521996178440497203369266955954391592514824881165520147979836933772996701318028402164313097937213315562241197232654578332127021418705983676320400003717701558366949164781930784056396099985820996853703832248439884687926745988633152771888426!
 5460764732900555351568220409255187867504792219931006439293131422272095915102569045039483814692807370058598187872434506723301673266997811098064922203756310948236360489429753370177476676853222847725130165150497719214751889331892558593916620599054269009724793643003282769814933361469411551069896462242481367043470042783443674611932752486040872834942279300838846766257955477784848762060737167245594840468984983820230426794309628040127876590374794048559935768382418190931594551157005081410300379460423026274087272944199820025712835718889270971074194442718349111429187222974352192071313406804515220461706560765975161037907142788234321826511090571299696499047074408653321379128841594849870489254373102609722622340571039870706392885043631717646444624564092468161666876004855070827284479576220731519872882123347790167392202421268129688538666130967493781220292759463113709416020271909989911873789790578376803471956858190382013779302452192090603074691786400565407404671660664271062978277884034806402!
 6757943585443209026429408558374231393355701283610900596567250651891217
25031217575387626830391076999148886996213927502325658926404927553211181563229623941161173370889165612052054212540076640812799375352406935047433209748980480334419394254138217400099479489810870675051350166248300752150864824449260362323291395104754953032346475543072203991290665744800960661001182666108120589337888213492589388786237197752579897497635259345456220006239888947443133921889660333624365598772552825417868093289490867431163931715524108043226880106064829892795449342300026818121270061522525847540216746536436425876465595842134953777764503358961417027029616296711581758046333653817831360697764497238660577812228633942216968451131963256102616680657504838112290631945938127465031329847713015144143825453050931542306837732758433401988417350682144827401968112045387647356700380364219041025985647055213396760273374735428708775276372529381158204358274019687397251234720334792503650954028425521544843343744341152661928402664413600581436118896582950272396960693444362040629050435938316608935!
 9668147204096987625730293844325684276657603791731005728759356750602774878708285336600490064328514234121553213360566626209403795045149554303122948407965412168861949759061448012317194372107021908951279077311329546948523661271248631896955421352807050948604715378302056574967244327812226363682518619920258794610001071845346420333921660407426197518744467518521544300973744375472095050548073064858787261735618608103369527378557395194230920203665530388841881286048723883648612186023918928612059967604519049315947108409305171110737508763853468438394246154007191343701122475352089448920815564906417527872076693608104081016155898954379137329003251876323045778574147701698041552838787777937500272960840374262544673581182555081394924629004662423985685592536381842614612330323207360352899048589679935464293310731088439243910889365167274485956255423967534966149447505911473360454488793701534347194347966375608139759579799952689628914260030827273983895596771780459193315245006212616517806418407450550297!
 3440384858343788135259459116313033566419639280177995107434551507064474
30482034042603903161227971957868415525593414803317512805698151111586688242001302814206853368979461966654662377566622456359061790052417852660777016518932369162765088033513483604095324459199766204321423991091069850893334106399156570701343055598540703567646746564743424824741744611829301274322958607263497551064288346423222274677943700730586522222923703014763276847364046563758957498768279489131711696972286605369903504193961224505624956833552412384019416992975578015857501613191526484486679348471039435772143891822941265648291396475292997993769046312455054099870540263473430595949878882559952249575010246493611443281786289647227632750324732950692928589567495177084426477928094667876342657421082510385087031416735103953086851698494504737917814401037843333169672141629156872359368199303498544018458310749934730944997592292030595355624252031867880637009615630677792219893819967473250877785302467852774297122260843031682710599697329206539122222280635582619111154141148825415754157092829813299720!
 9121003960444192212004233940925626113600137048939623068770189544560786548926999557214578511150330149781108248274201350737407823326433043551541894301650003174736293900355744461958731814522194089620895732166600385084611881494757310201664311808977049939302114984293199394900159899031837560124492507702901079694821792087147507035144408187464199946963495450414432238958413312166528561381305433721256871686522131268904133898118982236841602477304576205868846354307622934700183480267176794507924671025814672779686922485381723400783792984364537297953436868240301445763487715016134638005632479287565890963660965896300487855301953958366248711550332360247588954944372494203655904637407053977667480905104603772921274898704702991434535605370101411969584060190854677149823882288549854389568936997311015202081831869045961052434598217741611429638794807260374498207534043584578423757291158460662662503951458118031510131385135954952053847694077823460814505605816088710411625537282793529670126318647702236705!
 6908129667882353951625443565028770974524995107658971907584464525946001
523
71321945013650596302539061273470565234920155460630283803885554306646438806729500167958611748862391557972010057197767367244264789812057726985967283042580885724059094746222284048083448227275270876915901706238663295730363317197490843631218328035710379425180868555230389890762201584682760242678291740116680501729510240597065433250429393345861601354329674822906622712491285548250888251912450415283201958943974035047141629004079795713784003315615205030620689349593704017103729721900665641669594471628219640715620210545807202695287820457786632851101396314513531513299061905571148037460999499442507722480093692952935511365908289198233469126120334475823818710477491952312230586280590031534481178395488359841466454470334819219603432933084262297679919447017481613426559156036509903709352544646138473241177324948914669840188383201674967362607210806301763801672681573529379884774699836954100317440948975082822239159758170724293559438824407658746516705426275104145532386061665039718356134629266254091451!
 0407577497883430036508952171669118430109232870190811886695270673271346667697573591923626033445365160573775993314302104172225990881329309354220286019531980792391581397964490712694392937086974394109898974281004020365137126204867560915744674066027672381114417580557234084320159729907445714743634001951814157096088515923626741634735618581435545046591062061336594660908669853253369774378945662724825426671701273882653753200011650838500299546297184169163325135818522157683716723006561601339438846823763848678640204770668132022716548614740930561880378041654455192120658309979252832029511954939814306446766117004379200116472199663196172278286179517561375235452108206752468780309629027829699918577767631748607040788460475468936528934722523873716395941612191736859614978549212665800236612503910191662944813687266517106209111534459116039425551298957922489311386462488795403525993296388199634396388205496739613580150688512955370109303760493391123941678825923225051294493817663868281634911543013398518!
 7088774439047628106432596423317357811894474748103155439103356975525205
85444348262119566639179442574653450358997237543405052287457155723703538589155268710650110037375865955583541846024301305304765134334452211874717906600887487968989855756749752554504172656524523407273999767669223692997980518509385387612682999512611536074759906849782074580205351001050789668322338462269422498925465739311015014660342698640807563308291536415503291157584457090908932909082573721513019072036680799350434045501180015803837962786811141241550936258548401496591335579931156541365724502744002882635198827906376691619522118991089688735761034363302540949318595253598977700296599557190212718261713385125713669255039584306287876454906425055220011285056288173081731333972976675687445345511439686916675060380505722816261791620059062511454114055628563726723430142156066399813675965370398472400604082471488494432512597617029713895233368160799904064238911002271418252549429637718089038637757329233217151743282927080587681554075726248431064065316728995369213913534139791708721836867696142769907!
 3723098044702448377692264873936843728635843930004506224395876836825111833277667766844539982517327332866780084641528506455957078592656616210706585762962260341875373079243798059877495055058001280937410916012536771865707909505437208619251564580695356973049144842707695335519957551706788180530131878195175041928609670626827005773569300383780457261604337147934668849290310095142969037244163158219298671040762187138885572376402291793865057264366774618129457587129884233222230685436241682266773697265119067740721500410776353142849308327085655556905397290568182797595200462334951092494197973249881586060322963036809876680787752910186349169489024701447161495819875004364945531331701087202524169504463262235671671222248078325189268847556109717708417193427747423022750226459019973672139228025265754779872014272032679871050425138184423377259035269699199662240669521014944591667859338866519690267779040414125297442264490745313724512460317534400949757525567603926431859533936242463607752914077687886783!
 4694770440941551410665172361350962419183764350715247093960107871711594
94613386368799706458463789864569204733324300752051587143045750937826272728881426998153253222403510492192203752299708997376129375331268791134022803523044147224634480948083464867614859045181827597793675586688902257123468424627737431784204777076936427847931183090309536787495548723589353750302735581723721770465620650477201011618328915372060635468743352590995586861264789444149846300489528880549643182672033016656620264051549050405778460463685796801141347836237851935895986757350287416020365485528931156340642819096174717654450504980549394026356936574242654230029311278424030299227627342050722185623736674872009955738682016596744107631216813358364560375480724125290568555937043714431097559339430198038646671256816652425849623807397791811136027965344473006285243333853339685360711945890006675404828870516178466661914617471928674938698399250100814424904037464038225944399754306065353120672777161714218186051176789645984948034332954312612757310928769374011947678851342816364208210489856450994537!
 6064064435026865873892988081391526619558684218110017135045381166642732794526208394964631934468872159982504530681506779834178958148182673080122546440216612537387543735604272805550375805793144355167533753584978614318889363539453579258025479500575010213194332352700154848361481190619114641133922542797278144366728364711054119635257074950417718151022475655294969763962143444215011303432192786120119921673790513102277952791278493770371889124902155169784643939432097080533204292509967540687111605376660346934787504730186660487136732894989474998435494736718271520925928880440649886960087938323954253588483531480932556949091275328420751669287759828168622674082375647283229658116334217393643769954943088910508417448841971228664426915339886931351540763592551687236954505929060142309985321934010960873178189489605223566124303910447917323344315136758625895692192672452894622760954400920748318327446508159155206435520274141445989570513988573087756885802186800840035202814968748149807427401761739126630!
 9494972168877332409325415006409970111731062416586175031869199435806917
26567962871497102003358006031599322746334598294035145931032013741785732918025332022090957403447327566142170267540078869686603746290565385470205345272246011521348031203544508320577480512294547265209323659792313369920774075666751653167920939000626792175821867831693850095822661917872169945284330346356317532642567063720153856802151644263239791287500056420153069603757631448521494935726511926694599098297063064222066127406945397203214828474324562813263031462727191352043543206699894829873872435001795005304005636849027042594181357098655929533551783082954426854595373044440946233825658472505839432829403571725833509123633242648253314666419176857955420435526969928229306550533975682050056042347441594198651315056965724476192912039310424550698199540491827379418035241963976681980945032287052939837597179085849801506183446872268602929136538439157144356819319608156617764444321265638837434607945631290025740299064168887881571442704746809222202960238782188565111227472203669684962978036787794811210!
 8525150258532630779299844107874871951177583165408354776288982797706375832270479857510243461338272565339868912170683251568463730454366413898296649947364294208678605094212782976447880170931228750752332224170720990155310213457915768988341081470895709252488323152700362431490004772563312236652343841186880970369374836396769361076823423449794342344820826235931801264534889647851656577534814486161028905899575289092253848648404948784428080380116395412147065938328902221805712594149094692115426830980648645885856717777472352513076206947386692664561031199399474883655794849636108807823789483704735872271835373810737523643893679832880912040462273675309343328510828037015525012984162243305311272761095262633570427210663926041112541106489644522514570008509199500506627306841544859328902368672354139089435625957125435188202019077058386085146725905790395406266300667059481796925843715519003574067418615869974735618414797360206620913249059391504392736749123214703044335935770549207944082259602746301288!
 2247385787699604199618039914665972006736171895417969295653802259180833
704
35367347304627632675103685624424244745852959421519472789434981436689006887684402176298544576967643306404392405368253117341127057891847782822127538279212830504810507509250293039125853404920966610359049473756120426563975106643821457065313849484422433886201911767501946473641261807611655285041118618824695090509343079374374111518878514355525436780537234353527519172258568913125726381735225295826731913324394730457380219942443659311804459169833762340194632045268465398903767759253110943145432700110586782199461444335493661859905179125106791494759280106046882215524904762553625046657574188576000623668057639312469663252590171230784186301696039322000902817801811038056531490595217350620257208270168253514147699274482493347042438951493561137425167082584218998809462404969234785479487330617167139547305229189096219441502381296425706184925821149836463162441298498389871223318157932654490838782378574667309788840818335880068848004048083172203831766957181772429935012136698534341216113288602485602827!
 7776024650034003869838333323084215105049416458848707232317970109793450176771375543127235440950710549000889965565158048776163082201512131122123936334574169582395407549634684329338976529572006288785762976536464699103020854454450106395624559446013860518870250726470059179732669078889195135370899712732319417835480630706028582283500433884876338350870301852686630697092159584189044907988776136643182670052388474721269576382522218525047385752973507087325937833174274810810324575006484090767050226673881652948379734153473075677499317042591730892590292360754524568452883360061691143062221876348207375443835813475349852252343053866847719861650328082560852909426646562021630532421375521540884388303120064871605010211234610650115073703421447321429577495276510197494341506643920771072434923718447530416006027533340247956953835793448107806837804683388042808787177962742594773533227907150565607637686796334538241978802946879210985670009952401273008018051730502537248461153898674227397529615533320794201!
 6109242118085339973121579343956284185801747088154948004772943337269997
36106739590246714741325881870705459446943206398149905241380001483614380334930693525552279091611279221346416012922470377984632821367642062452409991122097709008123647117907348889796774301515580325063311298126411504888146611618283825047332734307821876686456970263107936239977613179071857106986288182638298318601967249296235653620758310558593551738417082050391791160563199256180800792941685836461613460925009416731273798182578990425032085197409775845331513019821867372068613093519761623767854088852311473095059224904588744707250640391072942032481329189204461591729883502531344187003216772340539400891534295015672213037654798007435667992228576803051606843848341211015461456764172899289800695577258419823746023762288336892259563347659985149974375254635774189059185447778098341229533532040720817302521066605132759518599533046535124075949286187250415415264831967433499378766752647875129889299367231082989248031661329492505654281011597816687249326194449666466178882891328037548102368126395095723310!
 2019419380055130089891311335526264238416609054775860592463985453137184369432538921110663076533837484517735421558726740236935778630007767098619169491695093864401071070620264717059012888658512386134288091633812713230271727918217354886988334104532821538150809977793768391786087009332240981678255403166242336280150002565506661287866418693257731833690284478977477593964777090557607042327414006369940272134578198298766910483309387765464867746356248628247977515993662256176316170014722863559910838346670987990633519593047154990369089193517355743620032611464696880970144941236703557729382248415682206337734562446590238548250997091591591316996770838355327985562356438782957904531893835320862429897311633172654844991071414287680238154636906882941289035624743275925574041495631418720185876387114968735045175009502536462237073494700069155317044389974071537140497035016419662707799293562403688754536828469440755427481746183378700420891162659989237815604607520731352204484745783461195641404372786593530!
 5269359540461737735602646101457499308257284187852572793307352688912826
78392310126727297977714851022422908695329357711331053129553103316638791108423010541922756977464190258967805249776814687567144989508331302206775633631960866598487543832966408400992720719821615590735920881386501559326032743336966631053466992444143948627040687753610213511576508184873112471796773367512690089771984483019228264081242834818756297303426217072604171227971958972261697898523359654908509453948624694398096150115101620044327599582351763086328181282464976464720959978893024234556027552274648848324696035619543538809255200650466285026634563152541858799100083621558804362210457287821203856884499430152631530408595602007877584156108378215999306076295096159151217035058064900719232288137553116937052365438325297851538962966135473087020677475405812726136733585679664582824164398499111301707694659753721775683867870518315934753529986471785861260323028134593482611729465939298438005141608679374041480381620432037103537302505141674378746178761428022266773693095264451880214245773516319072302!
 5417416314299835229349358809240828336493157364884634316038348226938820962944397471533493167650614982054838941419942949694249071423649228097943305266513307940075954367637392845171362448109896542379737028419299214755277283212225065560976327603519771518672707294956337300537071887921321243050442592524411477071658171582945274026686532126803241212145855876711814519985939980259714481088250872526615920025716834428822001764420516340733095633090537515854916380909419133138498482828906132554302312226719074772845807664832022312328693224900446861426167703956337510325556936508589516621495808934564870268185472504159660184650045752958809208622173986908891531481656099590070862490553888556873166329041742781169693724412955954641406046160562990919940166742205641962829295333218218406829876505344483392783022287805645557144394882768459962842773819106713019271097856766571402274673492506375461880598695968910473771510339254605215977752373421872760096947036845273636415402228646893765882523289774344281!
 8148228159045494657476366470484127256765523444137946507474114260511210
19451586331466204741704868671732379662637890727120947600570440754017905397258284010469753660938080364197774851702853173537549765036220523839707765722600694020362703605059622962455295108444400038937865030813801014456181243585132730561956015433114567170461737549289944913696173337366208255194453711796924091703718498379575792077299895179860858600584227128623496220135291719967055818510765232598458451432161244726144501571444690609715771988198709436527685740076770814100453845588933634372982492862378406578668387887295461243689583663605819324526809263412156321606243270251279704374913534532308488217490853139564711560194825052407733640436113373837072224726591439700871528303262407089583636317144365552332014912288965737085869574246615413096781007120100246612427946419859789384549070362325623771969597065609067958073809833733447406824178029475128361268069314384641397837967603991578712882303804597254735702488692178085142128253042980208209029324707674537430324413966763030652688061015412594111!
 6016779242429308228512428158726556728013017133383175053335524669754769485611802611296878166504684652564045457962202653526925132336964747606192353699529999067613627101196674586996747287159518755720898519469506329416883404665958274079022931493411406125926077666376591742829593433984245990168300555423673216076402022340414610364377412141234415652550733789186566531572154629811346492179890807493087276604873997292726157310915867854113821283538781745131035524951875043956341482410866719715997661893509377948529789963919149440927971152180760188334911200425072797125212850110713208218532252968944260334631293299234839358978379556672009322283441010301525414528889899950129930771925251832185988535912828694829757528100620424074771079149420472997754762394992995956010007905578426442403084643991893030281823258995089099373936726355034828976828982117836304657015996567515009548727562168392684215372584828581703104183973739776349706185107759145346598453559081031883519438575361323672412753812580998187!
 3587307447703614399007802848233837464077750828126051397111080161675058
792
79927824182725556387891526495892789806415212276382210854852672634945909417814541109024881742505336150694941871278466479083612160637127787947923074068662321431045553616597625134204875259065484598133887815124055200127732958530177598935561155144214801876909482161421402174942423326960979085741858892992942951725348340604162947797570140394061859226784192130559282324910724865182238601094477068100175489243107787450206055715640800801720521253473834507712938936232582220734435590646266963208761701443818222694024462552222473687005517542019486710940525153135896679135001881887052403835367764719647492256362029148776163239937894683823775553974447863350905724866710157822531136194354370119389204657592926005042363662517643449634306551414921343755420354445288008377370171796782214680341241423125259098635760112860527948150485451857936776127440458689212011366591852305510984599263065380700146845593566562711042299820557849936999445211498791803016736995464365533558051604363355415154009838193692056560!
 0761063994963460580382961369643044069318698308129858214477671415738639252890445172638352304340311791900865891118150038088574646801096658919086624398620197856054335863039839498384223957903500296118228576386884206558828252840040315378060006525617044664300992225532283020450040929085079364019505365384461092417853184439506564066342898785081935314063356721613504829971824772738849231710140406951819592790782793794129424218087658100057418246347537490805498456624935353087216927748598094623072505374114414846137468568933318135872186263385433156344537781900404176881925295963507572158001113271649975311964211820527548989730027955513415575597319767345336451875011671003253739717286579519277155229918225888060488523471420694266639310759688705900982773152334560796205229644934627085906318240112352248895559598197951013157040874505848576292037018818879334217640686592439592711885786998646576869253991050091104932617298663665073783841961629648089206507809952849412930203900111134536266673507625584939!
 0321213318956864740266368396233667431364252442971475398359951980811970
94763241358894164682690419416589139875015314421803961070445421330848000848804022080018132634534890377064246578049314040362955423711785771277052282496986665483753457484227520301447295156391416628389504049766936679183486366459764900237040631091306001508161651267719129473401631541000624265862990012149345611813518516792032881726297765774516256929097253611761281005016598684700931420961187077040337977031109623817605928264480676035068462806575040005227904195179323365903552638751102728270038436100420075221926333880750625028151084676951206702262412316035316705755106481673637739826103422866267410470455241216788084140755050524410498135798125600598346140185860839843067312395845575535734681980012893083373064467730899801824889622150095538772694664710342594769692139236886270885256347807834771852315817371646062092122664304670870911626449827040612985657920762765774182028006681720514234823917057765029257215610344134693445967724182347971958896463625076687422403739376590562370354578838201387682!
 3607771855396769171633206166919793517513567439818525436989057727101811867356495377998545670015764095981783372751325184544301433462906760679577945464067535291011116431737198749868639883505408335413007416010314315793981101514059529430882349984945625164964703152542180476272177953172033645273832778670470220173045740557932976310733274711799707542680537024818285802332673412349166570764934074137207141833889111572130971665060705415290717673627810309421584459218583544940043112901356772158952458009986109916796129611046895019134996510778904258276221597380002343935698534892518227040025468325975967588442765433673562925100780923241052587380490047332894253548025688324937897747628458416294977408542571339652809934927584686473204179928508164046446119979151339842658585383898162919876529458599154031343163685463743395375282635924858338396219113254001686309610203919857755384930790571923425003868481035749666493243525247629587512300733039197426867920102798457400448043913777038741350717857041391139!
 5220933300979229543138094124579982637427471893345420396057340114940375
14982794217429278750351465088557428565701668045401854330914323876672415504594079421425870725609273985671571913509245697296131442315999098203951162653146839363961457301871217858996471308148334060592260112410851709348671681322047372700640627647252899657775954241693420230265615551945420096253147150563439102663261287979607583733698331305902537724357353670847458409057942666714365880942735551012871535024450993752290280276676323551786599850334176314771671989346305219707187902383351945610104381095168918051386958853203042652836589055777173736264589769703359583638947705468503707437548155850781130730025693627801378003518540631319835432057428293905594020456995161333078128499002933205473110049503410653581240413405259210888597207492812542551017591695884010687232080522326126562519097770638219824963965571123738102779984379992194182395433987226638307294615389376936238089555328141498854196284362759800312153977331602958610106148186050531741782721679530950476995818098067542651088349248745838023!
 0993709526554532405485557625801757345031754378108769787268266961882175615353582246547600315865047518987414241955155704777245585899001067354936536329835585878639129847349102068384215296201259110947864415198070691290564071497895357839668211463916330135419843812033781623300392920430141795035361231289537789931042231560828793229027863579608864836471564955929011659311378500980456615005620782803243419078108164309764747152820063101374854858186908280528861426390514061829799442221562115504132350563508000445684019924283312905521720967611808443732103165974685572474658928120990867672416778037570649006741494762451994627925886483154901645048561107830826261131677242905968406838850878235133523715321621013367647354982255770485182040995769481054747861698513859520527864908651187851829817012785527780342679824829981856513821021630921246781699894023523230873174533594278038663497675099681122669576049008848724751328182415412754940259242844444074573422256347484188508639336443598750696628634387446981!
 8534431083506747921830620418507004909004839972176439603380777861858574
08555252399609056712226166159958790127030719345935287763292364013448865821601490296379290485042481081363176622819480771597577694470036809567778231665497157782195286009044074547725767351047242730062572185545802290221953915792320783946886139301888726291640354851156348009752716420234375590433841096910545438881874473105862132920545273559857293659758886802204343814566399968384682389391118680355556002601984403021857579704174087111713747188048748465580220941018099376975725161749402302328096043024259476375323835544200483803741079854404560505189091989487621125925565941316217726195080254899847978987553348513481752960572904147338775873222594565591344192430140181694535301971137088815377723935692176868195957283440030905823830372429878080722331949210161527475666740208990044906625994152067089732980944586368004306977841364552979201167696551295794992789434478517731922601453339584909384908426962720585710492551877277243803335995137762839492283750134764309618622716717569153253348380010271067001!
 8956525100154543795034003394862869248296885414631014665320971622945963838577677752260811541069284663581419846863768828199451316503800113312304304984960522316079325087059712824528249300091664597245331195076576357281798699174651907245510562860402429561878121360801702548455733851616784674667096339195910113303738427419291231465188470192115581412292990372776781936220124923621618414467248670903021617280208319636677352734377692049748205267925984806017842070585203175612391339298831092976923529907687816043403059852835096643700126309751150691061408499885260628777836498163293534801080963363216732469220564643813451630311333384042092836596385624977973182100646682048563199347962642917032993123307021770691498441422509098864306356190561319874731997022599944954147833760201683898558317254437143529401866608830218802441281060798209581533833617427592669878769289169074292162435859189447051769846375635891830879569001477233456221651059615181799284362614888212747853576051044668246900979552897234910!
 7449904609923824046668494252582979382697963164903480049418582759937919
945
96400915417028663125002900023292492277078961658227562567147669289137053647161870559013653999529264978990414141066554850502291348350814949799190167199597267949135285968441839649771594471839272580514743744146174906248545536950925886646338120571786834356775842689831506940586474117494280391322126245533671527750950262932347191156928952488241088519382881561417526405874915320236859224901235267632130066456125403780409604327535624129366607333609095548449122625904066475450720696595267367250974867705515421770941973128157960068031549370275588085637934287278997676104632182078712893019416389971908522822843773976761752044231714509320832335162346361817418451840364557028029484756826869972039356711132980239073304878491889089083329331991432141459389676837114232046793042929875773677461349790758839639350158848581917354193625217298054188944906181388967607297125452380984837980087977313101130577771321346237142561438613294477152468256840075635430262307110922661294764040846850673769444261050329812323!
 5606386904291810797249767694440991313012460242538130912073392911417086968284904209514705281423420217590807462127696184212857782784506400778801883954375100128032886942663331776051853066956477786838979691771861772454154769534848320562745659037393308011727314388929939101419554723767895536117926122408279359825083011625304108414050734748580913214937695650010566400022727034365648988968208178446868528306357901435195429523245595850681647339093254544191261483493421442644559391206907373410213293907868505957222378928663671867392986942561871355561425595661252602997646688330582922805016821801957687158708248044207712469430751085722989415185608773257271593309180281737990243402037447409645473772813385399156260012761545165627120075390293176719152773829692211393603191795836934949631154592483050629322004581739951636905627597816237638087456273710361508240342147380560234713657972482690251460018532975307826748770644255338353025875619881048319699178050522904730700098539149544642088191186552155343!
 4716858422092840125889796214599701606617662957347680077265289336531861
27984740918681655795020384458385007853328817149995944625866262785868239284242483709553173021219407272741554931727093196622953304653873101126923193992396175822494212899929294676005664009775463068101536753333848103505815700397849030713929638671684250370186813229873881092736017339558605613813357839246603207859068635340265598463889842105460575725721910453140536183705629539483370934269054807768866522725811212723608646686643099930940191577738237966607612714653796695144260270318594489907219862655983761181999207110073765150272170185458409215607836214835221834197176442364063206488569280925209965118823441443474704522874507424437824707642246923697845345516514234138122768449629739915860641372630225966112057299942284051711085632800380883972585818861037893151419982003018202860628660356431063899288378573576202586361833844373613657138414343217574691825607025324533903980257969311943959464042004525266462021571086158087599431682406673669332265833978602906982798009436955643813058499938535773537!
 8395664708093209213983551367787576720725765085547549595951707783780869935758766034743143534513179602620995011333869541923226074727674837824462748357798244991761085496298778507960424316388067817358396399576196434289996519322135696744718539627388843756491045303514806706351634213856004419619094905680424177663490180977879128978086716431020994931175957189028801155377415746799402067806788966464104885346418521083612530081989381960713829981609142676533084615051049915390155625650104738601493395392995258334280318005684080315316666551362336823593053106207269967358456506137945133551506755206288345948756513744351048417658084990295641881102662694235754003767036655165276200218953756887030772219469720625099083893611003328954861965114087509066846569917036978327053767752080504574129781439726141067170431855824608431322422615821163407437854637379441211647828098174389599839838355626355529314799371005199767083102026973687855407351034494406149294656658843167394115459720443943735788406086567615987!
 3691904224782610213010249647360365776960741687092208233478592833398576
46314191473844362529370529809327245567161757543208356892380946043963938883111403754127427502285054989554887813988548120212748698085736871123769954438165776895675505871648799797011738459442608534614527861901024816933107126469533266226688876583828248107125608920795181694688383639159419654682266090281558178033896656997311888630089001538509885298441067140520766173963539131688672862254935342053238476780160525661622257219932656411812822808918655306812652554692908504030541041753431676611537206746401528738906897624695284763386219903037971333092520844278085159192487282857550250655353188404772078809234163606658299971957363453448792498206494442995694824113619171221241897659552565747468428643469612683459233313675894965988105273003618004560449357457375418093000505604672774655530522756463216572242819473946465037733002175653205347615261415557751531961937920905782739596917502519576432219350696632625253851669482255376811560530175356109734462223337871919905756942119863707675883266180874428376!
 1901519063033780218806149237592229878110680475102001260456212754201525498143906985356620175155378766187848167941497457521683691003085216260182533923543142667566734333138094349527754517724330827906366423153767413532907598310888668476338076283325614246098576363272839497010234458323836615374718187264260028135794805934563818929745191014739903449825105364354437776079496278689932882802551493474861542139021121253152386475702690861801343970479571156311061764873989777625392054031368452888171444600235684060970802096562129084111348616656370068910039065004789873621139579332463708505707427517434786918222554382071263490959289074438752614028673482589622337759400392452368031250993076422861107272656724534116222723671954087201207393077792998408243239773996720561081225480728933080398137155235725003672805616822196053336058911746655819265145824371817287048920231272030475648932416457412129672955175567678258488370311183992746726965611260329309822330269267589405671052166540308738119801993173848142!
 2995997193918583973676997843371844997278284763922871613223251140322756
35399294767536208010452773214003059342989540250551169934679254343837199688448982875226593064482709801219722536500073947940118220369422844776407943890908345746154321483232162622830229329312078866580238991247159868604982175227604224048042390907684589301998993124676519851422373684204464109842577721872028902389939003884344714545177334388435732088137549347764224709044578196299714492906932958634342693450110582612429442887099439413920463912937437361358016933133202954517116956113215803108546625949047266748244845329790517205614825883589065493965557500159859921136194372211519096050274855519457424135616808026904544760422757308237452565533604641805074201147786354056492225258307580083448160944127035659102605406619015998537618044076621719488870145998207521028291226646499120189693303495608216706086203371856113034679274204679543166956453633861923070186959305672652032598071917704357261001938887800975309100411604066116708132196191197897910708068867173569790587017249113868638948025728971700638!
 4095224354204421490424859864472170605071298602208423748290639529438953280335110801612767207968703783300769173635549221565535921941628551125459553463682664909826744524717805274328342472587450200121386014377191296681137657111817621867978459884400273506197523862093437451916195957635196103404966086167922875732147082691202662218586235272544137524128952015580596545941332643492675965481863128537042769284873515170423551314217532309083563464663765809105224461626666229646836137948593647756910300777134312734919343194472561592016991344109752670505885661599082468808839735880411343578359760054400605710365058855538251909144358936177588405882923598478745667651424331586954253395902972553968796073227523546221234417598919686558425788750819091643038321753956693720659563323796906811398844991251538075581494194846686128453708027778374750849433330358314668989521212801689395264254404581604534366790536861690491538878559691159766779492756144005751400968283645591757534672823277650339673348079946712215!
 6403403871826485472271859142629580160268330430304518707083848931742021
464
13239851758432544027630570723245584594614399108254632263492540896244810779037526632580098836262048673728048810205963884310005063862972255293302355555898568008223036627745676153046465378656012927356169656529730245836322327480375937965123501569260919111122870869202519832456521127114939663745549987702063816232266604614243619460651935326417261466281462099569937425855388726792825700699636070054356479780164795089246916355939801355508400888350016319257680836154147714184612373919602488189664486269682938090954526154148274278776426770429194337302495258583902172125961863782467657605502111911358961218115644384973900292628254250799446840331571072490403223498945173138777909731309208120366502107397477574613868178878951967967973045998419399229722665784211580727493697949812594419996271695665045113640366890495206658853868120024886432953015362783156187159715253961016837615229372611270702769704889604332002423232638389479829260832176759569296428842324733771133646084020490604981028142975569486720!
 9674993218291828425417080799927413831368657225797130206908403844494866380712861966902170419193139948617059691797944230229786283189342936586332907423518830067386983869054910173841111164898684674402309383323578014364746243372647175651977660789751730029053227208944572220967998559591741138760118282117913340984088778391951569505619160379713930562232468656951419055955520415941951186673247845806160356902991560132487629204104597995732910905498612305333403167416726253545236832231296973982100011684475570838438683446591006771785066360975467422927579690371328219649877878918991427571054621955331616765136901324078083307504843966144098831868001205133661291721927623331101087479055925452173256106948770950916849777423989864474457821889472372915957752950333573727469479317475394274407339299878958054123545511117656326049649500347506286419875051707658059449512554018209677046716057716671699985436504271250219526900714933106591663452458260587942828714702463049129801622157219136606143154491017019123!
 0252723997713059173348151700234145108979084548069857376885335902467213
38452459938712228227596440220819988877344977875800968480722595999430710515699103678667636565069259794446432947791721077434973426377911034669226122117424694824971987674896575367741955959834882673667854969281823543375865710963746210162274951440251971521890816600831935848796392559857299204310228535663365843556700735592666195596545560303443113839805577534620760412537320172563075149158408061956796744526809302744785713612994004647035510899587260825537045914487485233858212267862332333623263073466051634765646629578925205768564477562993858230271822743865669188065112556215953081395759273922659499680678596312553564936102996739133195593857596477853353780555683457432380843523613390196679543935078509233083298777574029015445651372598953846095452265850879773495641353084815924467478003461817291298113758028451991785869481115405860252655457982581446596434944622455669896251877260921608819322764373981888765548322906789279887780807865378415381097093995989147929451716716648438563824561920547559622!
 4410325536931298797699947378594159960454067854043011744176619379957454525896128639699205610722394806744464873277422716088531131779387829812887214581551044382537823798274403850069260198943945203707922779282153056390197249545582725042994361699141173204972587806274701171618689252682139657619528732289407229456531980484930990982100984850806170708270723794744312526826498275997182164111447103420286200023046765860921450614633391010450385654144465676109706053692280739500062622952398985504071503999968163709985176561166669840488249379189090082185533644877471052372034278316551757650672547518062410348773044634943421929185292923606777838307747666912569727285734871536172655242450439669854725098977107416771403706970193632737572194300333036429427231084714799310886605960630052955951884500481049346028003281907740524055453065466789508616399539880164312803499689138305905192728550477565240422503377434844967756426582694137508509366113316600891831256435237281625278480174528086136544492467835119815!
 4390665923723580138698242110639221467684264166797325190104689635866242
18596065845063864576617877099819905241160866608318071875462867762568698952317503123508597732418984864667378313904218755107507919244220681811079459473633754184810265714952384396593559818353980264271964411023146906268967741155273723368591473447362714144688081335806437258182062471963537644818096578453390271254277856971927927999528299871600051985797723710488536711037580829505598045004768056464436332336824531039429454996759301831430902291682463448196827253517493385692901000055045985983062261907292961919848068039648017152892283789053755672447033641766101670012433251084346539240471284160211401940447279792908190843349841462168552635094673018494210383058639211517530877191748341676689863375196938144136653029103843247532431159365284742643937068087500465634757576941980875964286763352520929107916263073234933389945937232473944545975384933712975552594590905828695304017631364075738958483938404205169255921933362028010200247137616921000378999312352546641090419896515937407166262806352152002491!
 8851138049393320269359541204411945700789240955687498056102305960323287084238735680076420573355309368743526850710185065717769707379851848406247717514715962535302121734265718245897226126209251570132356021751320757398681507250918568386441949373373983998317396842610843250321299365207197755545407735601646963501672045233499793752865124029525899048186920798603418089389527883709921233713406873745108563927000601459780748274420453011452399631581382142816376732336568854532565827793652088852518824658199695519608927318145838036544335128818294391507342713774596805978935416346231010431627436330483929210209851931938086966389712528800456549926068384807834386133395560910146964535110493094029547806230713770646397769054031927416902114097048192269704396003801918066504858845106995557595427877244220508290460990985184437476133705210966436087143623200359060040746800650131110510455093869566666882473438559890812979773450267417778238109479237194430721566849188796241960890823328215137337277649329960114!
 2976453465087511622516536396620744561405324597346656674895016790290974
77806946768071065702153933466134682533842564071613920358531508442220035645008942112327917941837791970763963772253375868108109760187298731349696121256656350132542352970331930501535804845109868588986469945783168353608163278524321282650488515242892358291158061990444738009987946010858853254937484999478070528190378909855557625783342753072976685550249158663380811148201109300884083706050661633440284666041965705607016922267944560667584878481543734905824249965389504518372911892064675473716422705886475328780803598843818920349890585019383953752728774162691508329824251966460864979919273664642509477863725491598927592875409341052356536409621700041753216380413782011019671773647217564140121637760339454005387466367701159081612485078507656625323172301849765278636187716387662207927469261293434722205198506097856846093818377139133282999404874139917536853349598666479889335443197894077168836657281114172767965841995152164078566494204879190040561174572521082316389249819358394703946171883587813328518!
 5809732148568375359777478371695083760395053442687083636792830665089110740307890489533596521520347444108955640214733323836792483710376431562414651116607094786285486841509397067561720875837902675575528563863932824806379398015944082724468984128035100217368262950356046331844408010855040736863077184906545747104830193923699367702127591940277563211646358046842185213176620390668949420852311447771728936886223163998396063082371083352643168527218654019647938011394305477560725957306850390421192374818634303770387335776693841282344871525570130787336529959394575043017332323322551110608603107714933978461085885145768226359608882726787176135701185963960732857780082655353977507930058082391284104524923250045730896004588395485335730426345889585645512620054157506251498900800766702118614837635766995876389681296385417002090059718686746840969667037333792413150439001912519767898556960071755222515745153536429863551980939505226912170301862503954722262384686124050849211858627090671382682740814049248093!
 2984347795431706016044044359904516959066184259091868377437299472765480
912
47358837767449253404601575927629761293005436773707424603833653778978139448758231507539111876325672069198880985138923290221697666528364257687815337597833721425773908511391881998457796958495134626466975403905292765564758305611385988903164409618753433752943045527709454154880150029006234467465528156849938507049060665593843134528934908763486338465589282079614864691608045351792245780293228244254258172536397042635743863295018881513643795309418723887038463685713858696788200485646097353556400329539641979313194278345506137045506447756994897614516741447747188298994607336977310705948649613743830765218864469431750855990723204507850301982020112162273108193467140679904656706597354021179190522829279863953675864316762000988040173341451699461847494316258661495347490193593625286370274048061374068355692365690004438239530610015275950370506523655097422235199615822531303984744702216530326928520399365460433996538590834002140020389052630962510945695769296404603794936187997373038208699741985872409678!
 6831254260875150615921739088190667826575557451583047058152787596917613092917871120768030999839438011582966804213915017213235793595619958556055559090290535413669574619103478923550278409442371491842289370696173674348825422417984404669997937928321645911778104237771173146525047628265989136173175053212632098446365531407201676949270615732186978865047687420624695004381123672860066158691455323703714085634721263727921066239303819190576158042551133196354590306608943309397332242165672086848837890432845168873535278145283014759783335236422224649142427764389412255584663235409285360507412915360164672271156085363125877970620766711442898720414522983583211325873563125336153585683116008908489141147442812450919545174672115997093308153657643779159041005921704014801803633290324539670529248393075219244184410955581220984931942280136858940332958213761161670144641415353089826922296011538150858841211417914974714407429784484288630332397543119193858739389995304454929918439109632402704720870491449442085!
 8053613921515935221935641607977018063422391665597943071738627599671494
51982129584572996194823884351303534382558794370493860226593613472802823901183545243128806630830968919977627943239857704197453721730636307081458373632427487910434237346373377731571254584849855682338469650064806636007995077012967370709425919666288910843770987113598398272323176646708324371011340935426966248995903929615008736421978455926644174816123012941443373336177449961876948808454450317598751720151386855119154721192885836896548734044633905646310679325214025635505496091871509877900640761552974165575465689997819253510071969943952859923341999993421298737639478583499025461104114333732630304601093172516138089685109000734937070293491877087069028082550111966830208514845341695198063258242734090977848976972480035682851448864338613072886692971854823463817554103828569307474677201643019018538902824823523482810341966930286961645626265807807879220911997584812580094971368568963994718233346816202185108610804195017033256269700226820930304277132679186800806515525811729780760513982745344708428!
 4880264815427232390414565162977926441571456534155120641649505272397470528114587044072273910823919388689295409751287255681772691478566980730089023698103751615465552108449502345115606053945750179638180523530228839937828940604681695975547270233874047642263519833179276175534362118276966530228648133065787163716479690520850475181276353207260630223519530124402835523808278271111309236055790973635309892328245357695113299841990041838431459507947874120129140952215691645479455048481484410587664076584233496580579790288386712569666001815182567178901685136434951895186732410002508278876218726337231438188925088523049110004232891013730449034084289831818866840905868991828373125278245523141952548219957897590333428437282806322371355360518688670369600032565530858840492303647342566576508579537883010658140736148477596407592855960071262113237111003159489316397495211123196387596612219408123172593534999236280510440039838699900079522200041005875574927295647925617942185758577855360030994218975140936607!
 1835426252329295953301592799142251001573145317948329379751880779843004
56410619098634587697701084658768086397671797834847743615232980921599885008809779261117161627042714666066332141303563888674641858379595395295945641895032045817915771768956840753397110516247011421336733738869439891586484096927596534623968472747912916198212352808950838272788805466853408472916173829013218444610754594332316745548980531220253756346198245735389588451078744508406888298519880622246125912099795343756547570482454572628091739853647054566453226047453219943771773022156072574544028182952895804714608728842678775957265595558697594078367755874015721012963392983395445310887060081156122226821285050317057064997149261700607503694970289536787471159670072448408690129328833686383682684180255212765426774921834158827763217552568340629031590270806520395275705946035852477959372044797523336188705099552765865090008582039511261277370759617887330201395937876046698603636547452745705905528589025216231321766115779532124152960177536392586518018068301944786840715624885391282752339628210209642069!
 8023622030754086428635566446708808103961496039644872788395381955202084819117190811665363360846880323322485867345193644613748859125980277202067129876674780961969950801787659948596427026215704768705807438118269383875514648414267860978287238681614048827807747927345702876130297599704613573028375296540908713591613442201824557636933438252648765933688142377150944049032422266596120809465154274604453288981374597344611209669818290309193005979599664425054676186012934401618484310850087555613286154132040730373889951857404609518749416128083170778621478577636544607629222100652763565885696202533198885347240961359328285245542615461399406265970885193792234151792762567333990839487579845023619853963716538741794722869837457235595790048023558576640020706096641123149535641305400318284337158900755314530400934104236030254466567860222295193066256545725564252017356459630436726776565070822844430462310469593101148921383384542864909806894160697716785983252554778914727191585925853699875098901096026282805!
 9437239841946932351244436276671674976082171928157857291277276017013107
06626977142525436546509564064979112397886367511569441455945216973172633499230472670275462686556395595644582597050259338729155244573790574518309797457496455511545548443786880822511655768016605108943226910586335625022863436421651671056900848342975295255614184289200392948889672971152122921997409104475345146813066972155980165526508240440269084426119696812050260061014586378408077642389726919188883889522824705575805430185258768497201676213539244389825198369184225131034044619934089755276066393179612535371799837582776895482943735078969086673237359408553684718746170797091584269244005638096886180624335440726361559602367719057562306941076635698197204437839897270420313914447149248652685359351645693372131378143324259777459463212182244716604484029039026549152540370304514593511764975466079402278902143108118503736412029888647860083347456287053901942297970080928577573609829101903938795382294690084792234394597098353819176530167931335435715114367744282836888574045618863541463258013676469795108!
 3352674505732656358625605409928434905494490009744630193195342789633345677565533871655093380174769831581294848638669701320671371019609228471519927797927088827839938754631874263800863519414864797013405698950040835346625308036189955461817233734547405025226300754101566569626606205733811097061606253219231013837480480863124106804619438592463013236506090952527277817372577660274459403708745230036857617460260142084432805486157089572350949981748199822906904497880547766574236895800958708237241135446964895775926381624913289342709022187829061006889743577137699965547372295957068287252014615499008921951182182750877415783193923032203888375039682924226747715067823731276042449861965325695567800769645555605289738880283216651481063456580354987860714190137259706440181072160962472260642790324886744115847245263614953932190255860436905030013896068422612468212733370887868647753263685149858487467915082781459100554065115132235807249196876101349878472906240786652981283785881861941177829648633793623772!
 8809412326091529382513071856310586805431709005134074725073957366989498
330
07993304241498692982200478608416338924645621950499806278246470338861033508898866444970765786580897686524257383942166440784077733753848161399069578255325652776275473646018835090968456232982750915937561844747915924776674785476081376682389943114536680133801618022305898720293922979770217786271936913128522138010725937699263238542893714299950058667171572072574619887219083408255231614066478446042553905176980510735184740740928552335062858235995524097553671252819820968204757167621081087722045586160421535913093701678902403465257628172196191290488089662609559549934424624597341197135714127964523005936365222939783561216769242909904227343301821269640715232523975665119053632235143593969083213246895532644272764624054658468821047632668363540995028353767653097038545442657796825611094336478841962941768202308227709001245187716672416092458497964585144975098504783024938108140422181682087562877978374841772234193409585758721015259000809044849858871314676000563217827365590795320925310561908731171281!
 6987821153320007593286472745278815209968544725473757565208077004261636922018392656027212241982768943806040338800097534443642374600567122707602373021322330282713050090991274839097695565597621707935810278670556297973264985842702298467521104764438638592093433387765446162325444880966399749244446432627127763619692751483461569120686918282748383521576401094283791650717688305820856829154626742307715698117007991755787215137848358947707343500458235701930570702984544420461674513234714911925636793026298779063176245072363774618042389799288916236965898041001680518501791045661307352871606923797707655597817735733146172433140830756969554491229905836142992860484494781896692175287966741794474554453374976697486247922153172129662440525441496288048446439634736630327588026437060216700574921820680971066407466511483224920614770857634429153728468696807948444919368537338344968432185419103384161197362692989481506964496804555707394617989860385564233024531555285979491454576199887190377306335928459212546!
 0354602056217764202445273683105937437842573283451035475449382596332927
84294142195671717615882674181976724307095636050640261273654392388998412001798178910271491650018126789305346279165384681000196069870682720487731593967294514022674844284425481862189347428834847587433993462714489083681071541753564731860014827539820312267806990407606604115433603766605510717963935990338513141959644063883595078700900107848567256713960690669083942764645301602737611207888953250088718417395672737571618700130568026268249895040550261163475994215184374274540439742444992845571571875992672978786465400210096050580747448938787238484381314941745889040436842299050974871117975470475041910665060340305637686390577872082276817609060860958711307105312394203425564459644512018005160219252035140845359019143494687690950468167835109494750502388161449858472028953371369852985197271714012572217905902501738285144310476121984706376905872605317475331311652471987353248454829836220493874927941576369250331494915815419053383043854295613269994211012125620274299527134049075968466132501696558296363!
 5261261456363983788073067735424195812912053791090090976673273773462750233307359771888779590508308871170693236983495187588863482583924088583213465481542324975481465053496044331160028622740435718515320203219813246559501881930190800251336483360661849723753696767391362818880971997525425911526653239340957640552390006538416968907601583663586245972198889458965412306972435270237258750017670662885918100213411716254105227731665004192986824169338751191401145742126471692983715938736307202330887283980456527724866620289853153077759273038083126704288036241111980880529867170821201016190337612186858212454794689749695599106789462320341161835933376091067210531309015266430653366261660398996069153644988030217897843228463869667544549577404698675535588136611619453566616797306535085187749680324072444444955590582168322521470643265185449390767663953172936089621791587565011073773626912117564253833851745136149253213586761297534493203253197851334302717988290903264170983986412223668587131746504414933180!
 5821443966352230098912509390301209410054101540943442242423601940905641
24817766558637788618047088751992280433079346532050379103452448917027566296406057904114942172838444354811101754869875630748008461828888570436105268062129091713833984401940986384909659451778081414601296500898251011831480945963911179363213958388503635849904050062652314442055991431851579293884699273557478398327127715946296224174948454689447811338363899026956160328713320709525005036295627453637622075417566247665406264495034350956164442358127360610131643635948992959012042503155904894201908668578661222384543082715372890279204564501142205502720780800429500876241276268124446164792218913547405201124303266159595839548969618580417914648185569182949478096472616369184168557023625641605425464517358173064054404752686390589224064115045382629267479921886726311163363446155125400806717690758977483839952320591577658234820926799376172687317546419513351240264846374228904137690770673463248710020992653721807581062213386123398057832310635343597604808790095354511404501874291419003834630492626164128484!
 2093761711471140276341935514568936735279781079806661975521440537281878566046949767067602010517134926106842382451162249320204310156478712318542812866330682302054403155844543768794438396639973844155463183703528684211710070284412050770428026638182008533064496683552609209667185603863864990336731478114387403537882024505888317475507139242416202079091336406253300633578578800934449279322056992342637197594306259072171092189632922403029174212293761080934351907641988613538069989779519606942208893687340500556125007780659241852826043411710877123182422798618436282470425285124427229581554109834312381067526983493053339632022553305190137185790712108380031223990781469875602595731202716220131205682812684953338398855047616199212531294022716815425476282644677319350501213284430828311148874098577762628490682474991567947143077803035764342368347547091853470013423561384835590672288131852072808393864737711516150480803351440660307947331119384401633723401795328302813846335499677294456838359195567423529!
 7800310931320740840205610155714949618157607934763981797031874483223786
44809119937584803074966302377659491349223123357002839556073064525360206371440933940338801942081722350450016173964731677935297065091231538486821266335691788513700693718804813615865830214959772455831672202717942196649720456301210464652336051234398446053452155640884837774183596933725576036988374520723973028036677588627440318673199081197733013247381273033140832491389784187132678627350242957444942508376499270699625220519168440973358088527026046714435691524120229644942109069301724423040224584482654415936851183451008669990791595369183204310378816396306883515986009292923492687175562905921375552220638210592979651188274177313960479647649379277297058147890559288977424887610880447304222859237911760206402784750079830289337815674585676060381463620181797987808754386268360185393466456258145412759141257252878058650520999326189440860093108195581200025911166741242578609995601234104873583210951898009026956825021058254438074707848405931496491819764955286599046582019387472864119950874005613574734!
 9534747601434735872834425476505208990884236636620030101712401068475580679723494253692916537514528489958177281514650500233812648667095316300207338545603949796540124330173394588424218862957611360611791812592315290991099415364639826850017049172263320718014285711824251238865990076233384054450554396018945030977273414350886822307374498794715303219333701486713081141568095230578933312824616716129889618814927336758974197421573796706207262692358611007926784670788801221224877493131159156281140686187953344536340723306328099571446371430962518984762026325941010097830185580654289973139072513955967877162873415907691527037975872676169640526106420552597176323563240297831122959715093872646527624486655418421574918927726032189382944576803026497385804125411370351301317349953669917305503911926318424755667068118502357989386056023906404051079308285378988221177621700609714782083758245852395262073318336046418098543198284843383143911736667235908682999404480969412246331076466923043132696785401728087397!
 0663171336371513037301702652629859745556344570005904453338501573097245
420
78574297592473849083582558529922996707837709049074637529566964471029747303244750465904127700825315374707311516059759841943063665226237880959213309249628427765592922674136858551946520472418081129868917931340092802282580183286182414845875137296333487399509469263344305380946306419946227886308432332808539901863875461822044278213104509243308573016467359975174101972315963477115095374533793602658595189069051967604110552438988412125591984984363020730157404964007251202092418599454981804447475336521818096135749348475542938881602776739398621313210799802552321087225878362125082596940522195446671143423284192758870384126141581080376811543538262521954115428318986101965133803428190226642629634411183226818579946281706173743067430981939679871067572258285214955546358743800279529964082940161804333174483726160301789423156163421249063469230499184427973118241939937766805055715271175520151347583970183692101799100672971781403204717817191776362007463749515821689089662050175071695005050945858447859846!
 4803174503831439637323793713555886344742453338914594541165502029691279253260991863173256197033451869049305009404171688359237413718441735679458735973041307361623294951935808927439443791581596994917464234812629687840898606322729062257421926733028556315897918627600911414562396647616053622390274670905434920166935546875336183242799862264145956686298904137307539373111756014251625172641991471019802387692498239298308467542266816812099533624725689254377662339535417169474512319727531687936954563400033844143153798886265072577453638221839320075956054608474890472097570784207818901942118796399940677173022125314195426655824621030227598704610495795348564633559875914628818399547044028524864849260827265669038419171326216664367658240171188200665691656306393412942681715855878712823883701032712665617855558878304054427797164899122023137315452463417508372885135146803818787356804098090738042708335065953508145963188007289006070429185278123382010606129657602134821401240849452367870232264131276749985!
 3899706767439659699678817255505179472691763670383684503354001212367323
45706030218667138254111784541204595338551039479669007434415390174360295529827333881161598861737439779971446148347959177780157177181101695515827086834547019742937614580304203534428131030736768236928807159600257450878644871358437696636725388731632290547185599895990424859095457870886133390203108577662704843472679640651223808296919376580652111627592456749386088853528978192897350468389279246335200746135551409658439944929109956809974383036435238040243054521074094308233039976101272312476466020238375259747744201602338124377120807311974446724565062057084961088000687546371902003580969616940775319356933856961150482075797930343812373086114630604922440419315960417082515953385078442168736126021683321523575149447396521718563816072545657383817829940925598303740774358811176316988294143946227608222367135252640130118068457018720703474863967996208151569850320318788865899294273940933563180348259939199124590397252439076908927735676313099058715500289484581507854738241801510269894307794939972620734!
 9676224769148376234654467708305494886159287222355227502672289393153043885884799482252747838654025741754090333712848917674845269248881873283462758496801144245867488346610431993770574638574370996114175343139407810293128665931984978650517169400404426580829758123923016613038712867514406706251671560671199439546727620416432394053910594674894866090990408028633172732897612733352037135402801805193192417620235228677326379784864910284414622948195422194236021314221116651375159141548840825470014894532143805690346732637659336636933157778767037694026942643918365998677122653250006180455015367428721366374938055618396204075369269898631790460967841799928489956175024999535192120540767384134250858401517451793218662602326172901989197600993679997367295256163233056652927033841196948997819249002344046874481388460372811533423163580593743331188127279054339657330252587752805574707210483192296201791138937736458568204189546361792156599326733402584611500230797599737462310953773598416484726779301811867860!
 2979010115023397378363407992836361525166106670031329001345608935348954
37526534989635385033338345361511472086391172437711077149552353049099376701686782783444546408870354033565086492904150805147094881314298002704941326971755379700058300487626325230969483372581750049686158636305171607610168407845509266891376431592837020961532016827033807358852263990155611366748617351058000000592775877714161245754099525603494040679115151061706083557590915167532019394581864314990078405169008432087561431622244572089330704768648898116609477677120682209206889790310930482285847876580271837193399756198209655273025737696888211643786367412126863839084047139903659851751580819282310233897918796887110165693231770726393122624870593957504260715780274387886640854193212092837124879380206529274916205444559806561034330705077779485655154144954734925057105149503537021939192772944481047118581457848803623844098221906145682628050969669984549773665649083014853107613458766837978423560150396244506055406657121612613793927660915292746681092274894436625186480891261959936214852267922525238909!
 9803992009966455210309442044589999187396452836506567125563780991307709041062104631240473404854285261561848103186338128307608173732014840941124440198626272036064859050362225737041378963965901950153137313898862753553882659893099798596163147436879364304135042918995861677661195572283375163234251314902225374944625900374732615918361888386946107732494590399875332468038359725492912800271383940976729500898669852092404648216289488040881218056165834381783962726105789025635848259284792811126565018173034238376466876151826359079616863238643354458200548609880120169313981710403926814127473570259159600108014154226014420143501285718767129679325244750493900490206217480862678098440617523561880186043595163494993268794763810001360407721596639641985308034153955508236752894557873691873867334173666828594618827762868132577075137376739808919385998011523533054223685019532032772309656950871956807505917491209794441691115547755675397478540412168887985353856637900604149608217178253486775035790963016618231!
 2910436369237202521213808901989103790499907260167039859566490346224580
49954381935027793314773525314642735955078080027162471395889840869215102594179851541803794319606468462490996732406055658618498272282094861697118852174002280866116990776299490270565089679115134380474915280044049290739974175615622013746192311937125402449097320082075255008303907427243865318309780195531318697701535253900989283568907390991277378492705951743669452139194851054019556069353504624322539899638333164840624323032603476377500144749693916443543437077700140215855856792371993552048244224890375703119423151765024814384935959885940460693919439721660826502687727803023671038242748394029249376521261856409684483607352156283757206859570142707955542004760303007627490458496060956253485327517522395663471095907716662307708326478825252724139721344993248502285821850056867843844365321727919522593758436375702343206310370452137179979932269626241078900871769735499022818112044119867922122262601719012223482042368886903250371043801382626925106120220887129790605261957019935529515196710089629398108!
 4783991846175626128235537323764304766956906979286283133305236961609088191150894385689669309683903471680330058060288425195287239020609254671136308468250883387561272103331243586543352424991879974515156389506787000445143893430855380261917352744575712904770969113693812578730216416540514218409218315140153363168371018658402483828917788576233389329879180808281905812874411422584780468650941421960499903689493086123524979115067029135152912948819923763908352699959463251265996202220103721674837120000257725113711055201208336587817462630839142620832705361108752296364749583808339395285434924847728582350951572826298419864848546733299553384320223464240602680021634130318749145595613013560512399393417109798257187437225831508521672258130447918005502699969832765640297400221994877129631099731745745696495335591773878620386100365893419753835859161295462465726272752128817484733115740045714721656126158790612920752474646149272428643682550481080368055202468505607715193089136621223171420697039388112358!
 8539912327274414827818509994438111759166934908042072129278000035351405
026
49827648807659077490399500204210882959798441955942015125788342522897185697048808038471348824827024682461848963909662425571192681406625442723959408926438563639653941216666163696745335643884362281083777962499433220943698167080012542249376834220050737247517540917374039688064025516473629282310740884549018414151780670452607121216752632047652680809834410130471204283415366870803615056168003979507142915324625232182634211950856847925003706511911841297814466623088008480372414943259343683766980746572822838027448335711771411762393593979769271283710189907514774743228466182805242698406479439873554421304938941265356296279093778031856753558409211043466487015757545479786323265061261624468113391730611022247849830860501349894203272326910871264377834744918774600179290178255498385686189622116495686426177129467852037989348717997625278299425208414406757573008569724266884364032028285630078097768132763252549527746831772670966038693861177107127936330600841019466969611356892642182114511969472736292368!
 8547528522371455315604328081174113254415849242453607488284789181448076833682464950963536080520130623949871865252772663852259972129377803173770411901313279702799777766211810930117192191070134833924880759049690418808858399086597714161508486174917722777805641542494761889137083396599264168564666390336223014766172113243244087170686957715418149490392375946425543661461113663617525138606350376864903230853528366625589551164535657070570406042611923692047417050780180955803921828391895773290038088536440519051747513664741690039117594541760474742512103151378475337322549157668954813752729861345274946973246333102028689266564184584132875908617342074831823371304052518266557155254440435873930014348503921375779383449145731706164627584097836548104952011378894622502639787289659102196184926343974760272719393812723665919563086626750893754821009964803735632512699735257273539609996409608466196588515031767354744917353082638302943870716738435368767288568811154008874207559206746175359928100701620237873!
 6981012711261932372058230966229056419343375455932118001449505206698547
98688971772509368044625045139302927525292220179776004144328276315928084059387904578578571926135902039551346510051727238642607813933938188862078563796652686129254760193598580922159116846252299649988919214743422625152763164501024939035713405704381176095930259221963249056750495894714050476426397107044992846977859780760325654228348676126449557074646554038963489890455448046806340007060116207144242826495761514111132891897833707528071262503395790549337510436979181495887323186585389003109010531936440875571735194573187273163736781250499328963748376575772162147265345231770618203174485033727830365909870253550768458880386681092624211451267939709886652197376655130344497200076438454595064851929668892014401138732189160138772532282920170491168896894150559490337997289318544695811891299718850252824073660442375853712245429127717602054051085605737630523729134884443101180077766910413374268025730279711701303328958839236821289234850067397956166122614350312960366089242492881265759969389422426388548!
 8894315811677988828745571920920025767219761803392388431065556998854847913193500483823844179074171988732198260907042437294044158851780608626972973333977677786109575945962665521399997064874075413486686336620549164103640948524858830611505151306659582773870251179427164628338976258300612052675151504639759455984015755572974900817746858807085628564513448619042079643520026162999917537276992395654604504086003467019483914915554903443066656294202361459051592890809984151246696756558092646926093853888705308234313526855127386401337839335423548542021046661456928657422969599140456495721697398909167845443100565058075514655376378913891299185032907404632044200143244407148416004011807618323484504791127361867066474027251796810137359397062849838688423147350721091591355713250548196799213052531754279449169681621814047607871534766079904646171239179222550267550043911920688055700413242886142054866583011277408274066114845008977833988747154687340836000371311915620157812553136291093379146771877386212155!
 8236717798084739284078739890654451745742561256946732227367481939555799
47013600571215712584023760099789791067499902996909705634478111205413235889412912406520378729549568368264227155045377249818106361413444609144164984154615493315753854072917458891250786289892216176116071626605997251675202684046669553731137925789585479789193072300191761215910915133150855188407026760199916305277140450612432164760948325172557362405416921540999910883500019405084090657952282829326841161692697230158151965085464367040811247914109681891335122002801737113839321502359529599178766878398573417694683165548862460611276181646690147278384355954001124769238347822241567805792547052690474542529104972316206380681036425036201939908426226808356627881674375076164357304007294459447008519186944348935572118007108105608672426503829758939087024328506202788387656358012334115873062967275915000746254872573397203272288664801886736826669135189997136080036710458076413028952279730862442913201580050682974723421778903766145808722775571777769198462763160386132786634555146484607868612803648001693496!
 8721065426081393820507110473177513166529225287908828148947695234072932891289297355596111828209188179255938385728675987339118673868411544442902102428713966552939047001033749447419446082507277929966438837696142406956009344964074773336380644924696728675564068825904778379799386321225475886930735586259253849766756676429096701045091567443288593870336379722006946036241165194881940748308675060295606094497178639976408460432443055533720182191904670357785137893644030763006278770345439219898204914518290900163843927303592046752259554416709350916710383626184310526539077053662607668234808363026985978761393413407149077057134062468151361708369058298089440952617087648431541913185866592874626584435343118703505990030064428946280133045926609983938529718875491617219620595373771796985948840193180620964112654031105725408886247210962940397814126872211428882225246119120686977436130804657660225621229716537748206697233941948386380929994979857573714342467273194760641270920377238354276508604271334479151!
 1475785773733863985244300757297320634863674140237492887878724952239723
25791856569492376696032136271435541100064573164577970327102403564810569641073236823511574797359229029066628323356352604952358280388324701407647003398067935800671573698073410879514990455659563052326190032517049157223265698710467986759204086651039411837197208947000366847251324039623906347732296578258369495157193219452604976784522979263349083071445131784742872736372243052328841759149134657422448645981247752005072950907934989470556759953697350746445526688437963020798106294250585603517956628075348635806334141780947261479809929131556031489176297802283788908390449383498435781390306021975508090308310680044023370736676732233062157304225161188712454393689397416653105352054453129107354159533089356107625918419257436779519474360885783180778496348171656675818190827789564729475072362975469084240182081561809584307221652907300861485232931974534933379560444942498291824711428239216226123670135755048508067416715424236750352965178737128104542270574348690993011317468984240976531471517999335639771!
 7875187840950099787549541813870527708200029606412099784652124554940097933422720078902842756881245597990772591483484127847636733727473414360540879565996666367538351341667990298587849836080337787210841500065200084072021875093567125553284694284582011110636909310047176264150264578989592026515251684103150518229697144700799697358877827633583765639342661099888360172156168962026689878449222067403106619714375575431119119055598316199373307619481476534512587916768871667126910795652009859488848711544523397409228208105113427223019164384830381503089781303278033498194363689693494580900834224170407663278163659838308257758230491316259831198978904168659487880537924927417449885476813101729522907887132235783467938420403150159258151295755489488345556883720224310178841196592941178168886009931429220027404503293368983414785112774542553696401477616472709678763924048383317500362650967018176878881571469969928851018419872968046201270460654614997234245075503002466980698621562233549293148013789002790122!
 8224046913835114124462885340727772495384496699677006055228231735348895
690
43579725607045149294836074985765562785750130564042354771471147833430562807255031881496925819521337465276771852039885159915976840978884028579787766133290236015148208573798954894632561004890726462339728233944405189608954843538821690557971212737011568495130977828711283256842898574771182863395150281300675112973990202363301285951570088270240529778635912087752176607851103982843393521223476108369188327715386551192447801825723400542375916298027262321472240961751395958980740611186320790963462536411374705150532819588054917662398864339632234314061931743673521143634971731958530998949458204401423983463266210541968002582973530410979811330580128413100826473357723777516039854988430711629739956083581727709077230792061933717505700231466602425836593627094495509206486280120608237908877997324854076805737762742448396062232152784071177835247753953062144593484716158997482249534517849592270216335732898850211626699712537543717618066270347920950357173296283404331415746294836662779415396372168638787692!
 0506264844594439678271301372365049488153982606985231269980356547904830771311433138459992133382311130953118656716337311328978372929919639371402162284319970448023075903803379344334971060362270950997269915798461240267907557921001392019635466509077439879650610970138676785033730812257214934063485539560834270876354468732483574628661901396112613522025799585062790165398372164147834014833329326013799926295965615109943701387517392874920173629253392683490565383206580915088338497406253079889281597854784763138694631489797893612607747301589393941446343019785916592919830430549713926907424078973790889713030189772878875379980622569263037565703522489843590315515447898399148139270312026775795003609240984244489874434839411705038249783366349172826092255490280859180851493265312677380084721595268893775614226393365571327452406204662041162352180048533523756154736146510792282101752126007906320979170069698202274728329579849353029891670213345658492034835222871967470157018147607827565444947933128316876!
 4454312909047606961379784512167982597800396021341110143293515677889168
61206934246950332574014324196524892612702581751897246192670999897361239908005559943334968754112617833789703113926862127733533081020436372046930630511483831497613225865629006159413195472148757909943081125265151369454903913353004476650487374422831355628422725635391276404463127672137953099953160833730416084036066965734601554082288560858995762061518315183109233782407754504327582826716784184034742392134445895575208886527707474241063296244208785074982075349635044878880552580604941945283168418508613278410386059268113512946224071209169123622643900882989845197556952307443638458278979412799235158727887272858007807638249491201647939575476473603617320887894751805651172234426997414153190728637695187242567621196952165659418801121154622227230112565941208807329136377688214810301146997207774331674527694316139206403751368437642092718291111229981939697353395327640179593573538780424766403553028081374232170950111171366111132862638987711831786903459884864098718980043710916542747888997441892089699!
 1171630286919412706270469506743582193660706412886842654437249273370732759294708032178451572782545385215004392865932855371402758693758766080806458839029645158265275957155620764888773276879734683138932684912311139032956099330564468597869707715455804583139057820493255715324021074883430997331594511294050959348438229080105044091893989038014393459106747439479590699463076991089372097420042776346752923954643912488454230632273851056977083866978067304808620143317960762569485743720843487266379555031601000738818104428096089146573315313265838372826158670836596200103525280041787412465094493083089723700468597638322209434635016368627659319763663824605241533040663918611680453101990378409801089476328559276716514116674873745080877525239062332368182393332594580758017723935935496890877848473600671365842706762082332734405291874182550565042939508485260116946958908053177204988224726693734903038544434084702562555503287370778695361698740906356613027697061614906498381277598498394874268358204336005047!
 1724265651159748550941626392478194048451345923208172476440638129202656
47370183890449631340688209199828805314299843383214813964666647653377798416249121733304436400075107102008158288124073313185883602385309837313733579801670920941508272265434466306827680148922015112299278893405837660464014573506453012461780410389396919525716758823643108107981924852356486532880171873182964959573181861741198309482721244200016958863277260563792189885496607780745435437494995088580127012891971565314717728401505374043314817557677722446523898010965550909248440549945021041261335479711442356219315401041300090296105740356957402891561498227758672801819290626895865470418530440129066163333103041787077225615809406583341552432386397625750138981882515620928054142321446425438302871169298631196370511973802963013222916842356338644460212674517766180322188190040403221422701642961417897479114776004158516401421148366716910715033021526239766102448794970857435262212299868958109866583619994346559637982741996108076876237153180667342498103879210724052771680907982045412461188162642936723664!
 3284752183032086806710207165317242539619159784307889641422142988554362598045965041839717373856956698513299591130039165212006984999211737652703173139917358484146353164706998502168455692893742544638854665930429709911345259556567035900763229745964990842752163736406017602901988969947403853013975531943271928636752467049479897939888499922743499786666671291347263203904717335245016403605906218908169784657185837838599126351124222750311196445593221753828452077550886299317142658352991739505765470488071249814253162492339564246831146503148715597591609969164409303727378099641170442450130359235107074187790519387260027128510663278521641085425921175802424759791630289489223428419655673293354767936452660943146892793311635630505350153446742951699536454603134888336830172413471518691056327683105610013207690391311914279764645735064989835365694399231823458239035512936626264067917810371017826935683476903728254571422692727808661682449446750695774538813696736997339998515903948896274474428843623060789!
 6239515256060655646937961578915215854188898107909247959698979572543586
84882615056312315253311729010949288793482020566306697389492602384972290309633753279308103452035055957335028689073837994576026530378214131346308448695727615792709789465049960191428357918432977026244925367471955555834008465081389746483079952324057171142818432385016853665604342304094949046373890666034607073259088306437517911098094447817156261446008694465540058807208550757003812593261473047021513818694498231627728941908345169150319473375666813684651202402305904881761267154530180222080419944496322972294432389644638085779137589205684904761195893043955030470427197963147093931830911130575370378250580093430899907487661933295328481280023517505429025724882067452756220936118003780105583180617780849701079152482776192902354411583915805025031257692072910216544112034644300831967623132832379816539424853020735058422040419813736372825081925394388322384826896972199499316249053735800826547759494911690582251818711301033998237812431303460147838069725097874437093368920427468129946383490075164731149!
 1622313259924542479714617562812597539971810536052991858189350128791633619954200779326225312272539493439586058625702668595466745757319307375602364681879423228725219859635207202193760331773460327094882562067351340565930415040448203185860239831270405241686121951164755525095898115181630253719274311178797711537870423445142898542271656280617321422600011513268816069718861140046838048629484252560588305144992976301959165073197989536108282759900969561611020405169972665314469616633260252915210050628989814960250441013923235339924282962944886882607872449348319466627461695199098871988056737658892223197117926547223103900019083096854121153231106800779429208567816673182659040207757607296668978633927517200133454461871305678845803693019506154957901868412103702892814002377989705246743780755245247381756828120618484622688293920407434619490430548105721534886237688038491344419342257571783303959500532702219492684913427296662119442506909982853662817521609778771377153431754470110250262460787720034408!
 7207912428740356918856802736721348909291256367380064135426614804862714
561
25954772376759425451936875037718836484194154175245832524904839398005277557155641728819749096532636059964302942931473647625911404954119372090757726206401429454872891391784342151495798777286079958072746570043381469629111396954753025957541526837030235507620422464340814621887187736611341237234911232818481735754281978741292796693985856279025395667181109356841893965076294560601279141681532092965702382092517749785071612222995934905281800641284749393510459784024933477839409031878029788079205517770610785366963990693878818552506778793315455078867595920806268329276052892666392818222816180995631495579240073128501817658879848808139904074690990845986090177208987523806349830172544081204156783292950396735833727070533242437681572522541041498759772415017199049456061779315654858501106899422691574614830493592560489954650999537925513301474006640911331029409875951424745364497271982049357351114502388877771691760648787443693950680744113588224719826504861391830971184500079181577737697855131556358418!
 5475831417636569334323046820265144738999916110487254608431158774995433307641215736366122464322878108181408738927730877763686187247726473365254651547745156950527854819700634849226269063881696277053432725012705588397919123686319939042789185365010317762845488344455192572370404919755425483876773033739043121207777676203880281981462895075275808730509028745897853896777236656079393766972866539779085193779983587797755122300199112315112533589947822508836905829573827507213577049614800294289735832613384530092186032659486266801032843492791770342852010878182508717210754638398412547587814000950711852306603434778240602737860552798898582113516240336745822264810209048598211480057814007062133130989383593055375368328012702660405598194682821994061527914799592643623433122741055810191128358017612513354941392199548801398486162789162206339963794229045247058591630586564849961489960464259386883612761570106334353546517480153727615726943842991128840092615720619178117442462522137858078724044515349437083!
 4850934881399707813309074300897017938294816337934846372952731845741746
37993367023038085267161748258157098932278635503383893519414293059310692462219808108044247489260965595862578946103576150371668551929320077694306008632731865897910522370013988242807936721288562911482093525536366392155744467164385552759936422987341481246517358374114747258946323980301967554491470715148147085891027865548942233396642118856545427436651862742873105121084186972859994017698396727139288257200389664849041574175465388757056086460768049028020847330892616475541293912149091353162338520621860921512989756178263887484248360301339642035055286098901219050016135140763629791244524262945207937729235542488813104972883097139999999317668842000645774867313920615794975278776543097927936072374543546638973814207637140488430463063415042472124458204243179587049790193858333430625419604152510172844223408228680011467615562957378828156495228084008298953266748273218668131233186746091519657209590821303718574206038324575876623485437463803006829619687036842894460575509305868843069350145760065966613!
 1091763909962488005593171492912972456629993606189642177849958414630783131819261013086122280561837411302275916906405509682538988508275767152519333419860352442809562459552258492373408426124415610341321472565128936905524451431199126517386138702698091580050658189316207623958332030476536231551283591947077445508811697966237618902121043727017723351125934591833530183304973601522528402946798399891057106405086137244609623542331424439647887642347204315223201185588691376323896007710797346398928751264979800635371860918069347575395878267555901349180284089124228579845630398685033655038173102198706075361041447233173002763743827616505585452560959308123652215900158400345026886081666556793950762633820683060559046083905554651019835600563778045601217590688697267785534445042267381536997049673140757337805770990129890109627601290993908367956672320067949927166551304159486359097145072672466677828735781892996896408992789932633302423305827622164944726902484670546865442934723662787494600818937134304993!
 9727973921628672809324044655292297212094769298891292353194386081774253
30227594360481051499943955895827057833651913774070957558949740958644490084407081078794043106762634939189780491692553832336285921632758070595606482632116014473901217594896905374654056939022650043687951911634864868056538996281004216929193344798966698778301335496941690078875227165291534035018074101751262192647190697756994600136344829932669992625345220420637360698501321587045152042874576582270492955596348936479912566176616877482988340946651598642491663343369599661321331160633896687730097491688216529420074426147763875089982945857749551496047437642889133337736695385962935636876298942975183427726187954213722467751780191611240977018473206268661364286662367440737908274404968121296915837182788420576634203315330079761784299567742023336918232521520181923384249379078560051016372292432450075307804626139764184911836939956725515549053281998614108826660709064284108284356080698331757231454329960958632967998888579494862733001155749691062862702616408929005061567793297225968093474949532530556300!
 0878347564304244373622869176133727243625126519230462860441777820367934639103259841472435006771423672491091001273422627406610329386421054363267259658974280154744375153171455612306880233635061284609595257910594970299064069665721658082818720070349056825399888774254021630491530367863932444678006462283117773580266135090257151249759572209515205591103281849496633077298729782119581162573914609322771818100938522065734020493817737987170713502088808297228178411193317889713616082509994531587904286982057777111450677686177508141444866848866826166263145714135121096675079135028526123829467027566732041886363162535134401739647232672497783359657962056404791654756621333884373767377522823108239340021372502143204287760532856426090812218197317089856403026623800175422080151043110370843025687970698464990192849636236658051700821466415323893464754731591621829461769003378412079938025553475971606230832576728662703894237714574292862855689148094325228639201157397728892295426373755004064025842056090178837!
 9724743630181491108966463640622676455672709595749099841312437823253481
51473933156826886198440179090565003552809569241147429839827490336890404437437767424471211470696145071566111177807194263472169896270343319272069558776491244085462573494828252085777456889846100254230497755463391691880902292115877949849278110283964557735294517231078312516015976411358989930166513987324306822934202703848694090027415976481244729697248790157430251481504634587604603162342670405357212676614766036808025915262294210762917198135351067592189915882651124317178695082367090433745916061886972244620825611107483014718638568505140435508115880321516937956702387606155725904737113194046840744856998877865419343425576874116226522876233000774583392118443545864445169086701911356421802652615414742382628981610355123782912290450108730275803170981753465860534697823788090353872785221491652730585471936975114740202042018640688676490119508581391648925384888006065832995563353697399580122681527982544927559163949231555201484074970252998877304530358868622381098869944113171327760395029161667008555!
 9433219175586501517313332875311946065567548324104420443672250905875115884732437383346239967383861931064195695319524669162327356757135778323883680841871010836358972201179758200773221391645671193455795548047330761567614315112057870829513302970402143640294416157815183285027625427010293407943596384698756835906263147583964106124416966344900417708932462523053001790255734164669957789124170451612948027942701164064756725786947735048713987092529163463529751987157593762040764572911822596490536902924149006319248376933080223908976498646313678745945311382582930737223427807335278312305320885493527499714414067283357443952607370511094427058185354925135153606320485224591647565133559571816650543686934876949735852820242962109769014934532893965077965271741557449865475131218712381944282168781422996631578073971699904773267308529311676625531368872626672221974159822003861974685429923303433120508858646116829092776761535005313162882060659890606473267610402688464708397168690949320434254724621590405311!
 0368352147923218967205583370296411374243785983244068783397977786030159
331
18963995764715452755159770834197316948690624961606941898100440353512871333364299186920132999729176179301832402252844187599952170593622312982601009434743699181312377909929869909208396797992431480899008018411666359792229681035215910673044494273344916664767561286061219972625025577912126704433926506828687646066468861014788621384008998153026197420144956776041128024590070928430577865049089345090122031849629454364306972570348894262263425144727384752276531775588975985087328304492109633016883771304472565719082983373847896846078187560299190279839405355141642394257620077569632164320227984283121567094103600847063155289866732303211053361941039526598299491246788138367481574404160239983366614063055726395304472889080963592586177224155115339574489834312248502050188979097782438427782229398512674636039637967190800282427792992035260737510131665035625498797603644385673431984995091721639443179870546249099797585227199444787090053966478925775919441238838047854391732439550282797437515746048204286093!
 9001061497237652081471339089354943597754970012466397340733505106922090626931721491011152927162958962561394776324130932241504790003140036868744946766682320195944331123582363138747064765661041001759347292725947310840586201560976606442752678732799321101065324165229455562223183679941728449110540303303007472264177793065648027242502085780076664241593696016454650332050562791770800913795677559854069868920395093436340771932882871369265283114506722905410162241950449727258243783258643608134140162984100122351454133989841552980016995125502854680904842655277348822537742752470937988474506319983265906955774145538162882556866848440560473368107602567701034908204249495437364483293758323427860997571835550815620861416684221982647123916508614587179929132821339403791252131901575829699407648818640507680355534344332056620228039876205195586898433703009197660451636259895762353156564399318439266069254698653678914635289229676107186141101874674838662889779526036243120448778379821071015226818988876202913!
 9318781169437173922973813066589369745946028904355207911685798706383495
75709535182119788510782681946142293218182537254753014713573539355225837926031477450360413238760447419211922824150743915691825726905795457984789033536429830922342976017604505626839141470245619269995308461490300160615597059807655819857864495326731632880866320638718869463356525603964317295194128315958578456206367718814151497517253190077849618829426736311216278287130959709845276440917822472781391349415128991000949512994908453013166739451774922917133204010939658972795660524943548596783116703770721012375400576442624463927037449183871534911805889075214596354756702562230300146799943913125844319486271702933877520078271709770520935811879575837984651726329786446560810718650332019801663235107321930936688606300528180280550295948711868424512049162425366586488279446266673513669679100263312422027511397545764987605367128538957583268770325288158278351181895936477745996191237454977492864018133027148759495688894229489560527634474474728790030127970927000577694120481886564013116589040330318391795!
 1590464822381410156094060757044898272850756688358554797056265364550972002203781551869182936893018321874878835069591495219270372871775053743501391835976401758337169639824941399526854272918974252971772234119464977443161492141482094639843931474838866456671406905387920276277912155172208165654776343837894578843549649813023340122817793302461148762831961030686801626893904407268091437115101355218769983959522421325208542728820491364491628602466369501630381028274856854707648905491036496971148959261198227433915738385866911003070247401279508233223859334312933531450831343023221486976465946766401869265639033191556588787224898331306135742001941662512163632793595072814007333787892812746287158197896291575663686835863742271543879933416557487045762895864591352619963369663601588797689749525481307676906138885969938936032081007545923092627449093770979435222531963572062443924870117213533111377348862765590457764842053310129147706292308006015106703120347860073107019792637500262712909455036149392068!
 1352816856587401295671111292352135776970965085922706543613249244102161
58164053310143850792429255932127278060469674153755315366622218612873661288038212501009284211462754495322897424876803244156152797583069565947626893450244225069535509882319482538202606378606118144776381495382926677751676296398915886730148170733287207589713370201856662042473072121833615735397651239724782318664442444399203508555625311693989973138260285174915984742298964309271002828373163788063096098609274788103192545658836877415910575783302038890122894985792109307086528439666747829536307562805927610395976693060349868070130647080131302978680002748473692467990337893442334389382913754839424626882845786276811142552710196921105975126217804076155251540399942435014551626673186591125624737584296693204313732135603422763009704686804028948009042535762227015245499173850065287628208284494723289774622140656848629772913454806631603446982594735777563051615561494878213284703224294892879486694433963294461797668284582910118100703473517948780117922398814914439787513474162487573909561315372041370045!
 5216803986883714081602335799444156069410887872638213020338971003799951016335970766613394378645499920248975123249851105355532553697260376806840431030369847624103275144680598482749833518164409364407426106383430813286821838706901670245370646215821240801205054280908116821317559413995529540463378505961526811666007067075116809993103232721917052235278686527253123744565398423714807131269908021498142710907984564962394793103632503932715690214485363939535570996392613413706355283694079855691675861926761861022206910882095003175906255558799044148134393616778698527542429084263952399371565755451748962785200622560015667895265912090638318373362423859988343853824694259664295833241907529342274995126034324233674418833943067302876654357385269541451369333105026535768322846766096520368870279739778370350703717962545742445754051163217724554798081067098055175850952219887619202813077517115927515082176311728768285936435665761256811451194170400407490128413898373142534396718266812187402333410312253279064!
 2753458607039927708231669897546550786465553586415952874112679449804750
80107549571270721469935283375954060689577249791577530068912962309320095761486922310891028548610054472809101465309502976500108897380505624111300277162749787960668010985853622550375036459585607881915305682408232105734761977447375543574363118277047855678207547357917451284528128929233019603620021968440751077409910672529890205220867476141986504023102491528828879490997516843702839884536884782520558896085978948619912272272442100265425242273619170560112198481877265166850985299865208474531735375591823591271057777366205507409482064859408181593694790264152429184122421578891208191929961882775609985860356636359069252469914184678526388777441479165457023371479473170267499460134216425860667595778199718717717441990038089493463551331933761447158572603076896505991191136417412284829360835010695799059001055607831543748232868730973050111899644412652084907746022176789882108467590939734307859519683086062161338688570880778167957337604105574448328822232366477807112396773278471223644501383798549791847!
 4878178884631611702428454869727327382990395156330036892851021022584031510497637309377918591242367458023873834151501747850993165223310783761589787603541568465511243286662779528617187021986687227292836154676908686544165933530621703037910486983730769675638935152947050213275444699160318570518566410715048741039655311800328610587807806408242273214247480622931327200997910193924550821938190185273983662182931963025171334533608122144253415905128152062178405556212515988393457992369179425616070271275653058030120653918615115696718118602248279774570491534667497769198703178848682987753200799929361656227696389600568825302177499805100071096252396645456284883279675289376827252898476956376827667969895885428443925877318142324051542226246334483164878846892170739569974966504614876708037908112728395306257010464131810491183848284720003953442943691874184469272476571611895157372963212056186980344094804523229301513786612274046148381082759235117435509823076142384448924662560807448715479943329247330348!
 2742294192823990769798471130814733965742259503148618346841593539736491
635
83813129702451147347425643288085430116281607121217011953438401679412678241519177063448303448386748339869895538833786237358868375355810214007324525261399769740302002017735937234533933924296046376740229999171732956414513584961154858727151106799797569572119179673125888012335949214521267307685077846602102572631180678071239941658504144443519162182068327074764744354752436350217713872916824981415374479921303526320566427402584542446478297252983763980370733139337346854719076214676155475869445899194079404772861131259244703581045846657378328562479190131465025218732081185977272136012498056435456272517447720722904223688503062130908410866299244818755487873723144649774978537547386867082092651469601810020953918994090584635929271095288791827205531350231211272389589101235291500237356245898696063962235818582350555781393630406754328986046474480819713219966887577253260073690758010257109321518867142884969667449892108788158254419622850310213702196194318775797121574020768184811043889444983310275935!
 1266319740844737885031954225163865622413169704936994751489742620505886234935996823566718796517105266963608113162296072929357236866977479704391417810485991258172277786314407945994537405736932425400489073878476150489865847500364717307814444042735669481325010191171732169878487632843885792718019452620059286013256525876669630108980700658784289368025539513604850231106731422388078829329556843248724677692708542294784690548906307464393731531409447134187140952046733908710662700702959029519933445918917191477301996296452606482670808924774939554724068558113089467254536563023874786848360053898639887443486879075094045217422117552513879048851392060146588445621662311787154723024829803647851362659628550262921209610888633697547687630625628057632499360353388488298653123683896885462351607769435480933714917455126503649190635428329420840555320838537820501002871822495025917634995722171985181633680512516271899188392334197682449569363457019720923091918112811615777722803771197097486913742259253894062!
 3672749222749700810195459657628608079773726256392684043473283384785616
98525670958924472527821383773871263065270777950134284475239429553838706207177605730195010400371803387313479622152583748232873914883401995117059282235393522605997693180387563146012360755036068834136635769740123051953156902502362256179321757897091079871161505638076381096633258012693620094150126377399354506240840139407689705501050563730688185790160403750403090938309182354492601335525100809947279469049737293794439938507027230634026026928309775057201500534212318168250932855163427345076295946286275537078060528812728337813355724635032482445877132854758205093746602487200624247529040891541361612420740595614017506274744278451258718609216676049157827200594962925542914253650604795360205723055529119414361170134038155234600603218615427370308077284865387763310266480502878643797087959983688320936379968845142058175415767523156684109009956852525665641610484266310794844000058494114931748533934803787082633775280629614724043504936160478743327993522694465848783020468688275415412224411156956923019!
 5531919040276163419465486572236882452970287206996509533995486996117631819504286684113199173844023545629828739181134069279017769371151881718989437629033265009589650774875086109512990166037906393608903662143740013836026341808131085251804702815174904132919991692765083129783452359216256611911397695037409555580314780347401466891324971925115736096669642834218373926826818706507935745128274121509300978919378050601304152644585928863516605835455733912680722309478995670604173928240490289515734489914893405957631517905651797527663119949053988902048286930294978715236655527170958042060630898922223596055743804886270707184051263476566267030790257842554653730502623313184499380787870320108670760844081102139939353566955908037204241793541187400568746439796159028189476541138884065087545998920032186479089693965668696520820057714657854838530529382261313145734709405515923484366187264401865418548826237849010636243128813270568434764679920975224531630338019640845645288068045245244514515023896393130245!
 8439285669570402444844588915936113114217360569509438951026638353925707
46590961968862694114890856239526201598988208353208260526438117750030793808328282276473406876174383785320062525104634885082729766594586420127973099308959760536895157309777115758940644131654585341913414125568426145774041651288120376572771524719801805290275674678871729994710368766953357266268121486919752957442259267040349953251970901482459396169125418992225081783127556771890973789355559372278508095288675107664776681281354353632282569676966346151087561548686976170871191396795507216568082916510301097775383319580594274470574804575043219564416749147895210339062621917727000858700849264604659384270173035731172918136416162634082740790339737327153707463051747743757439711415362201719367434995226224983918626729744241532859806287568737935564445153701275991479765360960759877396742833566193426992333767355423947286702972043221563329716805759917037595278862326092757358481959606682020955777380708573167172922055134108683295874449752129341302574328922106967385465737581846280565341133378804261294!
 7884801002979613978816928891652353381461889649527193860868166509958604764693662490041275959402723531684712860589083897662122037397530507157800899951457435213662306124128722162502250667967716753783304972015063271340658579754677862711445143023663742041595369126726499313581047437910491709371854863917464404060878887303627778217029359136100755363382574205300295804892892015108984582910122171306239159986752090173782619952995672916994470362958190897330679742876324315633139834418363321098780545227964170784759678388180239049487212868971191248953049654224855653848021463857314408192951566628609720035463051381392364344324128609539893370547009071958515626614247686814365227189647765628501145031337708233207449357034676881647033235882348938177239901810236198402232981414244653056736815667838873042378866280130598348755648236350016632900543906310144033957594450459688817053509864248692157072569123634758738744621758498767940783614364087499504406030945978189473964713920733569611686509704677482024!
 3383595092243402965486446692466140014378233850353740043339155114623647
52072528663758886048573170976201424085920765011001338718942496944058473841535488494576841797686283370520881106280502867741691504019196435651165373651593921985721204844575756594063722523386639277985446488697683872199029157233248724622230858202227563630412083854545419417669594620140616172959434111842098443527149848395876156028206908467717329469155527242330008284163826711007822727196474171411150279752371816867904442561499874340503870161039497365292877379924580970322216286340038497347820310456729346784178886235501403365299396608019871881040812137855437570580081750459630781975301575437917919393349325031010481192947254464002733952123642040454345030121523155651860735560819131166600432676799012936960096180783090458779758950255380267779119007489501740740780724147454487500865636526591548541749548725779204806248548382375082737175380166331003030572695770173559758370419906607262006379069733838527093020058735255986768108658294464753040575058379469351723072175276864936808815513238075319112!
 8871697404862745852726080692533829559285315414782578025091340142162772367485385755981705437196501619992238868503904105724286243033623306083386027018472601129990424828143778268033663627300552393622525604407186559062266514277971570579766957577502754959768715781227285388847878781014409499018180297580623291155484720550907425383260098373442597158326896205214679241231472968574410655083745568106520119294712664936160162468556825035977972297226376316390242552423837948144809402904658613574477253953716804216606782377814603287397908597526451022602003716510678773334597309993250723303186204865572919071948771096071849876238481536317787094671676011863709391370243119294627130854652486997234830209529671843969708746244917022503960954819159926060319373679205773139443467666713737683910565606888863452355577000091999519833531560876910252590926910893300619480661625741671388846649408239350333607053504887087578797312033402284827165950213828883773455443644519364802167232921758042354548556046407096996!
 0378113718052474995481278362163565100546619847608053873321877283390200
178
71812837134850991011939928907573281964416652835934630789840291360045353178422116041037404264000765826550784907481372129979739208875529216741819919767581479771301232351752458833480569371542221671248498064850722406859006675975112773800583232135370080221969937931882741849976052011384538748979775587020043276749366048328052292931597751058389270831291128601294295383158805216778721650574030377815946255853966608053190355377565252009115376867012081622437241583085888493428879225591970115210773334906552509168842954357333643075029014909215733911972759205868479283997265264485801059209580415436276986949947002841437667797076144905097644071706852482966951321271636985762873011915357619166702383700429480730582911959899181106965465008782993796136228956923808980712675881699439150275348660791272423512340060538333879131236145926046901519332330523235149191851871771104699981022296645547085416340929355511465080358365035477621196329491999414587726626008354136437589196445072027114417289252620520903282!
 5931260691009002448602323159247827905118743503835535974512909851457210605208769490048361126910123246199889859978105790867009831772529750954926896615495804853959622147140446022162217406469988447870971659785001748989169361397112510507564178503827065270497977083007459292522803248698088547191740847599947593782969088056008600529759054897365255028463120920730289994530752493932538757938055599372046365449211837575925928577195060781868298604685567983319837863040265853950610595312223503222561286392986405510653294624814276651654050910762230442313233860846211900242131557137078363527517763772246910293954549934193427303473400265898748185500724326417007247289666318139249797436841329349207324864987534580879171583231009944650526922594339653775731428900981155242629770830396752787253476073445721179931956339432351373137377013847909367453367346051542684656352180662116957270721059368364856235151293038294441235313360094209834781414297237436578711911887429366516130992069089448529892325669466143020!
 1216193852579951913380384118619389236779986849324697884365462269971561
10270199742636165929500567494065339873740338814735824253224758892674385378098986178158062499857699618895984215859448240312795119798335067557896607451376608933177502595063301665703509721343522252376948131668308292920639123113750792040188711389598424276281048747994457633681552773672373405399550885913224156945209363946119277460981662907195563333031896410272930448276763774547538394005077563010512137574758946574863170528269292044797893005369944154946291163697998742249270303678007499524460019252794290451405434049622522070677241741445901277584930438441916947182446358945359393908307895233788038954338903592229889974445062985891544968134390288308303609166838400036951329341816037308042375738707173245623229304241097201898604530031738996205535781285444182823550617923204408998774129061899731287154216382164682779863542002691228146159742805120051929177922103365539900248915637486703699436121201993317058150848804580802833056463332885595257958852334047613745794534356768209092887939422286804778!
 2548540434679046450577120349850427778626677068882104274754870852584183136555944412062419547780690567308818788094917703897813991066241291085460711296497496153293428818024111921482687989241787135358182176206406195177133405387049401681725712098604187636798291552622105328200847751673639162249420636920161016181878790171633393490222203157046495892915660111820780330597206469937095868562677292011043899000595745476574496285533084757766241675081822590306828727506987848825721700842158530486925831755822546831090486918277974113104892913716636781297555208343192149972077464494451139109535345138892669390354333726791851497108660607134923291714295782078096333111287299809422043134285312220555323047463532150324722039448068214184338026557787770430331339161242766255908014112672276397388071350929480165724265737803671936579619809240561779486152286221760799742806107862460685336064007083970711459274233437403727374852715884964504424203882700398592687187852482128673983534052892896389464893913128980111!
 9522457109164401439304742571903350798241299511764769485141318150826335
86738869611425332384486413591845479351274064862733801762071501040633426243838619595191775834034308744212950952117519032259537189931950085566945149777061647752985379631778891628098182218479349358008726791798662095282388987638060902226721285348319317045372543422203574608825006836342018290002438468262630397781184871919736891571620781247225680258617614464823051172199573937198922224913041130838543246836293647746548096269491164956078096858308067229759168342890235158799056981740382471217480288150528150397764681006610862782811944654397622813320444772383226041640248238079647539645234625830725711759598848750796298979125520953369584198936877186947126604497187997327373491893245015932454186219729259564329455131350200955933765328647961863866281243009219557257762179639452769432817806571834202994652057017940680873886674438425503608032048606912448291709248147871986757574183815474446428294900234455804196458392947387640106311165582157683137313616226299832871546025519709507682873277232202944388!
 9295103218631336526391245946304146348941897317590138847258071280780976051503960404388374826108575490181641236053874893076034032290369593696492946945142578142915205953627185606725865043051036975872641408927912512501246323193751289498641695201975797465463433057256671217951715736312308240106927401195790213771454471177652949560288315406297205689889858766686118438351926079789377309772097063372093969341194425470294414832905983328953318737767559457661089951945042187682296054850898990893453685460352569008479672318972389697586731456445251986925407253276426411753801556416310012659234564190318616891998273787062974008151350146711460212315974828562243087108859899190551738579078266458150802308221206199723024910578099578962452976104226268480853716776371523551869588337334826022068565302047718605225232501653815061444164768150139575110128696246512141262808941451575690474791751825319155364251048173945849643589138009618348586088643988442129857772687105479123551237502833730201624730959476122713!
 8988205436616129566245832534267552065511833215646596327312598233162296
58960955343549561417186241267818718946886665192683605154367228880703148896368356453902806201327899555959312327348099098495120327258061405605744356310102004734008233233453132062557396460875154724528853994171923169540066434789028397312296082144865239862676371784281403548594620543051228913987705151069648242905051670866881267231201496924470991934522305203274430076764973158947717143689663846226286689787169092611878125538612712521230886407586698430615333708175484601015414933566239774936205218111763417584216902632548116820231096169192192022869682450721505971821150288341031315756421940145788787279717641106562837796086713471177803224402512537359875009651352175484706111485179980247188237321730327986255608418134475588108353717509062083849567553038499393892357101996365134192492568754627070734065909605745546412514462065429172073186414794946270054205714202462163115042291964713018806070506526991445116014293631596527824543347094541859416111441185790996886720785499794746867787140883666830404!
 3147069480396422621871123611092174928478543603480559432757951647361905826280666188671910802416365180490245178896013255493864928903024320281256709916436738251298823486515026925744809368685550468198321753699020472699982978504500784100117373854948677002520688421295322598165524537514036425003017763816881198554486249838368281030174011204885129917747185461917497937063773342589312029895921845707049739873081485141510042690350849206673687799144325462097443996223858727217385902174809381744942931190329899673320499501207608846295991577285323204217684633856311316447875560550538144049023379604929496736980771183831649730394472272563666575399422917030713326007292072013106707857021531488618182465857645393551408724645812688054246040334138338171452022768442274749478282098113983993397823205128099769949941414703922788734629590056542573904600057344555286882325162688448301708408414170380056919801265302196925156395683548118037024860016033241653135564470216696515376105303682353215991601198053615624!
 3744308048915490876145930632807054397737580173517852984050026391851658
883
45779609621557705351744288527975573926714267988659452878397442255967952331485016749399208245727890201848989733556863251749420704613725724635511686392410265447620707522051223530556923842542262469082820075202593830192617815994390239132156736988127372591213126053130776062022129449829361877569784632417086625983447647068042514601256868794424455157791088216702384678561612672642998407249438460102519867189173850889113785398684761957511987405603368019341587705276496809521586501438451429876660723476584865151291103242794880816687101728573600352970077009926686733830512017337498316246318933902027112780458975424501814904900284506344242503786069533969397720697860673703729056743621068584343281464840001120414955668363546831283883766859316841167168394790999317218568271857384728653957544567441395299038322361399289853088618538835132645671929328660152781990812536771985012593298994461779414110256729478796569036323539636017631771704377350776687941192958586777104968111542216320223477055601741204684!
 3879933592670338923451782769178962785076545158483566701678572708095623942517978018102880056073443364205111448249566286118795044027232047894869579167017112948945893404607746719909160553338456175776562448181039818443220489696783070500044947023950014271488780257274319534994070014655798486696694058999476765396450372101369772051372485000935180102865799393917599308077239783570331207435008190024293497340652905541009708540375695115084685918031570315568149727088626291228253739031079218123478547246625904527114303408313456113671970897712919480965424086797448704828737752564432332112912549926739244767566661254078915486077795101461185142458943589592884712126063677478829250546728811959990331597058962217104303932335382127275525648133029274163512805432250868766744852351803831775650910663330618800284465427671284802543478046300617094578127247319971235166711955229491650333983086906532798472546444796043349133509129826470120065283143571696125905173620333386754874512516058214867513018196725553741!
 7633792667840319297221579900779602830552640342420784318158971949619724
82396640874990674738616671975492710796600128245770023998114418830666508099393199907535195716458813853713939200483651929762430263315328198224182677334844135103647952522124560374147701001271830038251557348407138321287944435395010589780557081173146777336708543139508100471988599432245686887729981540008497194863452129812529330760628745251310555541972011015004595012762012754476893619843184442077123308122584356711675318081989944139703069067339844917874558092541926972821608812983234938472791270257854649116768746028280794588812649606973400832682439188937429126836807580850356581087986663300705021761582182525155795974766146578843688827148986802546533684287168758459842588442757468978609901185018282639745288735277908617543426159677595054771047043239206687343396235768832216513018385393923393478806820246945485800936144031343944789992606120228583519707536664831159620224857470864960926977975035476214569970580538315984882441577585811642204978049738623363050713060135098470494506707968965950076!
 9496164671092456141627282457334137001434363772785733622545782457372443805757230127362106471282614167991867576489112657763734439506176952088570768944861489220806420266806466101445266045247548236485445362884498247715093700552467231618042965962817838187434649036942556545072275509628016730256842031443158943402465491003130789072902175877433878229916629058078322407669444834471476892211599973559508587041574983301994628554663661378546586919854917916898016710550714180826954218812746562120202197137649552308192593477936078132301985786292793348347537221049117409867692639172105180240888210370627070354062498756167646958317511850417182398264636475828557913148372896787331905493901903425908258299574655203496716385853869100677555830996073726565262968527191717935890076842007555194880210339924564268936052432240113379951679874293747598503382078777086453882724326931963924669901245483519932687713905293662429916136292370905000630046703710212993717529860859178516448116613518936895751396692324197150!
 0258602024042346697787732777278174740435981161010706342634751222989699
87432718861953506778782637196413090335306981917974401215089856680227405871445959105657356029960368121282812985378317175947992968957549267345015330247935682377431385065870780732742857039308068346550145592961294134095639040819213383969915423314429211431355728900154732641095103166170828900523738305079905507491297133922531433761951230372655140322954763239003290434624734513694427424257902467317674801961043755305821848003088867097558030020394479859225951211014290045007482023930514187071582058170431564346161339520862184238565701502076088798296613777882961104553810990388929574871960521616486367195869619570068383533804341816425094721800859961768295319768631588232447298692460006298635064923867392578253802790034436579247627232488358472746689352716730447033139584084615571563285342286194585356223440353590280869222019699690068432200327715197139162752841975082366515348969559793627513574187792585532351661563838222248126450036396518425827324525464325429816359270927593793917687273984176260613!
 6340382594773080217636739033231692507620814650223047848633109368210074475180252445177621983028991274319554925867471689821313245854632220227037937013149040707460343332658552805947866676224565447602252566929472969933695714757042662118271912419452251756415194770528689817950925998424057377421386462334416726580255553236943228336896305571378256357397108647269076072386741424874225158558034532830555053251312328481561140034020990869298410749622181156518970684783084734279476008399862449137405764477050906950987748259528544245503972834945540133235392901484940250007189315626619008377219708488109159033590629482989172228522194344422727221236659748538766720071467310623686998596008328310293968784187836904361470125767383673819639516433573105735545685265716682349289340218211346221727109770149525244757339885462693164471436384296625600202983848742217124742692760446267367705620751469225244915429734539318881140860889625068886967028758540502117338574970887989691609025677187015852875860344484245981!
 3903353315306860286169348634493501419312276497754814769101897355159080
60026107080314020901546195867548590676224388779824556494070500093048067539383862693004053021952966500889885655102236099419658733088736476476327940536877448297094113581707175447023337160663458639722396590250587543662006081001366556634387485876501469551917578671233851002301197527400425908374799394783291425360036534072469522701134279244242652622844691733896843429731424191377080363790782326403102263732120839866316281442575578910686920004265174170509458628854525661988864600866924305044674816951440367061744497795108994936915845708574708576992999411498604419150054328911323011097953348299698206521621849060614558891507523369597936307691723984499931022536478154342586071809595283003348074817865333019188244545885674780839287563948846828807021423977358510599527663674090580843600362190947011181672818492879705551427514244803754775436839735775838993981395071895405920171883472980484594376749739360665184258920668662124528016270830749944391623652768174319312025121056321242487976480822599097387!
 5919319098203001261088984918116198880025916398962304544099615391703641426328319273165065246761488018762158824164546833703436055685900655980460130019623244778748602915257648196050128527735992356101421176428271270359976731947223811658354288678718817252503929616744010133410218083573758597806854893080073591204632677169085263414132866510006236481032203515505080711309141204623548019444278988370281522125353284540368536408036445065149268303862295307277969095368947592130440485568190592451155821553431125782230500117212040295528523951933655451311919690867866838740173431390992777841476837291382315035043043828342807626547967970992210113759681829463065376932187339997321930856150041264268406529970954108482226556548387118999583170934698751935855261223222354003066499439021616869369595383418691039673811303948895818169643047723871369558395630339603544735495941031694377103187729628622749310437078351883230069946680674267233291211400954290336100091267465728953841956930220413625656313400510077076!
 8388893170927608921745270855998830030392462635741988338173244231415986
642
64226902449448069871620505992547127643243051361325707810913116271337857219773188114652432240494586252768928533757693724693116219382334579254075284969434912615853406002476136153441226958756531240859443452313333763717045786205232336688485350297682083768755459495474218853722547369956714624695178325315301978642548939448678203229125270979508831508424309211802393577220959879332999456520425795369210913569935802684906716009869203291296721224310128285617727859639757522742494986835432044138792555735848766465277667146892941114873085271275204538428658652624163489997911790262858706965535769176932934797679981744403577746736013280649121524331959570818946428059699402200974164615525977924282078324062475598029222476722680004947306321595148458490630605444935544115114472195082650723085059796647172215106266561511155169074114126868092935138769951760838898466255946739943608730235043980687467621257670753814070096909341199165590554415707662177732620366849796682638131292521524188350295583998232312590!
 2681358526033923038436884266749600873445531728150103153352893659509359020396693277205407379576769007689142951995016589643796457047738028533834833907311709256492172062432071977373442991228759728482064213551831027480472807428453081794715915755351982646727120296034413302428597080487659749977624496816598319963806235556437943422983519266701968518333265252827011515697099250763435419594331639558954282398037642727816573930601920763721579030126115042445180676626275382811988862162601058179431026040390909237574370307479366873843440574423501358212442225074906488095984219881164767146240944559825494346280455435634540418581323627404708619310574139533560289414979938468802886773776218971003066716293885394334312743436920697530317767172626563091219048231662528678951899298214330107353520818146989409160484698717278547367875185920940539349715108497561490513331934835743652314110987322330920872160501333725672738486575157334791431572883719103028607728398133906635608641374955838310898062381106470969!
 0269256862194383224330649499454150905281393120275580651478286564443905
91054861793644060806736744402734324255319069453803592317299471469908830423142423426528588237571065422028622764865788164493260778117246001503791285076279173336793437610636178342273993410752343084312238078740435359976962538628624347747840534689948059251151302660429975773474495579877557191323472672072461482063590948098865557720273646100561303650256020381446529469210031615598708648230424263272728397409044046137393840457307977081331633183103152431184218594396109471661266670495994820792102672427706591362003891852868683645953394472920057259061843435880778968014636171825887172197758828899657795881321600406853412963463327942090567269210788531394273909382176180758432157415277625449932760540813438601099965115027200841190910042407107161880700821016303059825141090286177106080554797199209051471986597611685271627086021952682441539448207238582129501762282987297516356670224636504638056283853262323925638279488300691395189947366850266959169767851382142851711475748229086492939636871468533492813!
 1035321101149765522917058233336354423954832236102065705311398495461139984827581778276712221335002851174651431598682222090939473897450720402695078320162637322169759603810472470365030934091655044825609091836940892989768097624681753022675426790491545267231434513817128511909384268978968141656539954163665755767939393754092302769708444734052356221353460483178045133745221756232338964672276235076882611005045096750442144673278043090561594811006920144271008130738513075604658647551255928624777772976680692060923293540253894700079374401884687591116529091356848750496223665847043153688055497039883178110179499037428097762030224565216298326985250066896987765331561584288932518772603812068838680377339388385030290146525298799193180328440673348211830625993791085057712650648030666328189304516168414441815495837972918815212440105791775022647761871288830207864658397876823540736617064607381726010245371805418589613077371315762914238647985640423702839211412736138487831799107782990292088814469442193262!
 0955782009923724965327670160177742990058094046757618187626311130817526
42041142965874321687553018338820333584897177687530533715136857788278089990918632401555052461201973537813557341038929796586388987138354897380713932190939527816273990466944640807444153667101675297945724067360346936193105489526486951328860064841832665644214966604884734505885662377470943300133609953305175795166542676833035691209347599047525829220266545447234334747146922008684186172264626133908204651016161889416363844388875268579799124034772986739085108028594883048477812106960583594083126587270350745235179361467036244759790710044009463844196625619798849478216480799542584561132827309527648782452888031364671296147996731316903770893728418676298707469913153771626902242393644599682198160580219294440762308384671691341286426648516213587132527124415772186527147676962217011325153969991794414974366018493536479219740833118501025815992299881860097375738723567022934130785389719611433237363903116273730349507042196445256896926452293847084281179925107621686527391024619138228693880411938254640455!
 4232131329587463765536676959953697282075614878708426420860140455375314094755308111779118208428668651797515148757111444179877406823411350556541259489343653731667525521158112927115756733660328849826198347752578863938764409472347298419677332326149816623982106172160999348315376942730460674688549146102398548535107851560037726982235054696673400793853840717128393626280868333831656433208136242361993726282501665963586014090745622579092390550119676198431052654496513911977912897878499182667887126207881363286060414738311798432280157776044416536985298309943565332454304217593308111153919217097005538800660581737196846478236567984470636149318269940548019581638626884953424616783509399184362420298317772751242134246280692400734021523399839327784115478653726842500269779240387944425831863855819798629317730093271623408767046200407114581858002551413446016032000929810960092941713396043822132206392622516196634648770559356152001173593989912836427795321194545180124520756256309168684462913187545506949!
 1687823916962396624008494830026575259228566468783628235183732389719145
77167429955774032851695242526840313615749004685244163506250470051140603537323627869889483290834250042640129007310714215255147972107605809824295942644626962607654871049166840877120035427404021585787616466728815180209003797788141902390593613712731436736831326269620063402971487097410994695168768600341164916867021671208238572557319835147689020303495864877210466037785608165082548390341869396553309316576542755480965929006321676931376056773022736320760492433354666303377214964428778964425341676234253969836437291561358887791802187025519199030870511466517098817444589555606786928243062210939165120577140314651920026645044168641621982402942716724437163393758238483229477891610310144393931162761190487658352866616643595656067549706838698831402573547344728583402672329665817583164821711091740632181102610029716796773403139323721411663943727353211827655671978135529470352369442672236067681595555321010844162953630446834897038079028153850229955183009290909619804551121562061021766046293384108150703!
 6745040099656656643784890106515327300587365791530339379998050101070351169955518314952474960262955421028653995887710695170962695521779036106589616263992757377602235731023685733095144504004574925590517747114195450743054587041287656262816583271346062266961329021635206837743870439010240480347559735443338887581676851743183604808908280158167884681796639656011152795574279794893832389948835554437574434052588257711881884553166821556288848782830699476482175800635513962349991867549142848118692751212826429300015413756382314214784280471319086731985026321911653663336863969446007322809655791358960309765740954674325075797286697731356126856557594997175597884971904409222482690923535277143332935187539232640489215696590273581765562390933229855668258527908664138888981155608965795160234163974934092631029417692825811101345662811128154385049415739497820921460544954441772489626360605763008179384786926393652551277081813833080477116579670017244768615996436955602980015932162602125772969843859282612925!
 3839500919972500185733944764334658453806934573476163472140463373118493
560
12847878239965325836821912417827903211506043136281499832440945895553543564361991133110611983493560438749209139977808006865618019277815380019853119445288240933260391840351459345487415036944929569018015043304662017520589843939402722824975119686612642520882480558159615103878620421221732923670177908497629127805433410541369034389061094383891337843566388730855008615098647667739581641926358815675538785818688565138214579760603526647906696525437877041283507692905722160785609853909396922785011469505037475184811428814654115059260359439772840390795634485634104917688216553683310172991914940676078418389895896973792392121071697953304498262714085005610754095437928547635561838812993726366041068106941738756878402010500931470722886691109925212984296829923982961175532467056837911850653878175630461070467847707057795597040471852510615121333616251722352196599326897220248872757068147532849821273675921914376436789053356477016719947661082219252108967713823265039390586435855831421097856196373819880082!
 1322625488213454865701656564138837663643953158515514293281054017445197304465700762184321393982135841365814765396500429819031900419403745695425098120401067817095396111140208829915242532665186705228499969109225580558165572108548597783708640026246922537667111330125295861958702795035596475458852848647410912004018194542282084743604873378515722558890161780963704626903179170539393688026215485568693229149453051559024141630710209054773273167503140888670339675137283440586182410398367327827695525696808929388623957574603141711764280420319128254886577075440287047403462927719211704946854034752530958476821061018129337534823030273755277975146917496594292547262473719053419107892713212985991689084322997977695615903042572603259617681763013999373735340230443500484441978907382442837870775297058455381328145669912654413192836759011421524811450281991240904023752364899730266395671987414960025182741083197570033509516000146181033741497300702485375704819316011920605889631890475971788639037907399493420!
 8023179598395165335209959727864298075205579398761209568305790924653616
19956156457959923993115852791680497975594063834091470794475460299339225094634860817725347835078789940479650859469559039583164461235394728018948588446648505970098382006190362166318787402197669637792961585714886706184668722858347197230892882814557561318948786830580111596934837135156994802367349520480195911228806683534562772381377993732189105626825060057031818218979676259849744995532734934347404786415693985517697363867471119143898705681249207891624966671639083633346697871282880941013396000489703348255354781669642566747368528761027659541875674045861692730901254024099403804127415950798339034113488755638689333228426201648817274245593004856809375517045981672753152668601512531086963479371099240396324680383672899568180793728368486951017757813789966363831421610727071290550680044909943882865634136122595032087410662399448809572936909423005000147956338870302468427173113211730495350287232914738953452557192120996619957107638676562547358738813264155748073377594494690376408008154318193618664!
 4590519005175244022668140579803871004056055768738222375318001445403994135243964581880522660630137870182599019732286790025670795635100714457035137719988584354479105569297223674206416234677225708693904047184110576246368350859398990034822724564121198576826475592446572702885838047701738306286202258626179451258017672953253229644571917590130505293233943148107265500485231571582878251733970563730299240900513181221470692006387736133305690796303015633371188306969390815827596570807925555813113889024475145404664228073133346557129960190585847847476246899741206583730730661485250210169266350838117978150614810796155433511136479125031618356073380759962161968029574795553384734123981287495159842607328677322588878920590078347207163192680435228336418247030462180316642195978631310684648690405998422383308134733972661206916901250444092037552778016272431141610452182072452067402808300724334291109091875151728638853217777416469001160691179456426473828298172845271379301473690692747986640589349300183767!
 3033454489087367748012786427374943990735960297910656507330921172538494
44758953977952557056603678655856370413109569369159624412194379455878646159507158297991957178579628113729838296575515680606920456077030852951119771493743837734214291375698394461778907568048992042608588679719641891711969958690696231612647329918532618028521980764105878977514318527868544809125756011477855809044752213005763894737296578989499969900670074815373223146605232620113487063638744322182384800517198471696963933794336608903233457241557797084655339632452431282661420915033870780138733630462749886668120601217486604516596992380038231498362088766569834928136344025046179778055719982737811795869587026093600982216263152306622267760762692763074471792932302565215678005282014199613423938753103357199948509282205453073006431794383901076813304305241519206196819304697008895768432734069453235387528317027606304811997816925928124943946649730263821367310997214245157823617085837108322638465235701215316174466025570993778617639727335951997462038764846083099810865495081960397285297739046756585259!
 5665146129751481604219701069589139719460085119365487136884648466780592768453476090941468753095320706802683899511095798434861500052905193724105492192695891731640757957558443457037505182514057028118889700462593571028774875886220624003558533121189042085914615562109314594308042630096656220407498655604792897750914006936860095874117261298687199934107256247368048542764392381718865285475755003819448538726547204040969394064769161541385693425795135146285432127581675734942164574270759057937007858280139303566004499693523953447501279512954318871935265895435897085884836361653152442578846650136939655813164878275476458680491181317516041599320809708351513678332556871063873234359935928538657514890186270886249980128085842619290175151448618579935072963689399078222983206511733784786538490146551842111656739483671581790530583066714371043603825838872222700111416180463210225265759273485036004359214042401894756464544502668124076101908199034325671932292183177514328300534965293511086873659594593668560!
 3941295436232044418851734698470266026419641225787056604026547579342519
47185082440495116675620065769331529365965013819164681346645387391003730173600878833060906720103227801917515040347567821307971746349691511102159571677823550750545019085623773225508012194566670665556064953546169574466857877372867656247273199311369965987143767852019248156884139400001192397219808905736099315131677286477238689990482564911778061364658363248360956023837727307844931493660798924663274095452963251705262273575232282743848314336350635937180468253069030479663416943200584692468451381289440428995955581893041950844098697565084479795294211999551576853601229958888583402593982025680669415428588746084275026462273231035674377058933447821365402077497302773165544670101654885484328680114063546218018094126229807749366802304482913307876626562839318455546806831500840562054987027671977096246399859359425979125636765519245276163008842423388230457981837678362960438523901175863037197925973600829751223954221030299413024878530978435678207755852638780952284670968893274184533091893935490331076!
 5597578001298200054936262090880582157156172392008068956944958367461916626175322097585711818499979372954863060901841058694106441861175845384837430636137828707301739874700024223256549305110533469384596632632687943688435724240857011659948979498979741646653230831343316824452341700937428986907875590814923034371731633710680682790340864166899901979672901119848000840645158683529279580610407386325331121032393858619132257896721735611236539042203734293268582153708555857275464126335469109666159896781390164094597480524623787243058097711252180606814161581741944407490864760348442842213998609942085650723672678868536157073291888036388338220524809187913809947762462588012788682559270166609580933645081506726521894420490861490190148822683512649421490581200168242754918085567703147735312019968725929194246725835253557104498580498386194141909770689114390002311643700357219753412893801154098691471723716093943209157798739584366320529827438360202433203387443389735037265213046989577094751708128909065625!
 9446013047659218186823513816051014747394744068013186129173653955240971
071
39025493886654851727487448473132149884667327967196810561183524437397232971272001638173825410139216092687783987353275520262462992210343518996122723077583577038792804275246960955292882708352539744757212577788929600956537901069472179811278971965588468988860865054927891223933897649978846854625405207556799250924702531088089818679980801811459891028152229364392991524811621594835986994592319106656197959508569393050452260614806640113190809151674533609214291437099806136894487397174210960895915969069246100056871224353721670392383891710951481817580928326524546598118125736433304679685646741731036959692184921815893380012463635460903150572950383326652400605683824622141672567367442779651205159310008972763291422983923703384214199895490578559166145320689020594813840804424925803221928041898853004127873253349608383945385904349039583336920034380109398445169300181836631099696977966767426546435130940780496308746123034562010134876476267365978735776763475251320166966573350341855164367428606337391728!
 0804333837387729141475784653273679346864840157590712746669644313417744227302823255935291909010296531733813163386084728417637603876352299898799399803667095607864722647528230315117880279073456120606048309199924082241184358726289581947544330662144837011013318424844928707321807129702774826233392996706469961235449248868486107753517701470388286422091861455756286182171439487579443168463084524122935917975979060881318642893665318866706649668272498664001830998600136435211542202206472545872747745518086051227093714121247078386286528494762590917178141211298190847090144345726000101696611992474721231175187612696043088582543669676561125842539743414846182818149755184470690232003451071945148062998514732772714331524426015466397538367275319575252173057517869217087562217015777345598686397900052932045059271975363070495520416335098666201774881451948063035045849752932254972674595161689655056787632137729473562865080904061725464831245627682012565072207008056375657270553877870242114610662025923031695!
 4329884055683122350520637555501577547638203334423227627954712597975065
74552344182896623842781320066282077617490498843282917888234238709675095075936245495649068046459818252544460349097875256805446168030424613947849091884637185065509925091494390516415298343230800132455274168857139647446137535787700620842865449871588425320201090518231634941647678063796561292307349922289188474114600354320474594473377795476444201895269278019141472123266752653120720198816533664381611643827844459909834351320725761844512618783694929055489923645061400289321517933190444377201752710350788052297628434635299886578755963444910330696695053339024177406244584955143437110164291609719786554281396539823105413374160822359066428070264950831655626480451416738023341208889804839677685377500914439375264149954720192872176656180858649613405754346969350738043167708127923566850445096758027593848328652882459926678381164302461184974682912387688738018405823543527869404335268136782638052735956730101857930890333197806873372960690690930008598083182925709406032384438554898301595607964684628770058!
 9054008530852763782610270654113974726386706284681267444445318204391796887145242516588588584982682240484224725517738729467793862413322213276874035377194664706128789093401508462087778020864433862593716921783914491735523597023249188776552345230055316901038789083881151353934815994079533656508478512234479590748847075388839114360685816032909771740708504492715068930938420027103531498952111897401179078613968977211323374006897193260765011707842923228156127384099758029087940319106084287667112113587703246351485512322027342221441976327421429126768824317108266529449009377375348708462094086350026143247981341881881337940962141402989261126994349457058363674487236054929308281928047633227395239717616508322737646617618452217663204627425183149232353852663169977981834573184473251000836522717037071439097814035946069951180647014496006454697261724479234816361773890210366761372634385367209870701373006681399609538462178800320162774385142885661428753788422474602821474976386932754967952719801021101587!
 4486904177427460205147259409165940668486440873731832509095170593544421
01412520825000692606541969626759018187824830477202967034461081765684034265305469145999017564263476263870922638845883035297796475374918508048378733203630689785033473713771351327070238061744243284191735882712868047165256848947740320900219622270986360358339278183217124323108547002139526854535003123446891150573412912193844856938777048022392870479145406137032540332401605710457577703901985403535438260489366570003341026200585415314693434572490605879765206450127910428751321086955779004984575897943799105145926766903395745866466765883263930358834386027036474463730947360211906426801155008436218971202599947127198553820307319403073993643724347961141811758841664618157944029040442894287259898728425912687386978691122526180663095671512380590120606771260985179894309805481392137130249808710667788688310216414063847970206882734175664602195608078257983769525702465786894088049936977695242545926358487826368292688283388533589585072137667341462266751659047786136976144665608990111675043457618440455511!
 8474127765064072832880437446916128095012458655635138780524271211671889072045579850508452072818092768891975313799952534900343862663548012283652325724684181090451289299908897071987650429369129560390015106937167030765278019764128021381350865881218304733144424759918863083627278579276659000852913418425635792011876682685758304652318695312880164661105082684826544576172244855082635223397679756923045568482845703303828442747272346204889158819224818878871016681756463461036013148643685113916183854331625430783520024020862938567223183936698104771753319742596090522793236530000065804202701225539451082241879513652620161611961513747551814336086634394661705380462007583233964293366885685419570924934992335282843619410522216676816790766527523407992169683393269110095544830118753437278109065260796566935999049538659193600258575481314066399971845110619389630901859399232924366202182887220436671717316147420399664233950714726917978076271449376611314986850471383027455580082308118011871597718267031039205!
 0833205347697527390895041848171171179735388248438455538592566328426917
12074499636947929106980813100160785403129972379086737012656496981058855086548148559743239719427448395170947470158331096037020675692502330984790297898038429703388588450091029940185895561567325358746842085486095066104214274443412905564826159418621426796526528544638391703615488308246102504724590916416609851239781364993303992041417347842200037873545468847478831067847160645760950787682402417587086770384920084874593935005669664283319778689573480417982489075592641006193527321292854162539108266524308139077775873706781020611195484739355071711094325738913591446645160178989343640262032686254246278681414772719068625293191812905870653406476348003326867216301432884318148892615394896756443555666411781663580422558448436226395545538821959597860053801368920406350904110593195162534622290746473345739187146910719672164315596191009149970340407047748081119223661414927554212246339123234527853151992410718733428347720596452540906510295997813711119171234211437567328760111553025005562508962672378946839!
 0928387570927871266510036914874132464682811151059921617733961727499131052409901732060278170313969138261029560623470619364997421563195083972632753079759267264110214636614839972268419040793189913141741021839450418443657126691296646547382048153786906941985846644623469126659730609794825160753553551033952913614521146956388925754224273683067297579065164999057895033188250002078734998185923946521757599189102766034189860470052422638255110431889239493265245743355923408026467939916844304187289411502067487308915559359541756138622324977637430225568270171256494823878892590008714571460545869586927680940399453504280708993932037665142965684974972498310046343172140905902282800283735318650146757550572470097663454356817429984463366984446941223480157391177810669439313976755112021095318880713605982442398026045260562876506668367002554299837633497146961199322223541262426146865667589275420570794545224117798370197868387031211850684499886193396549577912662065793480422808350654323360701393144632395156!
 5842497559075265748344031224828106611103237590909968472180176027438328
186
98737404366402149611419767947323643597393147257645543266166022016879609887756606166959833605970827847885453882328309665606336948687708438181312401871357731044457194941433865148818312968106205729608136139226056743227886408867518453983867635649384120699633077121261199813807837469474994735852401116075548795670117020209570420271409030504795999807715605684684040069278779199545359688509134350237536986918488315294183770141818339746966598207853684047528969687473911428863026973801972561551998593543756176333875968295342311829457963181740376443022143309834059180281864303729191389333172827160960250090188841780728999890414231562303290573299056748234736732130157566050733103816143153339304793644993709954998500459228378963021772768723977493761801243364667032573057677237741797709868897278454900971256551556044616352357010114496867141260217087908335683746460970542833140971075187946172375837056795138316197358342561410328289930935264129908453012134022833673717775316094795012301629099663384461216!
 1460697833963789003871341523482245657070730963160465139256703774543047260940967220481157741464543152223051621067038590071120173621249981556927834579130726999685739902031751749142826279727709733547071739266738484529626054245971782524301225133598088560282434467154434394054073166656385466584127156326687020345474869509398909351290836214189248791278930854605472002804345694118999035232764354027958771800305585960556158497060260969939367329590291311569951422738286968040547287780461237863008155474515406841753725448954399152649654097147382371664298514984231649998749586080690505646338391227732877069700048009951660642627133846243693853995880527174761403513857026835192156165211950577260471475944680206506111751728676349034435597573026360588712589681315063799616200559196386735194777663341201241103132444089365955429466737011488097970545887422930964850217270426276109629412911553643907426549295484823259788909547010180583710035222051771212117196788201118668523039174785488042862586899397441751!
 7408202962497558078265131158189754942091848679100112334749237104041251
86773830147965910881159224987695512537128745643609497711020668660014437213184403488648138618259445530111932260808447392117350615439561916708310373373802266470852952706910854793881931423998965557934661084791477595320133946018318940021658148193795840998516039193532284665642895567457333688545341355915697201455921954056150489301834039321891411372433681963073925917624713788798857160830761898263664488160692681822650819702054320044666898770697050914356178213937549438550608899485511636302897730086044927109045227182980383255604340722013405276575497289646118908401013862286960235978963077062692264409222204083510714458105698539652927676552395334220837437943543575940107617310411681884846837048636369885009291936716550024848223424287164579279201485526168846796502324165719872882058870407623085685698168499165758900056975022732583263561312480686375182831667209569034980231455921751036022617508592802634197616207331224686172152056779048283830535792446751238402814758958323266239256410832129833496!
 3555598546798623141357984340599459087557457872281050403186863833862985018970406813460277707685957457479428245565247084388342022153942157711565254346853386217694114049043483332762452155627500856904620142109484276265563240941697810324325867043608152789966850774460443678227155562955493120215572299168457113627320784151613356869909244737467094085667660609983339575004604129019459376353879867769337297791850967887027694818215023864111496366888302575588193477382411587200337946172119837916087787061820484251832689439663572469135359957269653213110092441404355137600907676247231986363545378719556706977630270741670532777370043456054657944969747464700987472532424046451984911058158536874912145039485563170812322544245517218332626459826724205843971612995618228952546586361814049211459787247074805929648327274035255100517446588334905464260537244234860141197677067064376427218153293856086805237195786002885059606193106573897205641960001195094854352327113892178950562678690839997383529899328837050875!
 0101221649997308924434173739732454051384536944083250256293223327969334
42674371719544274744793595312770445340495505060819226909976842676746237842531517367041599326793275269244631980348303672807975776052932087944848562672886412552024598936853347360388695175324051593733136795042484279982532894051519456869083238588950737359531084287009324749523158656571969812461608386610993182648692709652886808671581883006944818309574350318392832418420837186536009785971674045677645917929742097962312950001708182890236801519397010984405636484391681888825011023963992901508734419951097142548977458182798865490459426107868643900401800783575810865528290134793436618496836277387041890465053069659445286713727369898599521761504628932479282847640123664015186981007576017675324290573502120027719352064322946788971836612837929719682490174103922545304717303599617661973411062113708932223117459211790139444870471398692661710506988222978404888992920745425338013386637870443720798720260247842134513091522757837659400695544877851683220682765437250622165532766314520682325695613775798777964!
 9108163150986160287526183482104932465207573425598269180937608671271013837601341931348687090249240160930445270705753386718144099930414188324204610967065971164682050501491091324766176743200566211270206178935605371571893748529492389498205020823689764185526084361754049945345963317412412518064398494808475863735210257456978509539782732514230187079071785232135933423995881980019429452419392799756180659083091927011759772755391409172063040992886903914188217043552490096222393464954872709191688624281974865121127722824679239964304003276992551132830883538688765868294809819338101511253789756825331701520629560551557339304489668312676957597038126896702448732034055365316453370877710993478806160026059274575859594600244886795044015031207816174829876488061902216993892508386027858778117317335416810885721668746436696345133567831474908389749011737808362145273156921657389387175956554124164178598760063700552049617550222464332631708232096762807655996017086066498299652439883571721640594981785095963541!
 6614075857600029168273528586269728860639966607049212565695132434707858
43684434474428950594493414347139036372822274747452533191838069744479158531729406826420098417541846974038559407740234500417704573948476855831553194161538874405672136240413257380906813962040641144474389828746696766923255121126578691739364994633223121863986818885501500908390534934261388348945338091853200169204583641024519194676861141164296864186414807472940946705745584798732012988411333614091410310639819248005198652825797585700915763445123571291176867715590119808843733521420051208903239574200516478643365807146624766172568256058542193960501432863197959006058928179513832431194804330189305556033174864374391036856090074056641090063750035751066512915344322359012089041532026097440391533010776232115713836287723036928064701197708829424613076360352647629127365927038155213856577094898430496651291783324525923807382709431882954711981262600735279282171326379041032909035310465307272339839268532547106264465191168054626804300132404273490761485200687524399328384957345202909029686886834715930057!
 0982593966408715697061330924572755400012275145005482563589043882451908540941512490335842475295412028471954750484723905019095129828454000589770804628322768945178392635368844825339441730868989462491844228004351079139453540884965942404232211961235467843821504204423968145829970017285963575022168415351843567875328823729680838941410764727510817248848970685506372514329476425431667025665246813011807476227646994594193707986030532874405983290981026093719175100381496767343588799063572224114025985129291479571759817772633420813307442235206186686679853208664158827915295474077921710704877515443674119366906998912655388407754398305392170227064560140125551986721147463047327434393289050702901935401673341105651973056431884178182913757398102422575468591232669844786323143836340388961045233683219782675563040767037157729639061164979871623912766238267304881288644956707366901233042088565168634443916108402559660661041335221370022353831714963221489987183691721893390289232327568380211687892263745083193!
 9466799307397564198325330647264413100654387456239391797086087481779731
019
29753737613363805293217224954146223832441653719947025747983506825014001443414729967629205568163721701208780894417536457851135726543135047029021117691755945885086084244321915739941929847262258796266977429167492850128839752011084167252521224016157947301700205521824940405463600120743001618053279776764647309549470570125720552329206926022580616717989160974446769648358322442070686124319526984465572391313316431620118366662962439297901968291367737741297788780502801712481858258345827261769394542779731280179354602544051044524702142391000830325793224644742291349007337270546532753239366789479713493401608886861613556478604918856820519072134634197236237316704126853486317442861387048710152232302984484909737846444055104352016111309640233647052112909293168129301462268998791907745934347487546606164907136592932720779050455438639384687256593400445848175829343716588757393562990534104394889736637183597245553117303876951240801595843771205660041722034810475372791098501951749310218705126670343310070!
 1786661763886337794357798793266313693399003278173369939462302555031091635266159331963337041958474573257073539658875566036796018822839303690373652538064636894330280578225494027316758695944801926724294881408045631326856298278220635138279017722737196474249424931534794767974419674649777694804423720575839021575912397246126082087236476376557778990213841056008936040974036805243168670290519471267434944580823444170992672384025743974062108827550939034620201353810909993471577801377187679071010253454907018665467999667460844522685441938412065373105211666497824686957102568794552491725785486479123317905298163556608350185681537095570598636067238406530620194545483731353513807961022455808832295915322624050647909457036890497493777097230819053950923504841122731533465485580882607134523725825465702231013380076341803167659184838211380262503623351812347066381334227412910756243262297464092418390599998103249137130910383534457711175321617788353086315768717257993951688615222222758943533864749511955785!
 2436119454244408863252246810554061455408245928609629883280779913806998
80491337896237691503367318489807619624521479810278624723343293227263548959838282853171103540878539346507777212604015149565666228940556249227295988719043275108213688197663551826233571622254214730192253823145995312098934678742514025127824363129854402780883629069130905121471139135737104157624129682749149977066450333424171991401162037442985534417620483430498317654039047044756655106859029589289814009300723942441780741414931395644994126373708018122458468451353833828243413743575089126505417488531667668535856522322618119544144971707076842803989729183896864077351726999560652216639992016856347450868300843604054377624606443064156929559402139919051044931773553155204250480302786854830881977146284518111194147738393044260907040614766224029243883019533750005656139200477287339671536976296525360789242572002384242005773639743136032739565988612494223108735048505770613940172188642341959090602708342809988787841737091703909960508484724249823909642996543099583579864176843444280455460479991308097018!
 7890435853280031909267362837727711000621629711378610009081362578475169455596492964873283499644644727125589405350495013787080036076600023252160868248697375739025516908263133296711529101577073789358858357655107825741908164396237693067216243850958964694783393546009744205799167688839227081336810746926377944934621183360996694867442167803759393561275803765821787736092043127829617458211208512009843995663761256604964118687981040627534454145455004105529919970010600433054988997372098991809491592926792161811584885994843206582967633791495791451947667913513656969922993400095433790285014614163546294447155129372732009834259811288228392644412520618578455252301637854714326425680695660248871245332277654971407487339445315864704044495300629705317673296694520782816676512367821094690559951913825860345691525465324731356181386222085546865197366416126768123008807190240975399992973281747056161463099076616942862969718297078110199259535529376147833461609641643701897039273943019866638946701381688299028!
 8151854404103839775670638353295303773248960231001502573279949362739361
32551973417434144146201431212184376537721930549712733925155020768558050577898820267775269899763473342333707923183983649410796576584468124097319368634996617010346534405101311900135062669795787848335077543724588129533736737617063363427845220693513366625027314311917394670491039072196057470889291544029249154248435485522340505706490349685823293144299135349788786498692681701160928329077122057829831394335874942380909610767341524049135242873529837020136596840365433178738535787610531676284423977944144808137280991235414754173467349688657025073758416294030488315848925585421916860383878564936556217669976106495471175440991169886779861342104147593441982856424416036684832604104408871206092172852011342306819214356594050665925262505460910546490245611052313243410630444893076197049447361292423589064697290344469428364996453286096040424338539407499956166537947986370600195472148233415936468972492881585728545247358059978310460232504346332973944962253612993458330136976986124964171267795711909276833!
 0892003875177752088628362401441730599440295711175019992667571593656637448182848028408221344527676397929596268828287084840321026384615794434230810383307326183728976993957005951190587079428488584337883749725400950941034712497312010502668727866437280843033115700603520359250927441330117535487926483699324485125498726255648793911809108568564906733351380226304802018917586409801054319725834655144487824098645553988477688188164580575027568128219616430614764383175343668283792036188777427920481225281798556111026018424890093831556829565865468926165331592430931209055415197823387483990096972938591047731850025538581221330714860057961622019082772247326184186961747293438102976049566732361299170709748605621480828282235594876492974786804914204454670012194731989698515250445541197631486309278297968875635783434311296244697832850282285172447400104984071511498928862990827826148812867171836308012468549607863733516118983524899896829270415495103425384765881110148264987854294069975652584206854896891138!
 0236277348660664314763717792090393282119555216825226051522737987460790
56313908769789421399803956883494994697536491334748735255639462905424390253866925658774798394772106466275239006336859044084637231448631733069083443473931107814172700766360667236263605249748326600648063594232329501358765790934008666250333353981082763216676565576467183160597385474279661033407936922708576241325234629972872386293439359026842610405274867938296068286856336104761889122818437405702772456056661833871455755956255057234959308515598495148612650684692864912414567645625349975593058041626586197004080766405644823164587784053831429373356022452375386461844029309325565274295794603424933648416331784394845767792388163033154777571209371698382505985144776960272270117550917840822030586612699635124861218151598987266047690511973849899413903271080693245309936496517222875911187844780244384431655104038540953656364743084163927041841501159620136221762221658544931986345296665290406618280499971085957522725294129872043615710426854351566291756613218784061004254912740530285230717980201516982474!
 6436126950206780315064074982468947341205726541075683514876201597734035921450379957622777965127653848872631637965682917946486753320230549700828895865821514265180746277518955958723039561574704543412684827748433961904401586886312757049054918071315846892633309651863014094959864805252169587178994941723409766820625266433229389454151983540523253675567327884236977391589004238768200977195145127418090345461007468967691708960156332716592870942373083890957573384749580174670363047976163175846187078924956048434318929533962358875233534548834744044550337070690470406264363571050747479826197607220767348743700665477231740742524443150027120095425123426735489023188968482784850931368178840191625179437740224705283539867383110808984225411581674627346893272621280870397179209306100990338124213976211096777722192849851912132563234094118968579158299321652500070570452991104271683296361026806515360701819129781222114641733313570505584428687773695691123743250841935587000689314076745963590695189893394171575!
 9068534382867563214171151003447837618436775871728508701869294209081775
873
06857428027375660102126014577357848352085249507998043215646080538003134052496145187483903380129402132239705480983718728631850355208830346764359083567526720983317732580960903391854437249797357876471567725271571520548969852393820759159740408070163678598235061812345479808134338514875066391870966149231036740198534606282971860608392945777742501338896963911574273154673785703446820811284086486997576707052466945702853908732614207023041468476831418179408347623512627417341713076920623371854691426169986496965654398902632843674868153919392933656458466903616131152984082085709211712849356602270604429771012725977998018097697476559798295667247481245437731728115671987693186348641952218868613357050815048653192700162451539077827074087316245843229829904987545955802564255860105826220752178253688688956111880052530763479595352958254656601855403614593528446284553075566329292991810609177100101434608789143913350791427566463504519572445125798028743677271260987096839936299174137901405504480719680996999!
 2255619007395956672708577459873062929954739013554158426102143886062362929368894470127409005232370534748135196582076497084184162327509144269099262200684480336753804815368520282367229206940517791673411210232119531771448459523519422925104453067032958515635639073485444246485770082503177077075612178431407550629464202884937318260478333235855961927506763089819451284019016136026471979110017711662268844933884545789362123576701294869847283126487313162978430630208897702749294779380758229060181431002880048502766707118342942082066775446512862677701431810892671319712647325257692756497490442564058111759441624302194122158127798528429895834315253994627259628586132093914513827582884105647243250039282179523160506672090135768095626222007383308826481370091688359824018277034879896245741736082626729604558379659690233159361039136922554304152675003985935986781892523747904547408267926336170508793027397691474653334808140450281889446313467183897855255847114296968339714601557420470292887190357355586685!
 7000024060791695713297819081219190922050210832028612900559809582704899
42972986660192916026056330567071998516819305946019793352269283607339967778190105336930909023780756407461595569995911201958420636615074452034233113101237950449353717245989960917462956386436000129601926087718983056751653917407540699433508196147749243481871223566681844818514155665030860668916496212575347856569938492323722080302624618834456319456229983755390025629299012731680872684839825241533158988987064667944707560435889261161513634345668964301783386498312978745810284601488816803995753935881578934410077023440781352342468511066179980052184983029161440843690369927343653904886789605817327924290597337161802306365475585068322531928427562568876821243651701705321575234113149981223325573146341209547541047991846853927226144554069135684128282335780555067821810544849702184827641442448409463980146791250481002145454489485752542900612275660853111439967962548501370909989132094908818667437076247772913304846614918669527176814310566317200074090637978702614901574902015533696910499901994864606754!
 2595991408596162575825117397426688789041202304512021870423771746030761810760152834671146176014903464517710355998239932617553105266405342159609680311705278838415043878580230797218895926325837734778840025075932419854596474514645545967423734355745453913229930369608090404668755540416709829508225332540927481019830423822032227020759727241281861800888848252783562139279500942568132082848537315850938147162980633873675303097016074094720313578439235868850715221797088327113683647635364126502721054122580494512950659175989773498482804373153156307531353580331330074445723184280802115123627975657822318254764149931582095427025256229789968946203286165988624920476920206845161831707644801805170822571170871316053590393443271780347434485397857766935116685856270114217840885185198303726173507445147046060951746692692127054702973639014729742477454680020293863739186945926440173601322172072311372790252627759567862255650561473873365011353561760001587139369676659102280478517290269116952073301799256221912!
 7611956437875069264317711497999974607092241554293914913020310690907159
16622823976980693247152691338016163796785016222433988543832551606526428634953216078789061133345122892335550235641363020700019888696205521265607710691748203540255209437061195358208715657750982066433814275160684659772445124351818349695808581524919902172420840322340430417051642986205898125050326338004229416311966637012670807087285448795640455799936497185737978752174604996687283146738365973126956163674579750165748667568273138859604829643026271350385940560978304709364608897352679447706407617519098346418957939265153230589599746054992857519455401025192790595470830018109191035530178803380312316103498100506077277406134279917767291524154939440592728519901732793185222127500106299586394304321543917269735088651441578353351501253360860928479598226260345932938220553180104457301820405472093045979387289973071968292000445155728842159100141504712567578735046726794425518909892892493260352609160229903215821163130643031953704334289357840081686991112395449860616645202399972446670684920204591045148!
 0149470836855332925733927136456995936123576066085110060320178041613134750211468101894006535812439807774317211871421396301202670391253627859065126771338078662810711940815686712022406848376856457179481432753898802947753522100273598384189139580228659721165709058744634234717760712187518136375213258542804068009572048674705310553878846549308501335746176848251241677650746319966757974022451397595742232258155844427906108694672684599039732119255672614253652107767282654854028996707295122279070882821326122187286137900563453256399051901816768073251480580161231622653753253430718426825370820742829115164074158528354805137269461546350378891292749243592619917652894454059338502488249985257372847124851602094050051309013589094642589335215885042725478537798136603574110181097750601680190950996608457329413724864571668842294084032618990507274884316441454212549508665707441957860078456421706615266869286273570641899993609290992349197924574849900883690194206546186270111837574655487327302371736375299641!
 3582823407614781222789127656312168981885387296622311940247446053947241
25273854128062153843583009223431044277067487991618496105487321765262291862132900872443195210739389105754100876265571859752285643511658243066946086957169488536574903321391521143851652858392014334210290869276100065593463189683746693437109324251794075636231736409082350245455341529385700328918402234354071236693416281636566821539057947932135445298479247125991267681529388449466764117018889648990524245566757683109834904863541006071427954892048585083137202449901891579130583303148339673402029464797607410829011621546595302541927118493100624720757164300733220172853268452644009572353945714599319797245640463200787655023402933168060586523552743986141687691940739720356783253417988335223903125530040198085660773319542561738965310633856843409037175143995046529037845491407089838785012572480147357770385609503076494916828058861092924975062645351144687550343977288432968792186789092719582514999845497162369615020549183142169799631876142247424019374031876874175462694971112230004087109301019715292398!
 1188179760100272402140681993615665140157960768657661677246031715388517464554430316629173510751257025051643626350584423238156216937123494329839442084622983338132504954240805455645788638991389152397137971175151122954876297055664535989648372035052538096692164817133237180208818502068503985712087149728292124691548324824869069164242461148897264061031688023936357026865617187418334453055289144280576977788862500373513197794417725680929142940853747689065323766749512367510706721543593102507957734539439579049584551626801070324123682774755214417267508054444957647468985492657107753248431565988397012382809810485891602464696644608235311947551377556784227071178012307132648466308526584161185890038782668364919341754544275363072816696762329901245757345353886070842457987376503421068282381197045474458872486162918485567042798399221566319785400069763092996294956128059957048260550834518436429220870911267773140614665325748201399431628178947332446765783514896262351349932147819247171879317139180502622!
 1820037912337686454795032560346871582415957700603799082000134654060459
707
52805687341370195291896006293327772885083305488439465563458259710530482054806927559789603291679475181584394254966767124810280334002742059474681947477627044164380068517358143547832754099039242610862545159286684680141724436489802196477577149992355900254767307574406686277594835892168332033761695902269337934032930772146848786838565223109465320214796371957626274994208181804304994953932822029898007731510524404333587923814560825196069763900324376253876418421538515223948802294233091290730889599384826782722116364259677037080890097529583219509110358641991992397957067984166335513347011760416860767468863146114563576177571305149019681515816848068347582357007329318481443534469221518746873481206024655571311149503355439972643893505691740126186027307261754834289373627540712729771803007742523869123584850695871590378226423773268427831909550446665848966948585979506101812321766327050887850181296270249402580542230217068579886070251197425535906860412771599608448075985543585578864492366754625566393!
 7341141529759830577716777812144701399224854770942120805943677013386231313770911502438451247261278063067381984232861673675205627247579268776016165341388572796091435274907564456460647510094008734439805905875522438866574845992929224579716765237554061701180069242894934835488116911411169372313831026662949895205993033184106722257092527550851360773671136108126417820389113885586414910449040963468137964066833308204904994144803227909319143484920805906774127256185529043230958309771800059563052068896249166104047506903019356490667463206660098921819172277473745312932589795725786321892065988148905192967920400284170576908862302456803867135055935559023630938029932422626594266216100454490354236577160683871145624225538898424415070012734631764109386416885926956364768863268991035955917328384976535305633548724728516224703075612724040605132735477548480958463741050448046514853386753047772919402803383717705754738016004461362360415650814410593492154967186928609002779994770470914968297058932627516879!
 0494923375717782195499022424325462126662292456013641315878332483012362
60640599652137523167187909388768390535712210973894638720526136973768180104574794835404777639628578778104469628990333368812222535995969163677718955689088266573785761891000333535400175889647128231328238513936308724294506918270860343479622156651688378471726351736844498156003070919345527107857526279269412804597043393893338565756639138126446979942575132020500629682239822851601466780460234627958033713996276397439955205275652737149730765518028788612713687586689867325697184700652251362398313088880317058109989907473914931436179205147446753055050253606833906116634863501581018809889720497695273468636948834034289920442583735633382618413131724060318928415488485123698908484327906674000445433808105209261728451441633677015860822273088634980638310501009950804848519542249260587949951725809587617634422541170803038226403476851983387616781240512215147516461103029563806266371427642859857119524147545277150416695654358919655226517184265305394323459243319001094428148044200274176721682976169763233686!
 5811887205384132061114712052203649048390622218127471241636731521035695768031234899455574600550254512349685218402823531783679918456797111974280503818763653123483547144803282698672791789413634092741308855231327568152492382976036250658297990081360708822047086398086946265148390871633815658360667039326310989196067061518875967121516914828882824777960701577417977123976898925311906052838476615776879629293357325824214283739591716128056978743997829814056428239033913240825461943998139178403647535042292022820293756221319357866179654998308916139480024238318326900490603521569174652515277995902691196223003000108018414035619487685329748272901181961262913547882417986713018845787724833530371309721585317017397731708445998395040799591095272944676059192922237016013998148143616846798132363774971238473190222877593929695853681141272185294598892944594376716834128713283807049332789608320080373440549761328838709286349864026400556378049130909703559418981464699805855557903866212367061527245301265142286!
 6139150866557681793600388901629413196471511290918498617962264156747766
30532714716381019542466244903447857374100978597840759905652131219026394277605503995409903031482420142134113296324511316995998862409043050539767889285447827761812197200728132887636571957173482399187600512700515653037742721691984848754888647289088650499674319424857931195681742603384500216689157644048614615919477669015613438438590362291372198176171231585897146251791254441890387153582633243693964069934485287121552430801774671436758679696782668224812200515544350710148040992595438642304436263375802721473967749085341283824854276273139866044354770358294262776449409274551635365112771558199232091123581058107228204309042664913878185979119315465299985636867261487679913799701522588364096847012201593953807352140206070775576850988009650314695839822995889594612984444969128657327492345366882315911891852294004612457511537736964903708972705494173271002335063581037619388629831647784180353172706963383098754421223233270859639124506504255463626094445990269132422087503119838796091477426658857964377!
 5067409430396242470087912587853036022825707513411050150892911621085049017977295848244897162945319295581954770367484023311508102550009393012311909295411285306246998580560678080388549653244795076326326000781613904539539410416039931491176575975728323484006319453163837541296411464295585982909677594855399975400473328494610579588112963866479383230422577830574103147385188567484841057840580503622409816186705961581529259083685232314780617207569670500713805812378538454879052369774918322328884321021845217174634079854866134018829157907051102298952192408992323516704753848127965087528531895344694654510500649924883273631718221419390930733984787089613435141897440711154578548159842477575252703349044376594765093019770986680655311616508792836281004974094166267299363443995220398083275953576618525966700298609755450273163947874824406572011248914050718128138147441769108555360621136317204441758889700957010181011146883545028311528071442182628487579555616496708527428816424874396778492444052907603460!
 1410966447878738943938035571706676515885724554059108006642001632296103
48015323328135341244184559130582915811121497537714597595224218138135511380259703705301555033686723859637397386433715227001662690112374592070036174234063517087715586662172094079659410011379000072632264604147219527078091277368828710915604414454547752741158586609984186422754698962613509718735444601739481868290442318760193650900961870100731725493214038182162845134621867798688523723125666358886944571886201891046361727886217808166556800210188783828832127569195159227496666441003058309531097540003296241245720939403114331914897762045622223071321805290587944329658238537465613489239392213641886124399760919802738768926737890542513851426357944780067491866820842600109487124686269093658095418800274612991970589632439844197300679488184368768882111349606323625005492306421241806956447467256052495389854505395826455024440694146995997169963918811907878203518421876585540633276185436002896062089628231329115048375085612448299460521741225986830599700336619348473175734211808875324170372157063648890806!
 7978659446343172048169324975259366772068850436826559121117816591283043518923186541346353404452862313399407528012040532504065276792200335473144539006431142289674121463046233567456037772471122308625918840288036617247422371904875385299400861184867678697334723382352722487808147750817687351700171438105048203507277084039502556005942573362271417005479706597036564585218519471577592029390532301561813817719548388691859239762346332038324482288983760801260402471000111933496435238749632154846900574412918634221570743659416122863946825565956542525419389487737389914865673687061894230020955923292778584099234291104706870827694541742423182790267725529665241930491082264381611970526775742991450175798844870153083390707655104795575287640810814914758563097823758705238946594440642837506681920680531619457992467790219677142115630901699145209587203032601874313836666301588594824328888628756346929747687063897783077352445675645874562111221633926408057779625586540250455492339239029583321240637084721766232!
 1187418617653705859581700953812344312695924764992540891347155126229275
895
74674863219583474571118770934725141678245455881494768566402466305704054858703320977742716935335522446278389938439457865727732849210794919744533076001329860902327667597905119651934207765985502589775391191961264805772178250487737937449173099034334343536570523030924210913552294599154554455634884179431234665997665578249861018481697584517669200294238257346190533408525122097066119162801979988157320187932488357973438493177573471261901150410073810263029251827385002299648723581749438260989109806053143181660811908729339846644303147736043061033845284718107665842880844040722904325512676617894717537228194800946921831941415354334272252035841956828952911508748378599170388780938611128183822262858498509119786218887363205587205162981302256887077676182217153220962715966458481254923059726224071238985472863962389375421491061376005626567331865941432375379213737440904810680005171808406219880676028467974538673517563278633382704511334016993013492156195935575182881258889667262211505428294954855805640!
 8874642663999496625784905325313461725323897773341170761995679388329594282248396423459476761019645872111738603374488268366772338344335868302540675162916695059425229133006881392771562909688513362027265350375955476236952961790881736701155226212236268384904280343900798266666129575654855596867087129294547243171520329367920584732171935061012192709397329556326990458422906684402885955159698049417538126947029898721853705393546515692866792891998730838291937662297288994503785539941409643177423467111436311627782191700364319205168726091749291877297791946609316904473820598043265660122294868019782502947359984794764618878258843195597120674967741878370485886314391635236874617356903370669305122840611348016438988000527011414795985555867085234712316028860904374392869504453390592906971211307535218266270404243472208667246426236019058157198798078154664533800590809992144204186756828755390004494865266278280866729408676198013613060577997648044667551169204672453905042083839912372199969328384021781554!
 4329416484495964558014494022049200453284243548120421811693215791143101
89971912426219653884981266148336134279240086737233253267714705107797489917019261164604175858927372572921911367071679956930469478904778736791830951145053473702970621235970032362922504651890113063248594329399132533466749890234691767044248447879327952440938182342984004465399352945149060047978010052408773240709396417321200752676030276239280100674281569534736777998898993776348427104280646075257866182698100681667265592720091723455976677201030341254910089664596525920715115110342174711843348657880213342635640475515207876333442189290725466098607897691995195812762633747554292356629711651245702130050187651959228845263029127092097742384496749203929440478933352537521498280341783149577698023563253161629344309931619008364035943853984751339240977899738840021827978641778865635129618414002068324698180280513416726548024933796333663682110670350961687477410793601290860466455546524914436103541373332584043132140901201100013024859631167203261240555889625643330129486955307587796570342736894136842808!
 8241817068042689900932187532685454192417722102313271390014336583359202119237643038520532186693469445751988833160728242824032035168092750234022620539493259073795858029552139309191195686403385157096001639973082961309866886471462775804108455160050008115581079773524769622525786960365016026327114132953039113612458717573634225221760730764126206656782935731187488833550607012053836831517455978045296779345846622862902473887860413111153927562049095206164787263231244235149627518130364377800589939047508979249337975822166820330690379488545535012141162423560145235620966287227610647013802585478657790948257518820898463988716832074525533159305479875100964337225145010088863130059962977505847758503554037112029147765657086697681710568935707127446197640825500322727174272127973912391485382771956461394010223688392022829543698920883335450321556765762610970772597552825321818017380563416117942544011279913545200528281040138769088168489651722071888209295423823948983477448777925801057570280988755535512!
 2271579356641933212339522781592611939731622246387907517478136478917958
22420486458153802672781391204945750721129385984934110947256603270100510315892113752286542395623783321918680067613596774979282347880925543597373803671331699582481746592663244399847709173715315101489659009577152983110585062241077224042716086329896380415998368526710566964411651026910412699680079913421341625846579693927548421768388157275614692828478106891307107186831378574492332975256695082722182396099002088087618878823709035088804892105135412063475037073302865782271172650066386551164238223424214202737674086962364813229888784843544167849669048183585972773183704400357556810201364660908764243455286711472319057714970616129110122508897730871735007066518809570181141915399484835379168337465638461720812443968482072793628134416848208374014645805541866341836956579099401640702743793779379254693708946288506465566879753452002150929356067293474760913361349100769970641481653024187188733753526768671353956619668601390844905821737450217518918006216809757301839654515919443652305815834138641234301!
 0989856920838897919417055070807240780208163795211825375842627708483457415377474208481883868713336878963085235009758457772201648699268464594592848427027774394481586636911683067359449281238868409091239063853150479017446286410047648562240246926555606515734759768940714133122059556107467020815728066261574938451753376101056535983696255101227897789069260460097332573188036830555782158650569892021850625162963091524706357496796694139447242539666165934960907056418201491860273563128268487091612321200352046790680547526004226732034500955647977096099430403919670134961643344228515310735810769526577955444313807436852252497694898920261147717231475445210854543547700397214539949828142028128279355331962531772657311587082799513176090418514076523834333802357063630546271572297489288878983523273928490891059983073025537826672822982500115808345389768389033429530173772008342478564421057376500137116928212202209913224304682247327475165356234736863286400368518960953978919430067010815337078620586653639598!
 0172766460912170123404590350166650908632985389264621201738085827605207
19002228845817691374078849858899875543459953420033154765802638591996298208945055646511437503928792549187394303336789892887008040185612739121289995126588329187913407553205625173301551764819617135577256485877832737606469005516488948672294215418173590152554788748083792596839701177361591079016185243690987340044885474808495519789847365840486752610689421743074191291990370341416241796306138812772525313447961807138654144220049159933762598522658662175741709708687754858312449265869086720038095340924761142701653866854437762280671065750323820487742632956306028883607923245322423143497739856355086243049044231413043239499141790515133556200018972769610107988153248399183116074409800150587255113065141313714495576390113194036175069104759827506367803018481917613706360723766791099824978624365606350033400411319425229600323498212223292070952121614878106955931761120493683748190079288083654831076654533996198354399534981678808790532385634389773152109530101578338603167677586348279557235776172333933369!
 1448186842151133318580525358786372692350031964245613839009341902455245940535387196459340106299179556277621973008719183671363971608978216736903595870851436420704964103118825745095391986901779072062387748036140337725708907878165537147077003874885284720075314573958117870503345899388861136089212606156166756807213499303895602468504592242377469852122582014906110062789129131220959971352834163116982815716021903141525868889110119977841225759651490536284245160647263680650606578636446764090161883819854574845161423756053088518352797512216727380736546704957477590138078850445445125859205970974870692741644360578963360298358830681490323997890359976776579292706717877209831349633928699474160954872310031335849910749137879681954939910036928984557552190943536322180801213685175306594374259249862728511927098313682659786073472832931415448630350665076660013798125110618975794584040796773244198530621041308846694770709196895152007134681572071434961662184881710604188127777698913783728291572629230241762!
 0489392596211313420636313915436916341299931632224735799211659957115024
805
70960093322579210936857164401829271288979653141140912117132429477394303766729389704090533950879833976479987251853742182501234557018266281999276544195104120819969440148684973290400380869678123156495605538835229564606888894763629117626045182235102111560407684555022607563631166204764942996113915964843831520024839668211149016606534756225682207146528934606944833791751016202209871473842202396714994899898338661313699457177302833385396451847607427521796650742478340801573443017932136401141065711480059967430664701759951323847244458068646851154643621019849902370619883349708588464415848987723569585995215805364758224172682921586504964798787763187789375005384245406366753714870783017230197209600851190850531267147494470574212129609897595516713021053278355713871152910592539052076721532867085477000996700649398302005041301631957624791534253225480283669846315572746428233376609882594083274419570450181619448334997385003065828860555578635957669543036550170833635204574794454415869547561192480423135!
 4408291150195382906674328880860280581128014337102140168757806236324590113347498156391187667091541245575562999567766953049470892466111575845702705964461302931219187696891428591743638392575532927760931124466262487544093290770470056743118963009842533642088013321046819797850267165652956264754634953239157702927456924792099015495786391947649292443358433183467380756542922192699418184836937487543238512704496462114203674623360556711840119564244958116413013858411178371136064046310802187070819985402746925092328317735091940116701366210719189421748755952951185476438883551383547983161604425757510836874899492111482539054885857726914710760844069735237526779783507070210552312195663803734886638684396577379378931056746107089300966840953472122555547609981893792519490379096843473693456037072411227895744208521267337686428780783126659809690274913079794473653710303598000881230603751719607518214042432102088760930039737106205240406578561278067120410844330368213820981271570324935119324063907227100208!
 0944496157391555628763153449461370901460810091003168604595832197701307
50090126561412628599116075135993634039199891184820548839892100188455903726250637536471352892435282483321132053301972370670421146471211319773348096819133264309669938827302570299887437704069351715775914753748554493675558019277521513412968726799050474332802948403291962476334204934987664447838158583631664719319824544554086356689553908513513288765417524939841472365551917882163456724269512113513337106660685621868866366508803255318873652889724175657041876652272125600831566535526478488035360117637135167140851362685528662630014243040503819800293140565548077103953384762259993260221743227519479892904715952404873351183663563954868744115520849658305429305921626566117960340876037761720715506625586581439953761631675007241107670328844321898158721874802300318212473050933680095496868805040278536737034122066341106384437365304747294957502777969565475001036369428584295651523794848218109497286560003388763261936440079768295740273511723747724418894271288025086095744905464836079832211008460422968611!
 2670790887709360980109477433682992411808457494378133479672227504959429592414415111130014889709097174910411409502424748487695528773543518755566438226613968828702600792452029558886245097161286144903164782740883642013308802947907894364009556567885095271938534522066969494300357149656894284128582526613839280539326725362043227180484610958171656263634823011529875973938918776213713561850513170191717276088013965838962722998394237795061757661684861784671773639182271018348494758108370184099153159233389083523470552904059043709411994537044661148359738428115141374139509521713555872718426698674633940072763064762303715001613609764729630614712764414388129340391487761950577794958601160515034493936747901080784242768540468529842172615279375112002438507536919294419132385114157678443158768286703024307399183307150341175045978773540570070688743313118074168966134575498454400463483623786102490410101101272613518241178396684945013268944326162758080256908367265928692500626883090952862049560864035435750!
 7208858127380928778297288746636557009130605338812737705091426013731315
77780634723939510187591713709603546374117506389229290986917654045595144113532417215875313892504616257270955992942595901191710317720856710217847395698513788761022493533018849209869359153172942965120546416499804327613061093350852605001445071215183162097666472541524536682835132729117880107836226001779362373341143936337280545749839824845205270016379956632898849286342182823052993762466785744501546462358135845477562667544034106804969123633937222758238273352835249910407899644538864085450127677141066037824601882116867932370375579363395584244888876427869094263650913457043059165177346274150836788545130997618741641351066326077548290408815988383533984404443888389289704687342365249664827362160481322049638768723466201298222899057667837659311147540131051960953011929745081055526813779440040889565295590500541108335183203956914590801039483259301196694710833570806672638053368031541591016894515537395186407777895853909752873826023338492649185336724846321222404671645436287337695931322359809675348!
 7951606723445097797344654097603170472929859857127707584702876576063557267357393404076868497851864353072363284301842013409468529680235082384693661682753127571691396417954008502068246668827656779390837238002335250255149308789335348298334798109981357853318993970371038009167043821610169908977092051731220977881684317971064147236107182005449059468682154795152127850519826739686132770745547021604934362913193782351682364622226410356819401031043549252880296960410407377489483745113331338048673531129582288776048908662688191726717404619888648410541215209360733111861857817781270874820177812422381255310483208162771881466081342307034807987035215822124414113835318605798683423421405852916974938845619602733950912744366718200205117855379584705278232500757480266186505969595415728975148742569284479135030543201968153619901293276642945946323963012546168659155884441653478529874336223997899067981798635615207006215599287663608464813679756580646659295949147366100160720995784639903673863814609334342172!
 4271520661187447985180491510137974811302833007806806050642553129440984
80647072127725729055547342450953878339633389343918000481452146956636552749498281014067512095909281779127164293952829682406799031218821076278280771230778414916325803153840233552709734108913426659945285577461240110194080195643214053016842252933769939951890875323806800845860402222502923952678985331596019545101717723391016219506302585105546777763946936412611890039917322830074028984970199617235019585130212594046257171155480560545583139047333191148953307835203359049925944468258035594960521695662529895336608765665354379620220652317524993446457631342720320297450327365862740340004503926425157177076321765939057630387049883336046737013764682322555541228610661937904432306002345162373945085743371361650200228100199155345212675305016140923223617182934292964254488830700825748176323742417697680984388734862399893473813816903921974542624405544654154549287184291388122693567891823313351148647012705442814325020206072559735110701124779924744020705685731475968278006607301881143133049213507209724754!
 2695449083921071971340824537910048428104385022559677723739439691148039550242704332509730134035469530713634167695466213781893943553764186184467678036392408085683802934328502884390439929956342331799487622263868717856896700893468725716307477791004347877889195516884065143271128621149943965823114187576032559125960984546032187302184554351414136449962730326337221462987900561331123121805375779634727322040979944276883328440034338774407404204031589404964271705548810997218084286869739076660803010869416747481452200091719129415246130475313512637251616331652602598568260799615224609845497357288434506307332301447940033511771936218489614870951947842347307671563605896312221586848142952152582003567287964368570767927253478058894005283994565828767988447154815032357964032330489444660248266532500258670661427484935867368406027367611998099685435642430359055687088278797060306912357088257208825200000422019753902549082132531760928707692838417970442558752506494317042002504743706328652930122103761281292!
 3899526937414687553177226933402620514362459471283211407120964689934177
101
95868202755950847035869245454060918314043252448176213303344690545288964701666808887411327729672916692474897342645248559715042579111004603451985908156250091148693942736284495476981979222919353273739243896745087933454334528897252731868805246540617667433706369160408610030108024948342272870217626486730169672548967268270766922690266677861568167642966005489990615581258655710393502340501929192180096496000972515301070469001962361684026392103407548601860215921678173555397589995280601378013549942911771951285383042790634690936467587052009805211276406916204269346376296863974315894309038752737639538554006527570821745220331763906532879139867208165612471013922890859016313239653878326814575759044664139806675964261490083338681529727269565092555095384804880830398126651188272291655591438149506968256452102398397368389675681534690233636588096504270468634899252700356342405946737515286225428626299959134383901531611291470172036783683828465194398496655285627903848911197841190803490757783670364646304!
 2227971200445675602895473634915879956551307298683438984438110518359315399948567412034854455281917479459437689242531686292549380222566216534694663848748105215788131924356219229214483239874833331080047015054178602148654258882161556052305471429968782868797515039726661497426500661961187084549033956311125286353334238641516097305542728182159147219290912531135320122360663884373244603091239715240023783830472916874092583536765801094113789941952148478002710960265577612804191883572025256377294099695369375059903930469725370041413489283159747949162653417666044263142065751304218833926168430745352856066353132419338571959722044270821829365499393476579962130736903219230940124139127018130119947650379756986360956674681388151340628293797091247016507338205000498682773919478024973691195342288643215641960795381660719887039123560373044708335450162164363755759259948107379743922233193369353711759664846342779426032465860782922333065571803146708613591390500409063884879297518447914733612505560725224078!
 6681606740000763055084839022131270544586821798778326355497155721075018
39897197931677932568671291789490781536902784333248248993187339079380594256470331963177218132331574749656978170729787770148487151927215032335016375894985733479177450454761282372462667272526552254995680522150650154463315013733145155149816181844531280331154135473232788056641377312934010850283446204985694366259116208750115534477429745883835731924654186587388793930147113003675185563539214539624720818093996424429767181026179686838779190017949354138392189320604320874035901666299060857317649337094312724305040364374348793002232457628231588711434228768201298623943780676891872852919116084086105560877833278035149683056516001634981331595431018811632122785326520329945968815604375718596571035779328217157501104057212375045047357569958139628440459410836046386782536186923344425608778348234530137452404292637934856989915448263184078058741510378596652170478706312824026755750335414430807422514924455672881308206858064450961878146763106977204352068602200300863339306784609529157375280021933494316808!
 0666454726056796952197410605193572811107719020798628638341779041468952119958159971833477011156909634674947610744453347669527475009308099095325914467459127743031721827282505880813545284388453698981688030418497387854975185992108375358646975457445780683801405563400587463547285501821909773263016482756041098741297612427211999262595998865685741153282861467297801100681865025988907348673136574850093415587884956170855107337468059912695642305426552910862352655807400109607225238183648634908059279918840693011362957032939544362496228505189076405408032715547061638575683560447488759084954557503710789509441082475702734011199934801958092639463821957021130900320275338272242786364134222348281724909936086855318172561232307227830126563812920663324637946691009342599552305509730420848016885878125888766160442841685853953111638039871065380353610035790605731195307833219409320569166939410094038947119049958239873281865679862953206329882412190899933143884730334351359033597480387946335413772999930199798!
 7696903468044069815289207736700311798344354741934277296512971220376732
99941863017434700760609805804630431870687259357594458731022765775523904422508281809187011110518278416537127146012426163959345372031618803053727984302916727513975202031695287826865783599995558131272525292373969060948728917335718046328773348067822666174334002762268845740149299245644674466454695570842051763829882712095701952451330262753691155162711182572128062871273178594449534883478640308830406650545421049319329635117578215383047835378500750552850055670720250528960027412885890717336714293871869953227731626269051515982155553209751303080332039786044479205723314418407380358609168606882643256701850263053687044002427288793354727222639509894015097199731186437464413769744278722871076328408738395647965992187039848189582827308287988975107970337917225012070569397500131981782547750454181294338993708344451272877250268217647742675511931939344711699625264463586329691214015327510005844993894815577500386781351915285888473986065192397588137285778779076359994739972308470377224464310813372042363!
 6365076999084160699352616327799041717499451495190545224334293448097924732780805642223651153109400416593403480757275067120442458468001368414384380151564718758336763442615714186252417912020384234798016242711550557913646436445305202661774916921425416119399588463855015585114613138847312588836087217954053968793860043027129571139025637978314935320455463419793231413492713012208621163707613560260951821797562365290740256708239174958981288287871086854544532540209697084791868842052292001705072972967932658463068562833147042334538695572625766051042724373114325266198975030256805540836952393034984949986186101863548178496989647464654054533455224782232570519452084033813008323241495092628449991373598119185135455949778131853669837284570956491319112710511762335104524937646612828754929785503570898291835506559099940645129134424297625106875750141222666727820990532920640329394677161574371892037516463974807411927032461468405352164597848596950169557363817251928304149447007216807199153178892731694153!
 7983826027635228453212743209615268979196375308180734555038234513245672
26375799306360624684198339046351275512463995911227060869207723911630509999543713417027236841114621396567191184691387084972968691246674552241638084178017972198928100786754359856425423531798447159283299523221424673437210888007313212052824367911871699020275408746229526719625693091211379152065577003007139459731877788183004368294293826784038446732083740946165303211947753515977276501000496030095271339087420022270783413892730119908963302533138402252429502759955753930704498915485529663547271352016719608790229812002592642917721367296466842995340328864450160845220622752780710166295344609093440516096610964733422590564818090006423609764993540420647962466952017425811734555545428018573245004966342366895617972281895367986821197049490516267301320464817404274680522363999699975031263043580856913855945411810199905352153980503074181665827236126395726814009781823760129907469028532969192123397209243944432302866049012206502385494231423794991209412593284162584844845852837905796233813729524655023598!
 9480049061577217039287168861635198562614078263853230501362973244874989931540239374297690268333973221531929750259943459171567705414158945352928800318350365008928212755329977173770811875755592956693392245918513007466947701607100024817883101008373156028997838109229517543296361181764293371576248731814755934328752189365439060280147584272299813079895302951963153402116432384790659903276564780761997151275877482539985206949030139775812734789213478801018199426291657146000120257371103112670090132553174451785356496111486872695448069947715035815190530291876463917502566333700449647438487617951289503434264375210409267372527056034845513404901181929646492333930829293513519813839385869508689519522494924906360773680550624254046518783443602471493755807261305697437955304510909371099615351885640453685076477096140056522296553834451224377680872990781216101771615925480655164328931188617663159434084916689568028424599051290675465571355681533029394899565882005337792173516184307486428808569042816796254!
 2331247771010662566272227678181930035201850515893072617314171944397566
852
71069876874197282331641560829050588520752044107882459043248785554492505622143652448581895175894507355586521333520184125187723226354316528466784668338674413704211840642702828602451649029743221307770775720788348693043463275759874004719955115531500563022852049405773707200239683312765095402473647128255018860638200054743178975533355925111377102699070563189888095968587429026197506021539000756892019988086621442972207031948241605603904890996656212608210667738066032307350346911607517488877859637358081106285764774286945245650662945763804508714340305270451545819145319651404651320914588345285534055239039990399281163460566439794165104899610742094166349282401662245544950329104183428487888864520839477636613063822721167156609941690928784299234361616124699624836479767640486270637532193222968926966601438832385355232582740631201145248972969239568873433502451911957302846708926115066486500607398179759036102177447832491730277746286089176352280746097352122381700956854713126453557399977587914840400!
 8144872808495841630066003058330451265965429186874958880318583914927070512597971693948814189934395672440360788393129756723757620445453093689898235952140267695682997248190265812033434635000543558919621170758001402180811513878246638293336627203751834993721407936530033936505610117001671516956886522819750755142336135137732659369443547064511444756717827778510970805941678645210380588585757292626367734506639777412475552599308112891212431412246760391120392033219222594075401786676006853669708604647863933983915771665831866068257444064080562384906809812083465626311848099236981072996446323382672036409324209770577897114101345779641203979201700336517904326893588240652247983074209260043768945358368640963780788748736427587322322942412114071059512657578417697969366046306580263812535546741364278416128508632857322812062167307895260151721832933342820563778248091073413245918727569510588412017356841607309235679611583720448747989665007835454152763967525295768753191258991466467826383152330861770228!
 1185662487751756374297129717268716430754826741898731702776193391842587
27000099197281259257357398798678453506353620909788150444246046748938038314675377710438695368377611217119523213633518460181891546128714179035335230246056313233038893495526017593725926428339880073329875016713846254693297816483719009286245262401992598890593115417540478957022647193308987686308715137905702946263922688547554114896094617394791300416765025285039940125862572914788384332326795238440529911226884428193423612489091374960974412470724144511343847463935698599823656055696481726116282411388648953926416904009247976255938056671700053836429755810897470438850597941097738503920952305440204831004686661347338108344303372668255356254479233125785250454354969407004196601415455357028439952071500535633515377916500063795060198975852132695629939036846697608530863955682430030217219449881858939920850874669616269717826727350689196565973849269662404054068124545721219350443959411488787277941020119657134643411947102584628639944896596220782889190845893137840257207805903676956659437880147094235601!
 8688987926879396094714711735260313680024773152114734169643751483528047995813510777772539836589349083246691885217805197849240891941410476294027252381830294909569144717993754950500134971978268002930167552295302149408500411127694965703099512908701453400216295615761363737676139365882445803998835330167623269076046383969055299646672788670850594676011495075028933635875406137392586058815927084435893142498878204640063428605466116741289724119666336845101890244971060074292213016376392612492890430302748431042638539584788565852473215998535672237450989491232623025362439613781151319137999285890991809844876287360602477370126415763500935583053177016271723883595316125467137830079070540597163878726303914387010438732932096797332918220495230762931108733609207725277077237463889387257668116356274977663099981454562183185087283234336065377846204883832301333641592011640141301706890366252892222975731863308583649800986429278141772790761608573556616897227545111082076138726711253024919780317913635039512!
 5971640805400808674907822333864829875190782121504797735789433075259731
29489798839543335848987026338475972596039557374930995042720074029654351137666025767133518721910807231805906117407804673242255985747464837941436347171623414398078081836071469681656865997808738213462511305732434262038497043800321547898630324853136836599931501961409344344640255984949662416500428435521506302714326967558409643466452977839293505943657684494836412718117742602646422636544048368890129432253308939758869189989739684328120401890055719029941449000982095699506835904133507490725984895081442619307470736395901161388543474397773732200919463502642895422375807421892163584749773169884877371723191532443596408773532940249350864199110364605698366798128792782259797621306668768255916296379874392307453119556460909806717435360801283532139791198042725712086962688878065038234384623486353079997101698301996480360074187021612619957892444299589217885429733331100886707221516688335762492009010311009976090980665252668644423844360766963859177478915545584020795317750908514445278513237216299637448!
 3825050296303249937228823593468535268692212159241403930198463699258733075355064946828749180137523241581502022843582922605621149563557408874092904827411367996061715595844437095177080546253928151438246362036415294103662710738159806966756583135830326526587395277547457906801710739642236195282199792123856570982265371866417592973906296544351765145045653531117055191777223690599951209289545936938504377189008340543632132650279087013670013797949825020573174711047080988235304993334118983292350098021712813357671040360844315740978163064279658416672936900099294229651387028721893380844677557968908231706002028641343776990752263406714604225789523896775224316785133268892385769596702416692124200225783935734707363664828252270998376661759849700026232274686882162581190390379637129454015805314069442559530659768498999649133963475087502179907529242955415998996798038684667053743779137232004734048172387700963243028863600147512368740044980281237956121295442777961050196603974617786348874999921449626291!
 1576362323842484377742333145953477189810641701054204022039126124978066
27963134959585735479823284174989546398607405206345760807633104099797460555141959144165630574915813143346247607823613420285121397415103971802296071997429244597450376783284477492511553047177286438157651641697833276535188900532449923388358779858578579951165421102772841290180505113807651502719143257500798583814364900397601753398660287968889941491586607126520437096941038271971850724650248739569497402895748030330736823644276149531395504064276396033330453793766617828784446270636106363454075889569529691465154997883680509183309890112214742933088426691644661794209424639092083235846137681170186687952130296376364295179280245425880659781142906821899721404579935406943935278656587564322186932676930129191680553672317952848206633947312090182368431672410909018320948691720571329334718488379819915215752222399985082893711406940116494666586657429271338057124886540111284321544401615763836747452619832621306048192341589088578060456354314919620589482003940657789766891348501644283491632819998157123719!
 3237334667268173442642295400761546514900935380972814486586029144945034409364312285242282715320715489332561425803365976222603062400682146535872818912552412428749834180846658124690205856941002826742845237106679505135444450508475704203325106189065530185450648542348634765841680405042497172672586938510161987057592986877017434955242275428899646051462174951754360104163106481620779830946914067692508669924819655700097016987132992740435400693307197653607951235271219855197597592586832219597999842043377794390796718982099716369971360059554570070482563925322024202253703277948425807110946160303302640998648738079707526581332992684913153731759571319772627636701126319957477655537441989279915981222403701867180563280451455644379573415064733122440354479644098389467719564515140834811208010961936353116931766476983351321258307018974365835628419755801127238662324536982269889450832431747272282468638111728386003408756357338265896053910796010517471595353817231181968035720526598986363808759857553668673!
 3813640607034129558670060139576130929133185196219248459503746591410954
475
82664578402990821064801881078629969629212030696813642491571734892627963242246599481674755189542214953076863524945601267070765196612433933072579398557462843829648201272383120090454623373954912410617288863008875674571369442350473431981486341267148467441368333953004133010405298330356095626197046658729597456972353953004345020616216371114662775061554462852380245423522584657460138352340713941302161373462278452833251895410676638336062815622657812492325951730515377903413161150354248764649981401989459213702888302579451504593398381508677581835086885953680315978322130052248089528495040995854881228645819245214537307169632466632625256358192249780161995147341596653170252071669287901868944710127913188620863137053225300187674887214671375236510526714169739623848466498413964695601300104379127674249895596852390386297882338958812745644978020790330648989255566052139581550984399252044420055599537993947281024008824735280009750667240789309900475472545197096283213522235440963730117768320754744921675!
 5805725588035273783836407915000642036009076543738351550922178966797829725584237939961671636210304609466493292392071965501050291023381282443522440611763691947026941952055221066638362906815955567486310264513271818526027993559097529896773943477576277915976494964329257049532083835697332233628716075631510685659322414209543055239977572796789620422580643245717627138569443426813412997637950922307869896560368765192199498024164979564330580136286683030221922590430310885335186669988689746597131401918601598365034704520113841313140844415646393450436144006036481079631053335820480042523681416092582274948242801323380143661596640501167291146470503247466780588952253014303798164859850996203002395604202450076790661613125577136893994610032472771620911023459889882593457919639939927839630658758002198774245852872648615911912539368816560589715027449149632965826714506366210536884545556340517637629056982158511395456761559777343564082326683353623759687188851457860727710263835278003330085624783542753315!
 1179782088995342668622686888862637364953253073852288898447761204042484
85795153153772165350546512587309944624443766474252334611123620392750959709392235043709916302557319435521280884123658665580498392666754680368649044725881820175870458116848592682087714278889629048418977199238231780814306902625444113516270848679540737231180041515780524286965516826639696951011554111379710960195726319553339014756230277032819619616739598055696949719743247364517332169993780410004697259092055425006164279267481603886204094498736429710994573697202889986473498470729568552927423432459532920873597125689334069346944646528760937059546220465538196407547253990270399059331064177924530346894001269880658057337605368115157869662084470602207086629463239482803955931297890212128838917118049384796551483153448579906845993557600567600059387170108026463896487010901439736334455355502057091600581658358898721822401649351985318233973547161745635846411284499594944325312813964414542050838599157270865023502821312406843666468869330822931979297217098841001708256805267871718534881407790970016053!
 8230811850461338592758883737377682547171333973449672895710115925124183421442285558552400085617644472371483133367361241804055239825168154564638173769985495056032778770269269465709417289953980929359657869233930545284324306528320850608358748494346739143272725396721927244370237113450775076845627974004815342006581741482152199116301560277155295624011526462706439853208824754260458134087919184939689681339291016589269240344560608409777043451132945854773670116477979652981423030427650433246638744819026991143741233532297505789077460624430843452091281330781449700817004048389442109299351098467624810495873630021582430476528407906721060632486606168725961464703079509114272948240699597832402640664715725390352193233025756701440788211348205003940286336179579213314984043480047224202538953977927770437576104135801295393770893030486846797232835109130290370506851303934627743642674097287175265825837594394214941224206157686409824754312841629696401786617308526825554042977967343174468581465382764630351!
 6860957205267100762511309440942322374155268992585280412052113215055343
90551444954076497385414667801363998300500982667157404531862884359530801259730249851927797525694954323935953932585872353676010968141235114036564405020377454833269784236756349483245161015769751759349653181649171958725941824850198269766579965088770288685841220221939947396626823489995912441194519834268086513548645391720968485292238265736332748990926734194081970681963420403006931794967567140323472917190687212792530699399627812426827605020851463105732438632546627872713070252459765011399580312753238143329470489978026872595544064644877658410607295035129817449354902551874413586904447105288279897282406208951304463745910550087364224753098255566979322689301276158040999069402461609362663057232131548952924019444464670399269131336842208072149547272928955822035376224351188741812624062461557079730555627231150247882760571013547133256389641181918135562323975465872595113703315964508924053285509634963387306865712477064179835793132703530813892994888689200671333099274238637711004037551430538308368!
 6379300675760332971920302399028126157681543380037320345931454569689078576689350855757664750185665372437008095402064184757290497836400678870831138914888693264159212185172146386704158856561082031591645329680907834360435077012601371293558120050016152283164955789427373162308377758039526727894645542529879086332783546390816385489843650182741141918166935332468485805458603121941522501838891088585827337003154397835848824797029863579813296253772884175722806916677879002859749837749020605183182371301633345441195934037732375026619907057853141407778801725905645559137585034039781694876176799391716042840869400657663978080453525034958913441322977634254189378312342385476768764373145976958783334859693691202354775728127305325634308616861674461198915055828539931246092827039733528189373359706721245682238328955972391048553665289757399312218073301772815313015754684210562915019730917941774550332739177654085335975169593965985228187408871933900057073179262259441990205155601930819254422828775978510239!
 4078346390425096892042208425650955061211051822456355176775791262547126
91564001691333021580997958728157010198453091677557241623606010982101030027394191737860091466958571465919051331866663621460893983677500315720426430289180586076101828201789136552911057390016109961574067821496750684860581095010393252704749847456258934895191672044826220978762149618656550734777834877724527887397849147212602916169431769715055105049191945598106393150803560075373658418242072111479712821800190034634834402393926895587468923688008912377052071840959258366083592055953895647672231371353400922641035331702686046771221284192001449854140957066310240718935608030311591161160508453572243172454517847867934618122932120192312475118560837578894685450195523472996787902874892240731318594583710187801543908118577187525996752536358878854488943008259659990759351857223852503616974684029549118649865026157334108008562154842084078031299693202021225061909608183136034616517307394047739090645284122927462684591369942072787549025664373711931266707684936237846381015784417275877841224360718276672510!
 5924528599558065889826882125390299649916766964956977994506562594746895273228922021437901358957097990376810596631864246097216349116158794051245173839049729442477651226337094604853604866535207902889531131122455426744665158434759313768897133386762642366573669797657336359688570007296194358434936837889184599290751415317976949580494697564736327998660262570914383517423201623422944706728647655711221548608147201952637372891710884420496942290477555559018969496850949980916935997764789604506996537337597407311938552795329969618930010758835334760200314110562262628157920965556321989635256514923468323750744765550544809589075458530956553446205441683717542220287986003761580958237845395940428247506557245006694362123461416235731469303670887587958875837406075120582553425944785580797818069104612841905112236276602140228990343919784153044132971690534735418773667884013932398721779961916869645910145985955465539150112726556753302539404795084807192999560827512041802136925022437416911878246776406492213!
 5624510115790035620174952047938347983727930818995518232281361333159668
608
23825736466901668794276708698016187647915621441511794177752503676702559554051620709498021323464648213413706500261120449993210714106167091276840981268676710075441637367343853127277565859618291277966809554285020663614811753359323868574908739868915779054766257987190384076143799858125430315562877378641092008299691451612478588629676703978456527162943027940854046200037348768753973979052142164109710928324069064518210303249643238001081572620755246374885779097742547335913379335328120991078258024076502512494267012561546712726755215043682674162356361828598796281150782216200721683910021961766381377432479337621046305280762808772973883110231408239019284931213034843947514971584267752800873213355449945154823377373608465292149530744368027901303024841087187322658932387881664336874044405270458761321449829549959726942500358494917016297805570225616749090934923319790038121194241402331582468111991505833708495771204132014706829087083801101590876366050021953681685309692339412353670666906220759826609!
 5900217008530798042658332780141427552785991569925170120491285538616661992480720481909857658056170046549172485695237079838162848019854607881056619674369219774649619793805396963459658873019877273498895699372673794774350812423925692394082134127010920235469290643125006482219945500067566318870507080725019338267607449418222251768331707481798971710699544564507232947419004719699591177576531102924782585400482839454506300523951717660988044422957708538683223579596424060754777482692443578215406900353290458236864025447039883942954130018557322159776384409040303085709004563721210630670070816158179891388521587998025807814082796450006200393534856626604678651909674595924985483588088445685636090731751976587605013852037215644566843814605121841423197855293954948118944346674412373053964816659622998078149685809176295512043568077286946236182973108029863654032408124575647451014297963020230203118253383611934295843637720878382039532478564518036663332433338269593740500722031541830925841418593621384730!
 8369828981087927382482445967053109348017704885913109787475345538170908
21433741704986426011350238434868438721053598418735078070676804158156429441719812140092234787439505810318489887061681727671169468633287950873740767876338191916738756942939346383831214305342683821344091400620534555434219610114228594296786884170592705836055405329411116554795585209798655487206990121463049617319030880847202729564522572556897624733873262927272323011558673874457769402971824703064160383728394997425859003566795892933861787161337294811436739139344340142384983482947737091440308334206097478962420734154602458913985334904160496707280537326547095340551348247010545723344236024906588501036890074351902206310739517482368281494346169343940645274267796012034178369901098285596305726903834015807549976163975180388740429874852046293516824056154863263134968535740605900036540215422131951072692964189479854176045888400402324405734053866692780200952196910090989414587252131503840727649882242171622719919666690527941587937675571472062325319041646642551054031291208984078165959453303438370985!
 2853993575464104687334410724341543016852973078284081440486870618947315860961022398552512912943842821751046776617816720969265235124080659557413016406343466874633751151606058510508949420153154819261094922365980194162549903517306395517565505570702696206864199694642880043809425083576398874089979295116297822182764809075193054564850306232732868092106899048683433565117227835777534310788432148336503831920237199347322039998881151688915020803012476362843983420716795863407625576526515175535640123351012732616728459860573623259498127330338086150931120398612906537484460750119049138115847441852919438162512806985061395355277287036417149025736999903254505852716784696471920067375975552864675220293952513835578283256319292411698768298854200485418625734067045800186567096702314365987142808511801176821103191521059021325982649772085433043991973922015621292981442069202952413539867641947331410168290159259434541720586509556666485855763118998541552351937056959548469670975068641588024879509176478569967!
 9232958533617500971543698305927579522631737061480824862757467749803618
73926160737537215452971906061360921014377146459990231202201183891511554850096468456340881715935905404441185718284289447593409868978680007809664333655495433514331517492108523436032613455934020531147662809228941633097375768243903604713952397075614890251533403569335562400422480312855431593270487128431549792777792116461540338122070009107093502403849914095427192350172255811592289630348327640575227854865984098290618236158352211828973754366827567910096258418056728610941218330238581192878559025017384328317694073107064485874476094749852139695776319321554304284837029906715885454635741440538124175176919124498344137480673355665813479365091229887360410839318863577680865355361544784244786629116984679059205631086949328775185239118877087335770778875834614052116881779668911060572245500573064885284579111844067989246911664668535739348547579852084271125391488936479746313795413644766266522016034013495204021449262250441077572716441540082197555207358418570950258436514064884965863294423378673124118!
 2488226839475766558569968287854182662428808468673616813582343736201952978505016202170872986700025407693285497993349585187755123960482841195004902467064050990214727388240341910905202511400267779933453923530742901760852742368221906446187428375923828629679596904800495613387610168312456445678090864779245992921725106367103121781862315540856632662816280608169828466116596907978880120363983204989953938237825932082998790842773721705896199423751701048065336324704700181554788961949005682323492343680498124595686974891832720129578863716392863674212969228922621097257857170038795704818407977997481285685405555224613532903382874847979433889730084801848536751929094985862931870078349920554332312873302811923817545636241946426159536420553188722067269744054461771197930440030160234617193899866193658480957955377294192159083244435710028487455594548465262664640341296253998647343732450203818791820720220434974660765599489746780746125298109168401397903563927442833828056620017380363037609072003290134292!
 8674350576137324522339871668650197085726143712416762332561009474959741
22486239678253427585186117548303484096520059956741926486000597897519349606612016485496697318887980791036342076045637463266276118182116731871585586842802428666370208119629464110748987675511026685619729297838327589622699283633961823503953049277054584509354791494195654368812800021039067221100676069517046265802240252751496369898620068634948909529702555857450075347414502662519933750149665317181324068601330695299990256048762363761862276885576549050565782565362802042148594551767711798370523999029570499837227512388749849003436655980958511304083031273787112876922265221016715710127395553582313522435916309360072335695720410449839588370196173757083992005852855091999512876993984323716378520901964810853288867605059869418263575934894444271568434078477594147596609595807080896591670094586888298261060217051582250967438030372414902215211336708852327860627473590532359011464636821576966611925113044918741552422520546850343533499725343463713765619756115654517827039178608674974339236575855448257491!
 6504221856081989703459403075660992362812875290806091307597119090919771613279959584594304015205374699269682953624295116384328549805906297043975241452397507172410850325887840876053316457312236222897791859403012105565858426320923742712074436576653952341863221350340631338840693283146000589494222125120201218499416640968897232695826051117744300094041997779281526371367371072633060494697385799624370988349940993334356518707300801184258223527110060612995658187962549198162447887389648417490106778354814925361276982884054867556346042920139193517737817304521107718846129014452245206838445116848303404266879300999357459211764469587896093238662187411093989390920074978927706206093551194604929441443097368367047889929898648251961858752380702211696608895704198414646686471508393404025647356160010631446182621005842274893394843782150640804714141498774785902445735253585439469310725437910045267329748974305898521382040464007942685408639332490425695616183259735213374112772465383397752427309871896856218!
 1502100398670364180442493458584624325216497093243626015484250478696660
512
42272414132278395892046408251343071771093264379375525910351794293943209120286640716959560566922139594093179691319311197918807175959717837461708378458226671864175747273950587760765117056419203585573078995129977269178615317951036769158601021668730656456941800957110269895714332299557533021600366362832508191084142403105149276596842878406292268970234455656644538703439035269686947148292859189723001675329668532764688764894500640337420354489666702911180392441153033520626662620615257117825546637310442752717606168418635593087581133534375804892868345791409019943668374523868287363137098253566148258783487444094152445882630620596472368030815094075603977228386958334403767080511340420629027727102942058368387259245135741124411808791196992340231955171402056648378545312910418768981745227366543678496526543067062568294430368760175141040273840584924213084643121868167017807683311504668911499422397789182940893361845754111017290030057542449840885462652110285915524511442776108834136914746502162519648!
 4362829321539008789356430956462496394644371108788728690892068385921832594227850099114671759808838948537413445638404647308174937876343869973523573205755974077331703156658216285601001838265895084136682979124331982111620849009868532838669595909206313205849359378956860269585837132396496463461682022764518113407436698307854784645728279932853002766203359461173164434001106586360409790175024860578173110046385145691258770347570273061914319433992927318333650356515495395851232066037114057905422242938674071194552986236097248670343871747710462259015901530087452839262024207757733507461099956394246004267946651710992373947097895797959981459405260783264128417421486988697853001835155705559941604815952264907317407433589469379894745637323074245055323203477266319547345978199017901940231883181371580507495932696891870480539874677121483738599030036653927841318154339429665270627671816166491787283054908803470836973442509301133563156995584867574547132408436950703563315066724067577355528109187427321640!
 7111949037305304237481202370500097687975526883668414580721077178983117
13907244461116436996655708976003612591264945781728422255858244375977648016443550622848387960746919515752057247257442123314625828237530706735184120110776383842877195542942675237280111837471579064171479813493584556196805323728236278584373433870878038995303974902851921152674958717705369808911544126218206537802423970448936143899253465826690067866922510535711846993727915470313626028796252012993880087324879208749286665064265127273486379886161739243824914860345669416348973301878770258866370332284935401157588094101469590727918515152947227520969806340143912438396977161695762263277703100642700493244345540646915282902070510375940715383243465051422358355499154171985815897045011822527406307832198823126713400576089363422966492721796270340314538335191527423786144676776855520854806191395508145983545076848291112415608503458063185735924074822232620693813478398784091975182942305043933325395843340305247264393917809390704384351389345213500176967812453766852980525276178733494814245111189583124523!
 0685461932154763988394981429292435288098281883666142687318918020508663284800148488101692484113049369475249144331917995609574619885321979258747048248915560158338110892408463820654036366293461414613417307084451661503891666802218390128791378716566068095433424577628799916407794422150597378360903893750815790161861136097487708110494442304790140385442729659371407271886134832287193418987834362495236160531686724012505160020885451075356188241720137918501094840598021286596343877539322200288615431797797723051512545314088496690987781073920066701389373490046812813954658098283807596884140544047071635643099986159576371967927335384663982397738197561424019511206540533545284765295947824535266113045021982683975503600142221245231291461320031761085881453436423653357564623694974356194600415192250157198404788101524622708148247958737970771919611320130891246471436863277103892913668111087569445328434725348430226337553457469468112086407355812128571263947603779088815990774796346050526983570906514273116!
 2986863088301881684901810657238301797780193893945131718626536563871883
93820110560161983917230390196475455870169700172942177843569243596206376355473717597807762671068286955972271033135953213478606656577282591571904001781519042369854669703684443900336886557599781304564072329362887923973596871724685813210492069010552499639026019445602128415309548808520079992591351157170600116412394917008532810333923248308429152626689009021382629213866440652136905165038322656305594366082625771002825804114555143722234752695628355722740343383598798001132038887133696681391147299070631780572763218463862760226246248236188401680966302314876935446681641902266655441248457395712677555037272714313586545193639162705660041630352416141149062376677369596988492163369305269653637835551887476640541489481921553391295478787819235208474721341419744480809304636776478252155811503202409713760126346450728824515101655644068531375252611967346751567797796819411101353925401054348586858401263703669717207465829517974222122353985513160148471394093735595418406248781620597032785460559428315902792!
 8578793437277739579027409445613083260372597286124216260430048325368734965509373442603055719456070591247514975221927574158835841534746468065086522691304933111854234583679197768313997077044314616764680247412163725515296678275266386948116032469910235584580919378926222630546068038210936157572517529704856987131990754116660192940969490054667643132232988954762201403346681995208135442295028530590378196791795170756142819615688998786706215519199801099741950972753346931385523042200262830006885581990881983329962340815502368747096915676048605893431476146288840453877503318012561871059984263212304980612307534776102117005003430729976195546543871895364816372773817120044490552438869410309751572553587003888113831241342055778348441767486846640598053946812919332507587425861574378260862322138988740469586369393559182350558257156162836167220944605602528819252475951844074919488799435330401896935474167567356335299198362651734073565871603257805420801867563624840133541191836415232396885973574409971927!
 0997935063477864511233346318229037521682204874114270791544001756799265
71828471180377881051121002512078542702903197621405995554487410730897545623817517328189631810518699642595999145896998114341771043006479637245177643679268164708258225782495542580880464157863153430707917101004426001117730229410995041432644562111556753660377814997048101884106669690234906234013215485810459582017220551052809554976518281939431331808049563509654954262436747945712719854152180446765781433876361787245252881528826338642182694994796256505244676634412027845339448284472543669892238198468050332600877595438256497646500624567417514175920352923089098045332536218061451640522450282783313474039693484654829036318653352164726804598368925354232003660757881127562771240611915238579178811066399011341812845078383984181282336711837647080001572426916790552088320510339403791347819113624712938553768892415680927024768619770636449076656401747422727169692336733587026470841484849039353976572022977466842640702821919084798224124794531661431005498005905239288766705833688512482206149534710984081044!
 1862825548055322346934748149596133427068041169121053360630277921842498216420331065436101517853284471538459027247166289511861993040423234597264399090213531154152325460832991224204247775219478162269037424047748934439810630357712838009549153080840870803663837350997206705454441213029591917742629939514995307237270170415364196528927203728336860329061481527742896236191048328350414062420407000249939225745024617179329408207928353193665269407255944599099806968828827050844399246632574994600792042986449465323973861204179505212427321738063060011785376787169099568996674734130752643167760172233797724498815434102411413756510981799560546677324661474921731037030393983877227026116554878346257874133354569082738530480532738145585631399901294799080605124009685028647067730459209385223939212593555802805042031782216180874065806973058958358899893446350761247416617497556241557990104103085635563439454046265180898151998724996960780701829991808562771548275932182666540597115222527430697758920156535248064!
 1613494845071130273754064195830231773206458223223620853240066718642598
656
25979039238799801894333365487283317457744806936838573126776844059574470969638659651675749481925673792597009710439345222396158494412566761575017759233708418273229773614871591366295890585590376411153882534439167373198598219466370678017951851411602904196076445547003452514323026479291494948671492700771417117797432489607250484326351208157350357582355939189456061147294282739689693804878301611099021894090202740885158808553657645679514075187686321311500998538905612790144078514183788396979952589952465704680640783932815055715172233397693596584527506238484149267776787039826045926869126689635822453294703914662256822802851561478193453581948945103767462027983731742071008558772598597863403534466041621023572018601431037275307446841301262993350868509709192726673483679184041462517825852041770447612902405336123584659939081522770043656225690042709516180555257192148433789507455898369285508758833034171337625114614290752179017096478081800193681807911142629924728821242732029883930184476907613933525!
 9040773283998124400806893900303051795208450494217073756743383108221111105798772971078172509390762116919928587844757451314437465702932713500775691594495595619249896155774434352980642102738555454228973550160042230199079059834770260312326743054435128975807847935694771711712099933678295626026670901461301468153899786834554952224077877567437994233136610052847502811624563293509946084212401695871899861793363457417338654616595676528250272556068729106828998874866533358714347907215554260024009634183502707281918158909406842080934128035109653790142151455912960306023624426067981290176758826998967089472406902109780447381983925751068605694954266468567390799062964527790529898994068972785530461507394895685379582431192073588366251916032517109159237880369200880308711452904348799994816038757056861460508893593631957700469187435558165055256567576960758152571455617427042933864392412845527625283522937410224083086925277261582163552843318812457170535563348195387039344813398865378439114825329456246208!
 4049195597037325843020237632750560421055329593971132963527340628158514
76328611810541050806641717720894702618401160241604644168955755026295170989584093460438010741648497794547576830255008566249740912220904091272744365982663056479916582656086657826935847565880365205027113951023945009044169044921452981721312759950146895168832485878826626466625727383809995909013382167690879045502215140429850901770394073896628872803234961445274047509385375284900517625529048770748613439087070426923773444136336408014307049899147909822412680098799347563799952814493598024339295285920502595216137212334981113321685049523840848654904540227629044002331195365320970490311108838252614826661229259460812612786311212066740138468073747385942644839578919526646790622030864277330423204355035247178336246350884078753316915656038432373384339124348491882711655958898062113609478038350105173132503835152381757442849359940804918154498708977966652044956769020263469747167784445952471085204961141666990280936381160093690702884275175672550179162666630613015153214506717600325882151824590253417114!
 2297557541829490109380307662079710733464394564042481652659015785290810340586869400502476113122293048471500887439384024466809401383229177787513856130705123257348571898516745838228355938065577179295652234443304398968833332641534115744479900802139275990051886607176651673305887603867023575370081096113968411118676765527043003538277530299485221029313638483699088942746316425330877528726141109119083383026786960618358343047381966232132673561759983518137530262037867941797012813876730249214752487576264187001453414766342261018973106577761730894996990883205148397144925512560834720413227319379437648371656153941559590920129414916861448063107087404023859880349730678731340405639617528639352187242974272460236411269965217689785740408474588165267119534733794927170799030805390352387825261081678578411672965066198862378109993886309594921056112755364819366884579696156467712986022147717207917973417810921652865274972759169370722342351602822657838923833375502254254097079818447088578955213150090968020!
 5646538951396913950865759562190710945906420746154133845048483763383172
90325527888064683165825648239052067718190260223008321120469082343031673486570430310748145469367126140229789130847003453496181293272214736596307338152883355989598186322694831942014449859686868422500379162081529667776163401778910675860998136222579998439337328903638306947396539968822500969170384039142271158199181608088995680560626749291558825667466599010932720228134633356999441334830946514608606577195814866053774315955674725949578970484656552373924190869641561907159207547658082856888109020931584718470950397761708915454538351368960416381171237798308988845491818799580532831268996090751516195716113827114133103390174811054167663623417462962057239807655642996198194173445787289533932406202094085936939845991597192242177096751414072967694304221450768656867802775457342891979918849460811643605844619231567948886271494141542628374927849477799610265040739194965574129875343742194754148630244745514596652749920572958835215615964311895416814925956990329448414107279636139864213106376398125904903!
 2409498038422380805105130565559654868548781085189294099281441946997069587233922698499619298638099897896465973050138094891822881644664009048528315868437197528977503266153253853492210378164318224791565844870044750552405805403935508387191133532612769582363443121704953545983000916383163557177923138637157409138604351645146468094965923975007335161771358550034453848077869341617191062611367846793195556531189565736895437128586603474681819069431551465260817262313031424299002065097676347508651504535210467209433704811631643669362241245452790293847979933564676901622677802949234274101879416294890193725996941174500184610907852942425397985063835745460701605268604329778043581679366178262110225273614044289955510253733447790106987554947124500439617353514003809637002332126819997294002931607537513818065205769560449835415848485806062310331902720540679806763449316957481750509833251783371522848714641945211225622428204591544241353188249033128085801758543976968631827764942423506222337791638498850562!
 6360681105237093220880287861833912312436185082221963245220953471161338
27505658279254871704800345383407410374000064840313966226678104802631870048661095163795203960557696177222852238716327088899125969948276424943084481028101298540728601076988923319431519363542790865842485925578986019530962923384082101025040066505485419459301976950369910255412325267250797990275381645765096274739254329170097763419534257240466541709415319361031106669136007475329120123588689717597450565807745738591147711244637809981124863493326105664641115878219094069687545109844080137144190550766306026769119431754683268997711701566614728546415334562155534322501488465142397715916175306370642649359232585018643136381052021206465676767622255614250740449532321850096606408040657358803078303961444224478266500141064393448858277536571353683815856755295165789673087059675407143987424898146376596772692542527861331189526300140732352161939112860167207813665128593020951243725068898540208399160267007052963190438966439986856199096724560819904317578526694673841378191192527411060979660416938849155890!
 5717133574916918530794179817659547167104235506749346035575679261546980194211627129322512131860668139640419054814735856351708273531991197979046460452706631989074522137420364828053744958686283371483541771332674101946959601335948560994379510253138773920502993139220082739025758139144454648179722269089089903461086197883088451891718920350009262013278202583266794186019096732053551727113956436606071711386227354156983555862687167875077968444707469662440340224829946283210349232997527973806853049798357661302427003304872469157477058031755088783527829658779401347069782910653622174793741254849352935665762767209530156982562841213944347044152776401659848324506717070926928575794511461995424954047204142815474600066249143517249544334352870804543756381816097269543766917767385598203450523212716126297894826079346583005479098893631784055718886301881618599758487628046580334399594582017239151592838838794269244672055696851409267003983064213866355837875523315917916613075319188632450573731406559894541!
 6171812467030845189851101422587631499523085498287869256089330076957167
020
26534319776408194360332937225160789741998509542622005438312622100554949635171970934449361986305698362532584500907342945858114003945155576071086091704857740856183534621087703392521233434370133424119552066402407925354823715679218353537115220107588411672620106691972303488400254482165291177508116265046296819988326661346850153044385132055787844478370178546147040546904301889058912760256919505561258278875186847250097623548708481074396039321983834524196428408409317393080276797841773030175962798291761601954465669650850386612359772189807228882405916184848418300710380467486809598296355648357799427179512691983597842176480543811772186783801176233654133188656064713109793938075148838721809910098426230726582014931176652512571004218346400449599050851204240990011874417213655229792888434338842084307723707010716280617749546157624728717174038162500053504060090681053087986634618278179457362934451223939192817004288285758485732239832977352296841651662403883931023670978745376540104355075816513421207!
 9522825365603812341888610217022110747134426399672363486714636495896534211370778436694919996247648636082144445490779497203182649020622789809417131504587948170758041416839590315829072993142162704175041450060735173078811900541217948379410527008394657920824806297892263547828316808949555910958954528415375187935367792172126442054844396323500853360969606169842796456190960278949577622324382028854593738552041791614512448770792217050534477426854748964761045167450107840630809156812128320327030015781489869106829101850457473502713438775485783047828916260525035543767813580663066140749521929434297025209152405031179557632449441154111638916268850711852134080181335210579119145278041668789493245174839357197385181001880962384759248888323268926278497671663755398365613871638647629644612001533081542608649270011084050704769424154241637388490738118043575349750646226012377704402380224413189858553253235231636059562601411817466888741446663512251633658689390078467191859820137206889400505609102596140017!
 5241820778685685791962346074437961619971811974723568844158412647690740
70031011258372707778119247445241559866513438010156065849428216299742693845430043221363365459656412258948992289092346497944703824177560796621271292554246873641673719242263307001445097349159067217218498317388792607275927523573286047160935729022300173790321381455582232293940557754497530645505620083002648955432398618825172555479363066031087727076764567218164257122076593864262289140429735749117328730258493260505980931422620971259689433804579148710380624076723283127291594239496143669276747828459224071148669038417642382739687029172352149144234033775618532148169005120359509195548758525809082110121097207739897472121990478796794878000824318690953503233649082789691162239321906333185460703472670791160167710715035200402623801363056916519169621104057433168877893107768953912897831614316139644594590693793980444712947350295719584295492993552709604987739802417804812085570892583900997807369203340311459722383204805555645439091994984806270544935533366212193008044515580722728715736971389122925744!
 1478738495382217261726587088221472018200636408730774450049261949240937489912110946824275985267780402305624311361337400242320010678394123208979824199757317055652246648118076881319962673698616664017943235999041993108778742237172681520672690394085017475237560397255305804244990373907459834469223104986177231394183807134541383495456514159960638421755708878521028647816164243384616041020096059686823989417367894683466359860548159346960513741812774898134229284886168461776206398080124503486775320517662703897798592536115146153106578340087672191169694471736864230447776278699355587101845999124680708497503641911557880305388830545767004366766389610511736802591617569453692560805687297985118287432244889454848835746494987952124102660873513960191094452660865779294404323384393169016481295034053483651803814889321767904077478050192809907604546213483556743588674965418272238536716094299172888495492802328412251963832462594638196667875450866112799847385633482676329278271184852094021580612862018159168!
 8788229281903118074193013014411550285495796673218031847418565586721830
23561943111177581303165289124520514325966923899898902451549936287369991698065163667758876478451791140836354063847457470059736105174683499077795282319415059766445601775609878691809978407351225831957573582676101327937365778841093117624355106684231634859179744731806390074952867449036102253025083113995473087893839509674341653712327039363151667629912250314140120034413322580876740770724469276806592699681367911973423281643018081973501498660540832327871517641151816915778798607107638082924982746189017394347708728333105806580877255649309881532127497435161388546736165786830859780091755967853604285071982507434977950396421575971455196834979296607059550825540546157334344060299937007516712781676909189197850938136687947050507120236108507592245045239758411125936821812143368196131842914929855048302737676072560946988985762766843069258908819635104262091134346526778537388758566066508292909601872883657909037816181010455809924548032153515664840858425467507129896902720853806994583114420328448158158!
 7650466323456769499897271244782750130404746706898105937445878592578390145510043364815875678095947622932830344892339723780858797690957344258583709558459572962838812826056253381164226339029876492853528481496855161323867166524769017729460805266616282729206838136989463911372428942540622059867003385998666738626863633909202440429188701178154331636163842572341784608658033729390914286340560725756197166598833395223545372595563633317341148603866976403037342664954703021200350551703927809096395664698297330786346982950668027952196287325450817644426913146329721287497723915063538721122825973964145076190104354467239619889713830705200847920590569024911534951448255264417783595409144548559899070474586136965792850160374562910462361165730667645704402507704107518552161556770709757534908652864969846557514612634516323236973346504333950175695849402231155456066434205853594798491416963875499055496154940618780259581412776705208730502094728206182713443717692414207980035844954135585546442053369771664575!
 1359607899376771774732378118911310970656850804014389599524954105766187
63548653834057900551597280079189193325452467377375053087283502153575403393312591929589980964564521182085263443993079558731116961472125971757369402636882202330489826385972273912946832354966096220302777880065645585239901441163911579883631214857654696052536923698022937446836610834692897594874148695854935444417246117924558326446273989713155323206573043113816301133416635838078057593434654674456257016027731350614975389755247131138283910383874702218992981438148341515022767383555727497470344757652589500125261076819729473375181023215072056221927898765813301903418485784277186904558146668137454023694855542138097843505763769165885803626181884017255742287358835032178983704493888225007059635552831603681210632625727401698312360451739864721168397068247633544923602794095546791791588933549157427898599445115131790447117073726940097243555812616068217842444606364080025190893503756777279881078194480979437165864494502971921465877873998400288412032809498270830877721519658596439257937316301591418530!
 8343763689647074941129189955465662254758820622695311488160390431656583309875698791525552063203850109876803404633463030439716176510186894094522558286365118942233879008761970694492969567524713186971088506143236223952232671862171604692303207599016553871968826469094666718857424080087452916305795298432814195074435284260140417496198525493954591786306408494434385828257336232732309003339655929380733932665381686335111425446289009550527858031475068586525790613866722318728979002833638170475669711078832966700048970969926787607262865509065172926379995929155795394746332705676508368315700941669735834492821437909647637756411684269411300003745036543770722771233983780867124714215973102345837065218908718480072445310720401656938834649638413559140157150593829588779104868718476300912063835259187339259049229970332806031316959659556736261113618171978707243494765515209322773508251523271761450872040213661724327819175305136217321497777829539112615374262922085332030041788344262260945540585222466035877!
 5327356653693994174934984642190627988307626219334234639267337314717271
404
53640129691021885113160273666717189936028519357975914218170869056189183036035831246249997686500236784267627448112430600529324428585316804771033899511095248298119256176764974051560586722881829426493469692745932990448582535181968330252944809999139005971012313473651268121769945533610556374339463363171432403699665841464773662195029042858065852174186282599930152146084389110773001767842482026365127112945411213044306304070699718987218222569806417878373114081848316434786583470089510615832598455398206001811171137649650757961860923467053980576166889829331382252203527360679663948510876885479521630709488034259871379342158379147401250233898910795262340623633206547127781944279402836682869312684609333859942386125568522952878680173768185830938264496794630167370996798959318759310686056860540001424325743579250541510028663346906691472992772012452269641333538616527017721612479244610303380375242729890153123393039745823004346986875389052400288748741224596481142854029043732317036517516160459128443!
 5178321910772301470743623310715919594595805854040884257931188785740641032099380757862566745164377827178590770043335145439919761542679634921532303305062532440681740132264523868437463280419079823569354698739092825047002969734553717760858725815620118989566381420513760314111152717472639204793890508814242033653603643254359515958572498877773830254802993756508844860125719146654556258101287675840666018571909647269339631082341449210969575231790190710293864212706173065012705765672424207844501396119812620199718291713551750256256259490846542282844835327768990079039676424017305442958357961105364237526815209122981844566774081942596640596217314295724961222464471794208106146544048457641085494581563075669750412959940346500062985067413497920872329584259068487719978191682427966850533943139093561590996382209000862243457617965909998562096817753239052860432006401028761347343828489471826616528867073408363717772497874327018579156431681788304102404691749112338311265691276530694548825695895248188131!
 8860272242278993444227130943268190586300278400487413569260337227408893
60256522941011382537469595727828497143246556836845762892134674952990123319112512677107582746086594533185468884746766964687629387523242500951927389495794750677163896042130111237739960419125785891607909976165869149439517837425471277413339241209476830170864021040583596408897183643852000275237578914326189884941003084155699519808125609349862022722853406435375675690723136312121208840945104412337814468432852517366429156697466522740959216632750190511643330684463732478315175835865990751887241991784130762536941137509136613820158121029115021436521611626089598904896413038914430546647838759136403582147218643464917855894164206994156605950560673912091702689005561693892545591234129100437198178628709915829947193085661647773163214184989901397164887866909270091609781282540677895299294664117890238256172050252789378029735023901586724260707193848006512383264104491993132076673159222837811053649567936783978648350891619169454051905035027167422014966612222653952015055933140998119828844520389924918452!
 1735611999352810644158655860733475375567468343160010432046022452065712898943153178345606878888191093282890396167436811815317809103102255422303175535141326782640824400942630480980232734635437901246388076538108043305143016581298047644828069894447121690270671980971836656219679429777860339943720159200836515447415950096278910846167763203691173610901599705692068267468915339092653974859254580447089516741914090761019847012565139697482914755238336025477113514827086517452193103400681624463974688410932435768030404625136436288299599402305957422200448956847075148897368275534229962597473449590717962628174624206058868443854768466457151989967303974168036453934957670897169531092348681621708078804747475868799276593521745893171581834878999066792475706665317308122340426863912238699807336870838906264005341566904106183020374941550168990446377356371293992335370576860290831232461173470045209128875527359040964860841349100186198599724454376435803976740052139585207040476175107323131031201295067848861!
 5333250386256203038620856125691047195986331476124834286110640659843559
09698279493617126552250626304546516736933946757245300044308084314745395517508169972963322657801428610564210392915989736284862035786993101970141815667642396105658160518466414201909325683433213359816864378980172363697214938990823956460697982850074006485780044896630306926898559320818784257847166196096764604664358604987197232350925353263870472089229920078000487552527802254968944256092206259635245248299278578496628633345149561300578795162149284794479422878926826675507951169577235231466813583197348014179482090251129574305156126520702927243972151050836341006468508273507170011838610993118976214573111170983297054706145746965394927650280637720244980800340847670034137001442671147740746832119934318882187988594164734938232474073131229487788552256915092957280541877992715003221889586090758586074252792022569760325710329453193094060914868153937049838291959217349422542752901831092354984833928483169835716967578538156265659100339246768537448014575928008700855603558812779271853946952643671631985!
 9873227633976066958176203749971821194379155643257141259182779523696356661365717483280308986948255030252740338900310180800725930365702903462383781237927040491903737606346764815417725693160242891101740450318083539134534132098809210373427043009236904649883049606669327848358891615005133709915564957541974217238003453075283198253150520296229733461526016645163203557422361730832780315332515579667880892450784638830469767514366397073839189425642098461678364869020333054659887380021379121644530190970604447759644068553198111077601353149928020468960949615121338178569056866229801276715259923932974334015868003843110972494791044982785298569378080953367535358221804570645147974105884201190032317269044569422162326088604865182901797509661727392446725856244094284089631880708588077204021419009301065756617887817582630814520863974757778123471343618442393106276414229466021485624345013193584973507246244266752039879599177854752885569220806158475211185966233121186790931963481595776386682450607722685598!
 6593294722494709031954775939116128386059788373010009283252399082924070
52295251333131975825978896105856275745052886259271265740080351820939773321940133830438781010541001300638570590738420614225077625317297256737371783070863848053750896183159114743830174411064477442821581765252787760593916311066154483955555929192649554225890328824473601236277218725874002420706008829736832948460553288370623798944626003210743900365286759540619059060703654446464160193840508323161408420328478443792636977874138591794675171151602144918419531260245267925924500932366885595442984320420362101949556588590728442725507191429647484170591439205215647397610347491304275515100689626785213248252167607449860335542901645839181515568548104324888265409555203536932623120049909821017539734450179109581301468781559821633465031016602402586388413271738077845918014889606070326103174189321408583344879797256775037065424991759157437263954488437314255480845590122143321954609819883397941346687265977794408574712029807329825467094030755482797655782499304514609183509014193724637332136656290219722126!
 4226479702078310611743829541625714081608201391917048427880052677453077933368887644271344116685227144734073561031079572795493543232510551226153179035930104534547123724316429376700402253440392998665405303728643855318074093146951151400999947798024002621584379203216297811382481748330478659151779353217850577277767457086310441278577321512555548986712349497286334371662663679725239680942606168718201376841976774798938220129920100823873437029931112688039278478101949501715506129760746377258745054031450330004968290338558370845858429128019108181714599460903558952111872238596309654902951684076395836668421507607451683077407415209163762877820593893460969216742872471033870365132892566796634521732540755744071707655615828692104340996880912277443773771950464102037508386620454489154129159057101081694259600112941355399355307176088374242059484384225915642915762131181762218842361349624053171289810248770261478384255687429951999373273929727379956247650561860786050868582858667948196616755220197779518!
 7233778434073008636881430984303706568930462639044081479776187728304589
359
13731726718218719620550028241648710571901077136434664978140750643579691376436442220101575578458728680588418277542508714605362202917341029166186222667017203640301564037661381757571347084003014967876126087166903382502984433984205240357236991225628414572001125821667035747367440762923184599925531560228107289280592957839431000046903040237784277167366257524713140197843138381534891989821444389961196180178608633977089816578941008078287141358592312253547068337709869670436518370842880520439108369382174631319824287798420143719672133158809529551525889054748268125794125987289602963169621756937415231971704138691711119311627733953622561380489157102074872829614984575792315237107145767326476128880886262067094277252001507878966240767433378272501520935388744329440155655259962707077484498367506036143535985980104007815939999745742659072166439135864883124059643244754334913961713338502138175581844092235666052075909740543083999953759803978014163813106065801221590932119373612644503017874824644612398!
 3216579696644400737938662050371648175445293356469130422539751029837420419453378130004885984551635738091690011159691048635574069818583732729877925987650273021138574483186854747596891235744236575820389078216570541717184035300204621749100899005805995029244834075446426306030792093271632774951732902767784464607234675238436955618849437869680285803394997194123279371131807725414792324494288461997350388113199254254841616342159533056714071725696377620278654174208447508690784161076304493710126823085569176191330695401942545556892485068851630616615352594729831676735958833567833941666669635041906544266303975762945115968225328490732726355958897903699281333072589116424163172476980308904637262708235722627282918410523108888166618787374877295432236615174859163236459594595584916392378269507812531260013191584237817030877874323187908592164817964313639922482314117037023599102997715762116867446580752887252469358684254572426687947372091682785577202040274826777334242216194090529903056147254990678340!
 3549073803909116340198373345610541889744662947055838947310527842869808
06490269641423706461119618624849934608521067302831252702680532944886061640230175394086190655591251236608099393123246635195109708884373099453467899045917965323704719824858228996599066971198420753174820370664618031208972160307917512954145856757803885885672655008012939822146026846809211475719390484223533826485742932291055152181323140086734039615637026519043446149901508149133301303609367558609916875905673881055515488822070681890415107340231980835324730641023014975172736481005655862735637825250087175552215440668109444797766815227102627547039429935865510629426627000895160338438409386830969136862513621957749005928809429737152660139355249594691330832713703101807787385962742634413808751837537409707886698013844306861450500655500168287124118510586424639257096032012713633076219297658796823738392963342542675902077681425671453361557072077938668075821695682861302381579894057166848090864649343980801435775878339643126857236868990525504635020709613404433758462075207146447245285650459343852399!
 4692765355031871527326640773049440855917228258727132139529201695969484089274790960264478812142105289104493759482862875580900989091042083598960727009092373120469248731175246695971108483741354116769373199285460482020453335870031807448846840959232648120872380168812394511198844828295572464309003969445841927113813493535023168719205536866684338630775597316971043779130898869909503264889426823119557510883653887099150068292922995863584558127295925149805600209209162910080186470407916173939061032530498295141671365846510381105817518417887018638597685475233291208676530562369132228346460566634404221590227233454573776568870299212293053253970890127411597864752743608494701926992527899586784646228077287199601804412270955676735099765465453343286398810261364393407626441013830443856145689885164702186228881178922569560359575800029992866242986746210889284018791481613415854866910233174065026051597247623272053545696638773066032916043390873417291463667791078339463291602506729167758328405219821089127!
 0768208658587643468150074922519145008948884004690079142670259459909415
98562503961677282797134829917399609908845650787132444926107546160134185205343587487266162775569041055955268794070139222475759406358079818683033676988791502731569110368929984064873501025592381609133815774822593559692646290664524558781369301223411025564554117179804261819953658474634664769704115877918686220971410782636988627029256866683481103648079089020882833123187519853655073776987224579156398304419583248323981928231102008877966422553638697971878667448417534566391043737416304277871628586215284215720646526064789555836872564005355169535085740231185025669278691789669067380213908348155824749149794106062105807641937492370042713107823011916958833499051730157519753537329454346413197146048881080201933698213600868258896957003875054316466523561693631563982846044347100475870692806954306579705647699521703533538216515820876848695519549912509967620600795439358734746417392193777130297704495779582779602874007829229203055286945334659401009174909297773767159275156691183682546551358580843451293!
 7899212951944539720817665670729757019151639007538152180433804990105484625734431096847986481272938782879966472209198241912480514948169861424588666774554731265213950297322106756551988507980918683992599953360578489684255842916770848099392970352400200699327261542701646041711977527630643251167491025973838810977682191330039317231343457211790484348444798988313080289660166971032939893183134378914636057701065668392936983579647278503860243588424151401435895295435029158457214368203212817857375003807038514628499172928374384232438198990664838560707892450378184081277730786517974144069815532147376360186784602052587230873859896352031476275345191169307871364070803494939091760969869352217679445531463237120364627410123893618002988340782353610448792853581524363808447790859914347294301225054198490790328997488141521223286952023780401363523455438464744900067511659763503628500695648050174884402560701855447390305663195020272019069101851612513980796213514916732876821984779504247201937948492681447379!
 6598432308531317606141580382048566768238456446879019367588214775729650
58389418059701128688324161105951119516100969418890711815469216713825969175278513856164183584809784426286791670849115992205659081194135180413841033100174153685236040621368626792749631089414778365012534636821494387812200363809146944697621585128589269549392742928351452214929447011837690499418733486706021122516129351359074029421043302887424072314548373524250085785106578035421678284165477413933276948128658964156113338509364611297783093714273761391064715223337081201951600694555451478005652003535157627282376717134847905532954256176742671125800327135188389787016273342418214331611374758045655941083340947028757410298357208919644093400724488128075398121134776009573889081376621501446854442423768466355946919124358329307096973043445870377664675141816194472664265621567186116153860898094241266650017196181296465874695051378793064985778549615238701898547193473328184802452091895390988599138809972715486148114773266918642178976150944137217019910236893542355503441959689321063328312342861165067373!
 3788748408020574485897669862268312406167579178681366223290851427814126930086709288549999077366160467558880925411396887638299263479863427065733965321567483276397760516027501358003668426991585909631393993698622763545727913830421147330512994332855571941592177668491908444809567577808212738724104209463208427293225476289557579303186480636282798001916624301505164836492435944157020482370253453894165155812608196207500957596062427483486705402583710122424311475772064099508490430235056123641716176023450594128960326987429429881826961361219718141339111892077276330943347645418256504788481193272600810060303864775738621784307461520653400690334251507660489080805529375599338974948564694766747783365448724498117127969183691367062647275013647027107347694462437693758245995486313430949524247708598610178968717976586602883626647183737285203596362198141449597422839595773152927056367153586789631817045225695510749082357568626376132980643220099293233929159644044189610772188164502096447146491719433800858!
 2741459997674967190862383485735017497558017581173821295371311634694872
796
26734681881909574821480765723798179886830513689277971586161972984431381016494297026387083409094246187885354637430802966032574618405872560710826972504206478367118803737936617823389016847738719249119534244510056760360655857575230315967490345572678690222427589618061537015202983068795547231779245187463092772096726313537170116336921204955042721584334607023260078746057229055778047152528716069158536361323371141304996180959873007534069370517968852006744009721020945093482056481226966458485068556706199458399900000295902221433032352181714057755517964659823083382359526829803446920337912627333995935654193658904867949226839038337070732095514731277632365571567571036238855003594058039339433098168098901902061839047863125919742060553039425017147294871132809631230302218743711195571189615674528734244491496872785262489984542948755658884670641064014340893465643367462033273383797677100378655902885778906401338648109657136583185923040431468760342344836487688908809069747861366085997295926438233776792!
 6459422898010854271222383738410277855026698601750897634039848380240249625049856670190925985902078901178453271137749528817495136483611531944546335531567952150613390094752588918244938221859600253798936495199036353556606154356410234767165143842921657834355925335784987667566039634220790587809457119311123064871597718715233192669507627739937808472697446263100148117042471275618753725876393899475830620189318562666933295460155232903183205213881690022239651457747692165386505025900343192147664730213803007246104698621775920412276943214616383063265573768458524467784277858110260897628711432079844633772815252704143635435488537874433595169469841958360006659502119091951332258966388259370967852890743960080774639501315197094068452652371261618323573104285789066709805722337830016082270749319459283786271506902140384706182014547055984283120240028059604825140097523811729376940472654902431643412347595991414137362689705917189272727903074202141183659338218618396607334261131608332798761656168225857569!
 3100843389661532980794039611402028716907705860210555615236800178144088
95566508464271517258603801442241098062635218137349096186263236799347220871997580464096731713564859977056788400605987451199436957760151354395576565012015965779478189420504414033090714549370266672491650067001537373911427805503133339071378350881966236398277245880880604075113010604334904356118140960088901665777892413785229424124611569527577547213204746651060118092129013162329760305104017985277411642724316698612523166248344542919898330864290809704989685028552948119103606928959010862962215162516000338636007942550820099989022620821659740886808497262012636375586242817429578791850701313606103317001235380619250421279300799068401573008237346463989773541383571178596366447037115729984229652131376831691960656072732178253069264335960693809296060419657304382004107340333703998519322949942218601586606034395378438315212887404728802955174891982762995719872206139152989725045443756564417038539330475911648736569867418077356534821159062056205917316003756757697917791391614640265879743688152178990478!
 2702572707289297686856626253789182010656902693240311731252181865652045045854094380246721315209904185918129213360663426368472158496167933841192984613871831721099273706803797820754021193316099046391089477076046633107744545684096573378518643079092237313629626502477657532562336875927604577253978730108847025455691263165140074573333649556086695036030296157278101537175312741377850548355103693680052139882080735054698660983364315939553888235758116772134308963524499929036732342784938797049559316505605339403724677036334840123752913331387735009456685062037797300611313926931822261434091740488160222696604621721015930258249834597639026015965868136284138728120924825689191108344395213497858389142327599716784421653017777810544228093021451678361482170831631118601307814655851810527158259832537663224652486341478173089324747474474944776572660166398765142133116772265845267950271703629228696139920586824860576069986492982783875405704813965583840656817065162393033466856901897700578055359595892382234!
 3887432529050918558439708758624329851200478061588972224915766964585589
84038770951055591604762163867855390560645873435677431261679247873793365142857318796701730435527893781676184632984872142679904335551520013152123281030584892332738968328807555949342621575998892356702353446284936713633103076206587923953632342654197103798381201091053774364538561850564777643180776962415401491543404518098923328918721471554740653978060659041908468129464796389246032644426003913149807690544133158077168975636680975609802096010198623010734021713366954838828044594078121859298243171368931362440910780180522570882669621542125066421292040616052730282826617890568875332564785263072001723415016146744779272833641709739981987601821397155368632826915258329599837034353980091352418871354661581499123294046096554055407993107682447582299534802943476104619948830558852353417390607078656073166982853556356013530033032013414531366617784161968699421579473925068957465568634189088873932303191919235616871981910209166115084381284453059620926642280761762400775036305026695822706648612605943999145!
 6366170272878713168275921786037000395388159070040736818681962857937250656190524458097387357783539417477962864000714722008740580972152012178057257971319834206980270037937439372527184974852742706862151530786353472823519119818079901099367368405333961902804699151231747564395792615944044561083079144863138913090400874184243113321252744929177230079903739477387115435854108622504249772458467184111679839087219073751191650021612629514614987485589713945512788497934789462449403441316949119499593039072975023103641314895176435972040376397414842093321021098863426359819154868442484340622615972338171425717260148386925021328959983092837136874907946331560931586093133408219390906082077177398771307367880021636823848061394868745465758561738341809044199591584679611352763370128523804246943076576905537683676837907305051135874834537081552854050151821438122185838651616121676930587962686423312012562241383556777415986492252310743490612412703058090060049541228755629157765672211081611838859648845624406388!
 8092327947630601199629728051170274603658428447018265017315141672119016
85269879860120293243335313701948630456005265574892777833870018811600168135521651015160675009381566338525066231355955667955760033779366400483365157302200645436822593989004450338766890986145825631813405415911343214559330024287956896991598789704428820482722336554765222105992788506699120967635321323143390163322682414852939650523039015700045337118829387093884746096553277106205033858707342686358905089084102472286409264315204824936183234239576205569400202573156917434215352096786478746872339933175270430594172917219325960537897442475770196554729687972443916867200210503336041447607085005077476619510005115112699343350531594520267052631090539055308842545015206561062655940654865086744386672451754874127502720771204461117142443572350477253171640182663156902356218574577447348788690723559863120336577380026492293145596454353171300637921908371441787744344906407230090887617768204659139172010350786134836713202259288119279179922656308439411861658698679932808322779781327986405650007094184408432641!
 1055051309958613075314425874995667685409786177684347937657100352005215523018665151453049465061143765927359857633120185958044373104550654654022842536313388545789141947118221889937987089718417425604918926881593753521027213919989566696533007036060918184832194731519287978548002443588150348321160161853393656479395095383843325196046707184743518038636599477754805915213402856034976174210080501266209170761901919276081585817986082129402361449422236458900598711374343374857900576556171183154133809612123799393884024976517807792921228793837935881515574207625892937611353224328350849895761191395935156328129373974461799359468359738554599949465249416161901764352566481906718278975442916266155612713722485927535210981868390456167920522126787523859277948738444685825507411469717918704848855781695037674391136634464803426953397404091668713609639328779741052451125017797781895630253573633623714450018267609015880836356365288077762325228528195652097147493297612348014934679467778605621733474142385207699!
 3030590176853331030226142736178841047794981719032875175302073389967529
127
92622223939958508166758925938289923281343126111346240867048084169541371244031552010339272903595409044484308071851602131704607189327356172739669065152733939172333526113654074697261265256276574557824665787191160608055703710308578980829628797842077017705917059487936688772678268611377042088973818370813466033973924265258171600234245795138850881946632514566360341644737911101232674750405751720028052115765625802459286849422870988995788564710239994704894249861822930922599809202995365858271638458641500058966627638936134634971577251699882985570137905623359284734645214452635355134252150774064982450913853887796469762012706406597031175759696268674856342642252427350665346119677780778612667122697655840336652327817306043098293062184191628553974523357902781691414201116264822413364580480621416056818924438165269794014466983001565013692116049956549911049879365308535313339410515967380191128850753867481175311706317635972782739667597822897452909298366673442835652994872405153844892391258759117170675!
 4734598596059517046983854989775446642162763682603717552682621798744141587417472663431051395876022290183607304087876331188673199166629211967648709340214284033380418136631682826007237873909793030124528538166235641588699585537118502121921118605319014175812254149168091668912680683112366611838382393847883895298846297822640176331750926709717234865443176205093081427994345226845300008179114581332912662869779420983993022249893102587141167227017789764586037903231275662409222467575342885653351002611887499897593584062901954116272967252643494766127650638180239637538002932064674539513044224095573820753324273107767118964585097756724070263140048470512079858021307970022016730553096581374467406331114707882404093571364019248439614499233615625731679180186251951678340706519819238161157953390938395103945782282815012714644848424919479796470878141677808029388306127761834041832161146099608267733980303754461131307181662574299180010311993438996613833356455450811831309946291276695020373763914370580873!
 4486287945074165843956109874192416920858057206163707062357870735546624
17428924224014158431765461890162997241284568530197294675443343161367902189409020979485241763199361439377455551855474110640078715280545723125711980953852629235786496798059983745964675884550338396255920114236374068406349374608486439524433434215715510225500698571704013184357521653644599827029987922335159929261206319542731177310153115402376933860003511148829118943062336451535236414785653028365734180663643587467206745875739197775343284544129052950466176232086257751115506914003407644379216513191313716246401008795021921440785473017131529563007767118979289304183071992487657133763228949788654525558633070733037307058435210129860890244278480562391594968731146872370758653177514548554186140429024134614945376780365082316952165036053523974948920013321065605166659726858746566219640512410152694003053219750051621120167033867195027162590029254190087678981792645977694249832182287592892293149632444646427665856347076554434711401738468973268502777547249955347918305607297223664335833127220413632288!
 7821461755638916862070579136417989523249472062256202403298503786879252035757845185291308322346432383723676453913825188522020842526541139028074843105919565255399498334885265295968580861010021318283582495692627719428548638557726977063050322606667565378309169367862103968932730778899026062410759906025961030467304640169815405535362906894680680728652001486761210295178369530282700420802347291485713481111337103502617097437878567144280150293363716307167697349202477189899756053544597584530799711628528447755986608291232852910059560749677912565563936722498318753236359165408554224314481279208023056333574921899694436346913193823613944532501213042977700318766645843403164295964766106850804930458959230321984080827815720272956525123000300667687811664965058632956940842594458516285737392335651925850357235238448826435553596074300045646515842353836068106514467414410018896689589625223573001183170066194168556046760505006068577713665034540769695767462530997128498403018746857930227053366059934469527!
 0755602803043194298052310649423567527059808186956920850080739594690246
49272077186412319040857902755610448135404817372025332931025309075445911816626015521365761928038934315405658647190726138468676529602195783053484673511934770660240062076006544192848056139507901633352596522929210239665447776601990325534997530657535878595369048515438239295907267922835215460559669340630334227066091317618548630029147548617498066801552105210731203826655306078844198933288877997222031341489865172143802455359161464112014952168697910023507004131262638340927714090972304785839625081760765694040139558355153881365152148433878193466231511946329939204838110065954794115032943309269456260256623449122134247394951812737018470123089237714644409232043790250664727021389722820277612389208781236052428750168400456718639493441009788002412486802235233713696220484390437831000616930782548879023218151594259204873156986198836461927671524680869760879816228727289314807130677813117524421181922540990736236123721029438760479238762263940701307006179953496145943120530223567230685973295898142895043!
 2123718159835236690644588942734291554693935012222243990823931642486557067842131502286577392023360528369288058290214536976441096652050669346859197734916647284227167195002868250293357150311836164957986103578065566484302816227776828822846805018435483707862034082309006974421133026250093157997782682598706060602184165273947563094969442333973587938001984152252753035497042907264182750679250213122954687893640395829794424695591189889181252692050922656983833412109250316164461544686692106484824034666702264613665772288279949298006139478985980556701210523973760217914990071347958085965466056425352240206067854074843675719249512309545996407258772403074760891288994454833772664535214132880931565529134366642440523172390385910188128584808966422657105745951821640120192680201090270924772989212897730493969496973673839053253681142506171911976957931202944974626142276674117996814698694069807914829570921015461221774436244424561529048281988245493973383565867940585891006285216524199466651635466621745010!
 9249976451496332947631392057959185482772804334672815067867238501699073
96791136791543452183087981858615127066042680627243053715893533999791313392326606570308871039872599365005677636466491138359073578251363251761544263613397404017085683976147293196377082067953276435035261835680510922319501044244904235944919340283761263711393400272254329108061245273149945908837051380341070288360920055687662244740124539918269779862300645737665263620383671984880694279470420599604875517312327344154007734014513212275293703228547510090956092551163112576042847849053580874711847771051763929544271198802449451968679912245724864695128191396153367471046936305673626141446287667827966911145245665812989693100358125370243876849543385298936431630610768320518217556568297994309567709440264118225035413028875678116542869284120547860043373555373293867754803366556578956970871070024821296342072700677682544507954022001365247401471245838108295727561683310037270187325938667278818501508276914970219540240797145753597721116182154478278101914661738870237493382334964293648733823659907720706452!
 7153393790677700854751124391165117816594956188128102127853397341082963050727759725665073617984875294404755220237998024505795851645954918347709785045532336614119775836964855500677822623416467894114064589766666823424588278293554735975790597966968460798593828579038354088546891638516347255201821794433143627783176826094572567406526806262136586303984941938302426507780359161062158427955917128460812774246478276312134706059220742101454923518044074246617803980613577890134396485358808526503297946106739660108478210500395034103950611901555522318416970360911866447085000413717558022596810292005015474569078183724180794761416828084262377365333765247259510386077678882653425358713560805826718866230621987156031135995692812221227863011358849818895285470611622408635143723471919845064916367258608343611910774145468495208272702577314161221438192751817295334070771480436955619643617668099768089997858089064777534987165675024996259010652450651903572350578309545539331437828953931330700832195812884065312!
 9627284177378994850168344957656098949343137034072052366457710599842533
626
54084785865368566543896126249146638769659745758854345700703193203404762328685897638561368409641510005230763333529911133437512428938598465177637002541457522670191035034190701618027208375766974970589717728962453167393014683792433668009439053002646964451504964624836722449932486004568754615711786203031370671521901374798616900298085961380159478959767590860939901387812807607711162778415508352821668414143906033431900433198046669247977158249123915939079709473977312659160956625471495068482493181819436983040092166580651670234873335344431251548633407081455279391313946902999093784225824172439794274748951007943163271673922205281804182842905283466364526803532021064351095983986720937857241740934644161271642013906157709049497451514987118907771463332121575795786906251980236866372735458752771331189316589316444682750758448009182687367775819177135676561543906797427503207060743121359532109627323931928244932944136251002230904999122762304426983663839882798992280570698922660535681573773633766990736!
 1307776197064441134358312732095814042039195809599537089151957970464518895056232919755962068570175508737193087013991864591704841874149792092577099446774097790633366000949706614820702209700074809285386326862092617461217448315918130719007078437524019155872605213180465804067471026101919047711467695259839202527889398525963298377990047199751285543168357478637720823618114830770749260437314499860937971015832810089112296855310246944833501028904283854379092073072161769584471166291644025181687866363507804971188381569101317134936521742887325471404703280452864216948008401788191567383385724417251186616195533804148934206160532374943606692288629724153268976210042545990226989698957036555588393317290544978573694451114617121397781671286759487356024705209964885129835896699812879426852938579713322261494251718112266653732085420470671949303434130154923647184182100104891404525140964665945407890588353728160660062692465618498539068084854830446520828432596369906780097379211425591015381305357980337912!
 2160062247892835143029456697422633865929257857479715446288643528657380
06362505194105272017531823348096242455242941161443745746251611459387640358749326715205067984539199128382613536634304402441674085091576939151256833032167187671081593843443998603489319748669874437002897432085615684168167506072663050969557615802806105822442733303669981797029468054422193975415678161780567593106259365763784129157895097664919593241491619537107943001142387109000522018116235711275251098203091396397140209082376655793875863268570578208335620462025429981177990746548109633945695011820247493463921107937402938717274353407209239776125667880936476762508939498371704840769266225571414136495196274954223250557807682759890294518893154375079236156125048089605508051655194801944689652439531347296060183418739765353329390998567182393775192982976419165333302725780765649445178818611294122777225936950070626106556846094050386591190281092498019508347184263396144296192147452694588103029749590855143984829465214691691289409435781236171003032428124972864597613635785310264037589497097626621228!
 2414845295066638910127790866774294453509689265976974128676265709726597595995789226284729991873467790611567180287902308103020223177773347588087969386313511341759807112057289168647536030388830442197756751727722967983725677691578867080492075805646761370448666132581770870108348431900228834475159485402493178205641400310082809116052172926387420837108194073561801792989153861174874239085159822980798641572743498141942664181046066079826063277675883190393594744286617804627278413552560263343991638987241611515211540862632785667872132864021915375472440667695032196592216846735252688907275793154212306854562364576995995793524208640819657365389368206385529537883882997233863063919545141987464963035968999765633939352982178133096776455036401327463921498717893500813901829954131870903659441751401242697188075666609170825758413749980002635695568417255050809131462478427691295933750422143045418126967863299190635477134160033913988034016105370609678326296182108736573442421548864154081386984500250454804!
 8553506686360659814071313897277926471051795647996957496189904973820368
76936926019638846569950678114775337115087258828764316679002743521475843911702859331333704804365241206140380569014184871270958234290321376376127939807647554472675426576535030933520927352493417050535561908584169588086753330837436155249866832969984629917312217336443394653393025190445609095333620427486344827339794542740272985790613539330063348946367222483506494141436831442615741231323944706680852159680029991734149241669716743123900859367202610391906725607304548959240526299074226766812976328399072511247614241532624374559054163754760396700076601385537991138036643585897430948007724658665957317136535554098719386136343903733698347006240255506700583970823048411357138988434050166030301546639610727093970760297694545241185250892345923253111929006301246272778560133787153124839867529449434850083967050361253962886374417606535669798275059599156520361834684154394259925559924751065357357396464531494012282404713397624725065083080358300418067371820967005402005786217832644573190470033008184940875!
 9173823395117657695534233244306686769255118686223844109110170360625040654834734592787829682741282251467369231177994654248216388181285020453404887929041112448769253451045340245995582739235704024941906703417813078470122014138562177915610258838865941044926201432995900965942251969536043822805414847625424301061566145921445641794276637411468666237559381130881298765861815522680713484819243284617525019707870593399048145135584725737060652849954795624001565194883916638311208545939251985932433656147921508551561761208380294842740417911604317923649496568483294077106583072212098367439660715295074563962559775427909227700609174246735157502853161627623523925605484359486986195942485168612503693676451931716685649854521751839124815536403522395423329264946733531579456241677960843877392219493016759866276194404046508377747307651239567922229307257753852924220771042543716306912259031981439570409427506352961762058345773321034458083248195737641573204156414548479315649163659815766239966691528092396030!
 7630786605112309074398150497900124717874652511492718292098256447216377
81130494582512304422146565577534492506727474382945968856099398246305374126165811763066735415407999718368576489583657413712235194869314963170900766197722487407921834509170089850103692503524188575713848990057549855889971894580625632388541433894597799942625625868764968883798515210143415978305660255553598222508863170007318497750056631656457556441010379947942937395915459476444709751480676223384980746997497785405227568515757189506082102976954711740352819222474517419361694031549462120974594958561321467017607192179701692726330981314488760699450346526205273418171069645414188859683376448043713810669824202073413229807507384439152684623407613936356862207355157086088509645649022184584797007478693606536966423119990398458038645297846514226556115589123519492521242858538357920989699311115243850240769683255439981996591944501704924279711863518103450799676163297947706047156533012241835424881092229135272021011935313503189907275226786143548076734838519992881373451028025563640499759710802251930221!
 3694326111747566703194314320910627816064069178252234404664359399348723411664468316785554726289274078597213988560848211815248400771118297764202748207168604338600673757472946816951017261063808475791489031684966333858020394321515636965470150532871836878854496162219449602730679699558375737842669756759492204168932935012548413146427346547394123986031124754420184677773277115141634825524037048619361099122662328653908043673745874977491412161592218916197980511574422151730806578423135212138345606318828125084579666994735705397959622937981517464090715863136690627543049034287603813282858414342206947162490574006132060381714783057261751129051656302711083269924773187887075454766339466299139964574077538761839956276691398617485752948163941820337092218607282178323093642130511248434364171873415067106984583537138755000493539435483109920809356166949439735388468452981655481172630059832183900983777372687737203798799988861116594995784688634784025128964204982993433717325252828241240392028869681545854!
 7262598536698027683442450687369688009096011414316204566918171162385758
097
43707234902073155509757070536056685307916472412650725481765389846591314154009837043232650492142895729999640025794908328480593774368329348050064365075843348505543889775108866402352038691143591595648554979237139712368738075917310983365983398187780053011000942841687001289568298298451035995731622108010097782732461627803187396054540906913979469990797319486155117768237939508920914677045468447855572086897662268657201945783496199190230935187744840921693617922960598022075820618779652401411968866589334256919765285906979728908441154131939457443195376731093604329976418435657520666959296510257736793261286016077229746671058317564573601315333979571308929509565541945548230369192999235168201619474588629005464138847270278244519790348229304124693054285597026552302641193268185662166922073160955636854032654830072062308278374627858738156117473578849190587191612412726617998539786349549167918386695601723370717568271519538797229694640330108073759481039845441014273432804353884052574417485756674671809!
 6506551716931137586418999385160547185586170301603114967711279418862043360957594118325287958619434402960747376420490787876632098594165110747025751223155565770609599752180174896566928511314887878238552843152041021717178387190698213803942636595183749516278337703955419557232737461829268768783488235825137926376412006516918298997377602238074775674057817588975720684027582380799759597463056209749682558754292586375452438247015709207895441379632806882555655450339792870508409182935850587055653943310595321149746006543590057803432586557738901213643734388036189568197733752474699795695551453644978386020402986536893637835378061261307227243483249323653472348417673868524454074027134200680538775299952388431048597614704735275182656895050233339516150654109871715075031433697551950099821110216494296634338320018345845360741630781894290348214678022202606414546791758943782301789796443238997807105184271950714195155731629579557197856864158146443769473318775426032106499446998211279587297554984060880422!
 6989871494994287151045053724215656924018965460963311742998699254147759
41252387228619747383648167759282656671972679379105582792942910616077210979021858941514740773904160337245867936053718701040472051802840746620309193210400864412093026358621399364969154223466542283562787913326686457502830574750421393243654716713104781594196534981671410316666039984985767664222684068588314138687654257777273426295398700925211316202886665435323178321391002786334025886758215953387676758178696626515977627775817401856560597308950411105276489825372030029448569078490579563125658147819259560718152909909963776687316289850655768747756603559560311216609227767860077254317917330343436504977316516836945326153519647778636351101953093908540320206402450598301473654273187363501088940776941237645596150979836511558768076217612534009401466756484409848893710587170850846196679926251138586706598027105798418910589814350554415924797946796440380911980180021277132244398467335819733884374489167772772532214220637132060411030112897532481168763206279176185645240974942841593388414499085556318527!
 3362062872249224225127122658996320183422749000929199422677498275901614562383384345702581239847477486290716232278056302136941279939574463949431795863913591661819171224688658893506359619300913593602132462679654134983960212476903950801316405576705378494261470783367406961537849932669604932202587167689288810711108769634252159883233556706599220772145304170880772332739336330563928757671016239471155547218670140039487466528682186694407881952328150872851260889406149586714216305098411362484655585998309749377467052242008183323380494110860034854151347451133180696079377421347165842497081925450754991718373543524093017166820128668606661998299741011179594591680867536023685959722672916311634295588605774040489943476154041962982840169638029484137637795384475083819302927655694544046226051078588619550298895245065403562728496813436897560724654953457982845164981910824664015216471440593386646966080328105691942080279429940021569538684148317537892295750912424666856593859192775108740951120150651800958!
 7320765830406384422539454365446189616171458741031458902887799673354246
52017332597377447402309860427033827026158839294955418935570664210953144176584129985443087799901517425830510859644401378650434016607949207963423962694980940906406091542269062575133851335167906118383176821984087900195355694840776871283483965196842743336917534561615701694030589100579519951333813602240696147837224415074744373099202092544677493752415951933520336562971447414471969636068165980415538597594839054246724742101406180480979911910805130154494285842602155121108693510021113351787808520638593660018256305214727897909602426692659812986575490029154909872297490273033173948321345623673562909192379555420359206515497029539673132418654766870214429278120499650919763052744839309507757364538088473895168146934741730138707399917684652737793180358090866774087811806712134261935373270362963119974326017514658809444300631523012418876336092374310688548743959245261916895413673072277788841927527217420520052094026430556972994652407245415009046659154084292861281893397365320648557847873290000072531!
 0304967559985157073594449422875502250003329350038977190258581076089795709840818847962833414931136502887460199109773510483859421586659110821245375685177071956007773186184214047438573977313218104423015854445075327467046247730556582207058057033901257484943956983708318640454834799035659271686062615608905969965228372813623091659011946638957051795109161080771191832169480245060988906703885035143643983154129357806116479729067889969270858967935773144175257027747881005443672272425019593388108743553325517267662566813878491912805703153601493626958536403438283443287487203022329665133970937514870599738351642337469700990122675434415994507886086677953715739963779303296496112053737323484051323830247956180410592568640477276402817449688972308832564430543697865078707161863104293492051483379906182105640947452079867983933673826406008392496618070816934967462576138216574480562001273446840532882409958918154020522999067683524158135923930438945112707927928731541510540519091326151975781069524727215064!
 2633028218374513445574396344815625710919472392749468965169841191168458
39510008874207996866156088388078885436092330873689291440384949967769804521881287506062398137017261252169419115810894429840530477497238391545488170429646443433235757151687454361543268886589360631797929438282022617264984659608774214339216642472557597355319349446435224094706865549059766313064901333828759417255852592219608921811761522264849292881580618384298835656093969480074501761122990342337611376513876242359077032875691603256164851131385802303090375719536663558287393162216613808644739051237222980297963738437800623014155533147283270378443773617386008998462040262390260051509232816945244723136701968109913266900673573077864054754714628416410814887549579304065002574897958631312752941332224740533527252416322717101959749375195646147640503454587687156616399598842157824945178962851814081919251319309531190716259450593755138749533554043252450849093059821521548685302726783823504023230074103504977155220047622344004976796126622611370628252982514239291287054954507016171846895005147462293692!
 9871534750115277287131767673990370797368239807613438134191371566802767968373969830340245766681001946552577106784921976342290308419339033745290960900982831343022730039597205098616849714133595794891335573526679017248813116110361397842295795916340310711330347207574494110766032903570733828232626672843507047837031831209914259582219201975191174819853459970126359252273057200044008055443449109819506038257194316129822652350336501283406749676377691234184687609882482036428801109591142175538369011550785533534230121790975534384406153450770122165806428415246339871180716413977730809046499934830916677375606266526575951334738244802167049211519295107129650817871370770424696026606098845937944521211761652994801801218230107195763135131015654416107436142666124014042957560705128872636465100815685648848967893900662589061074880139474871570427380044244550496249351293942733861668048689322855973260513816783852744117174088966149926702772433584019994899716471105820343786345110311371343222689156030685651!
 6930673331437787752567434967110369063867526268285115494815412903936446
223
38890230091954592532571324540250295749028274842731971872511185154700588518419273309438577238742285143289499851485914850941423470579583631105197365717675155529812691862640344929202172452045031418651128371720139153723087922508030030803189687201985924782340761292227468588825136435952203097741040027577333483955737078289407908392927797964667423630528980924433599255141240402528778387162802663825389499499023505136324829195208623909651725314359745605522551538525570454640645441999236597467732535126291864269378575843531211042103729934856873853999445324280238065015744195171053256558549504838835410587729551787918069765336405479895065770460271018375873995217071099897350825584173623437209535288347346914666403528023714746284280427927229248456349768398682170803000566719162229500286470990636041043991940523258542306397374663333746767251954052460946549790491145734535576986268695937243614889526557845110174273889536505588607785479145464446838992638035977757923578687677159036776595738372872292411!
 8828106810421151117989159505277613512638489507280795137338370399197980467581801494035653060436537497105710735397343022076830736404818202276816165686228177929029865975991030389724096056212083417582533533161335127355972650429219864814795541425330701379967535957648030212544081267640678041382761219694250451016427724492443408529767417190160681708829338963628910066289344008976663937954945023361223433253459691710544984420114062819992680370308586036458807893641799245994500568678441438097199491012039025366267447084022053273337308059852263113854103695720685534461862301322251986854338302225780303689361494837618308451958330058191965761388470635520495321208976950685227822018963031274830475148207378700631957654378596955588893733058239742205162324161609179834968091202649543190967378660810067382910019451072812560332743489892909173161520687463376768151438472852824729776983705291371662079300484179157660351936604857149241358996420735199285267009915543249001730492750744526179042249192357308342!
 3146742116896512068090253921867257008659512224998678701908012248236630
07698148093285368697415225203431929856247792104640665517058462645369745045032649256967760685331468975702749294703021430151450636782351215043513156144321819140779059289203901894567436120334955665188129009082335135755495440214995589398703608787238226716094132461505536142814333699731943714694971722532027614660837546047519682695896681602106064073794154754842497378752091483539025760979965219832389205194037208856195701252802737594451563188810448978215070503950370076642184834758425150496059515610641694394308035082151555552796468959656871699073441339432332471238111171942617108518506353794056538847813534318461432891375472692139525729718630595508868643136991321536128429441063405578969196519257850659907283360960643643889183757606066919929411160262672550636459050048353319266081223159623660090935542311840357814009653845643064303373551576147312676227935197877525448970918422206984235072199391658601194215295530427493926548268626250586547710850075254985610592366565067732181315637280295590177!
 3763388493610593509654555702340375931786176929568196719198928185267321004533114032419089576537996886016310389747956657795195346752562322151164018887568610660251638816886676137477729274906352007675189978972041473450695728064292601017951787765326697649325578120205798000043929971509082389972566386193520081095198882895971858147576720464949957344122981347756007450510999826484522113241669921415070656052698051282362262376942296553557987787667759639468722683930550020499755770611804678188555391378447281131066671075552677461015733901984044007175658367497688510276641272474477016274991676830900838362709334928754840908004166474114486700582328196278724141874929764959428671563314690648240078673318314862849005482098334413867617983386673185773418481785407797234324007915185670230413153697941862799501592738952997427822558837250064918633957141882535311486942489842791768061186280090697801653358925160782402814394274727886270429144105203020975265332054305568395517813012990460659406577089154561728!
 4302516345901955273025780150542124741334513099957994592544117287296265
56559328646540589467554654795288819846978586869999286104661550499781042057532443472936773281374346432640465507741400735978242795147119977044792897925942062855566364973003337675840920313465590715550062761657014197808773180007374664670134110495134682788925928197700641749931112028928089450836760646260844777752006946749024574928741396110538444227820566846177546646065126138482378290670504770994809798160807917182275343368869415971446758582307527745227424993360348662925901898068701177396046147302297506976535643083302723237784992129942748038194629220553490551844091256069851799459218129300739619446438427145260066413903470212849900652134507948838028815465632238816627454086903704144089151434537028787474645949264397067874577114186507302441834665952567262138946699339686608012888391011926492552785014493176054225954470096227652135762921208073786224855597659312104309995437695852583470532407998353033589639351938703746390593125562242657432534304179299785203208818790540374500299929608445071003!
 2437957352641597974280549584703653163422048538746283390267374514900389013555772109045463812694393612609999111517175907178253690017229648307359900147829054581195194365895973479636292791966489790475602327171000884578692377081979686261748505945041592246394236486316629067000267121991612542124640065231527788073714861734308614837393090809701178837810598298188906328899200613431032913896691896765041879126489395427821298505326603224119431139483840034416778633688937797403255181081941180317806383316767540801142862285113225113019255184546406481972635765588022160062109304752834823657106005677802308504606450769025904925365836264899826524765902922234686202691628527653625042775355514973595549142124450083667659144206579031573153581383651080599917821240673663623026790807280802973748707203741854336704812109361713832556237698583256984302110675649027986383234621560223988927178273198674479889085101591107042770560934727041702960443844738163439088948450990923828099245161001459129181315087189188338!
 2458945356598659654520848832346508834369982143855975847277692451401373
06664490183211828645529846416714527789719974367742347415455794274158839583804179586367042959200720584899951528750380602500331111277600981373150299098082615259595560190865376047201472255726804499782129558086261719629446261521020209982560573705737725490921045803360769001438244172538062648032231179277886532724798878254301937290917070125489805498949116483759642607132853045673625749407724762789441310744240816306811677416117302733619437743482038893675779447756501774290767804317334040685673937594702565623830462012903472944433109152143000178830814767244142997670507965982251991047700658776767647844372932673619029976795826317650762248818984504045898375776243788538244906244908368318356864949517651306037650963457166520394108507772023460819853624088123263163051251087989744590355906150633777950819035548195393328999106557870946675412967881340089327411225915651483738167603556526858249859014460488994481645395879402488905295725714974815564595004116364322488769350235372007929307138799395460518!
 1369581502107420036637604235994842896025906792830160714785590745406542870237225124858900259507210258036636680841255854337805999368925845348865426985986593525491220676371372408739553874890440576122814929004882855493649124949243975714540432167756597966651788536110327799797815060484738753758878790961397416156956254642015647406360659758290613952263258139360791242652793731253293341421384292980477346051911069869169596374325433695688184033614783275390049601842984480614748876013951808239172455713650807847947080228938446319221892570810236805111178401193192722194103056249858252663658006248429852009262910187052092762897162120577900001322902690175062864340168943863091618985137906758886809534740845970002374347007695366287615026016524681715347908730464850825527330978100171653642758038538015423571945496232995394385821583250246941298961354718762316321743263418457859769839508097150790144321705622882693021981189509732143767172675753391618258130550754051212223693800037942321063305437133518171!
 5699654810548082963723603180455090011398582867299481575125971416195826
285
44772482436755788114947007537214394905933123063999898195440302260807879020623407600224318448899905418686748485308240253623247956240793397976266036297118034268089641844932546330491796911061376359442230366573907567070930658849144650110141488620595813487906664471197795072921099349480414926265136400282081083998226202763805674410730278014638599143444994986274599531145603337363028099117173276270672264159191491363526543840571946766736674958360210424495146486682605218575189507672290924371021481888399469768025287013253879815972059787405617270331033066318821638528954243139884988421922426882394153713656925181551953501116566611880792628404646648778768926676671022920603124247044944481982681854653068810533132406801237232311084724679811774857192559210662221583729244917236790204222343179004181012898101602027058022158964792800073923970064006795848055905741967330225998605264943885110380410085967797617771626989789477430416823248214934348119923756515775818552104665418884181264671131231826784288!
 6922883973450586457605900815437218669999870609785550584038808657079656676271923372872155767986979154854717842164904431783302673627810136052739214585226321562523721460572783300009705309314123874112699476911730904106334576728017516184556062044975715537269161229826118935075940455226377209333956073606246881882200664298331010880287494704277952043473259127914304707723672215928803277824072295322441497585522442930608930682398486649264438911114663132620380779329431885753471536405942754856205818744766426735376562641431513231288803840299611026215585891409241918923119360217765949822397036965003741196622481093203950911828372968295190372665621491038432236373047508942005354811744398778800017117557249866382539768829091974386879827577269311769602527343337443077990739488106494161202047823395578525786948259483984205454227478994381155324159800893815581004951458378633918652322671707967010093491258548397235979362797681264070195860521413277462362358314654106986566798433315233830447218820522763351!
 3049958216487072345998352541156645429219649161915429006699658866720478
95955697554300769589360388400675387010152848614014939672512410846836266343122043262655206993398159590063826064616693445406351388467734058255519952121802978557157752991373267215201215851314345239362970136317415612733761392267281822798074464165283686265464923334149141840545054634555081267199104428277227575192028709356418897033452421261028241273202276786860322305423139553962179716343467616131745503826039831281119492434306216284572475496576891115201842133635355715547243795116352021725173249584996208708731651769121421619653027649424975681440709438033841665721153580486582426319936501757333760676142401159507715912926766387196827158122518092128490081733499922795254010420151349577358021053002775986920431185501790314544334886462736336990424474450048019401238438457502355233285083330776332962315633247798733088263657325194704274504471366555985374502488669419094249571679906807660538289386236972001259703186311181323412156728467443147319062428433759574290321304538046296018975646768910955453!
 3972420534089629850393911736883109968210364965991832962390275173111861103266380571408766486254755327252958280486029219732753644905575679833728781797615841316472579509355988372190610823395244427195424234940851312248805291349296007526476805811912635772256815175846338093291340451144070632330889254888111849838902813138745724876686795157235268941262958144937735721831546223299890374019612738771614746228575906946506544094564530296654091844662775670138985630517943689797762208819382986160955549001222678113278535780041522623524554967078138935527634328410291872533205930303265997629147536735910344415095071622697454506792312956869219657033011510945237270047658444061463534440620329494125807492915030381143693500817447082772275253748974379402224710514715230475040668664441313160341815728899059547126104507233227632274619014809096085225665714614405117768212630220687720853382772068693461613364316128256569445561103957818073298464681197910244921791506684497827831215509355229469307361305624876860!
 6453343584776424088739197595886130781088454523116766123197177244745875
74663825627846729361321755313326691230370572551269050623640959079458104670319543627543648104885278240602056712476172704531830471396585723018915084913811670061686672350296269009831225488354733321715524441848893167150722637868388422996621462015399151569852051666205070180240995432912405631304993564997696721546411854900980689870796385187446120395201890894566241305267259380615145544707143902747424514852989518344687779807185767470560439454852747960743195802536212050645342343295455216111478222944910794014745045036882165809209310229150608647458427467269056477371726211456643859344576314834613942681843786839892626088643599579568623049829605175672194097436994323585687126088653572530059480696550140033414282677665783457736168619209295199989963017400738879749691728688122838149225418596610880988080711277160193610779333481611880266099355981301396476876989813007330751812577451996708304122432617679116752408131120124238448463677891692594955671893564525670142552870660680153757333567522683385176!
 2966693124299076633987043522753954036070417299460453518748835934596440856886426295355266404264869398077162252156623445601318757126780181492252691543435138855049440133825231341951082949427439681397638986804605934717220710475674073917253246540540753785825093830231781447516119201964893440181665953637286217758876633446995639352449707641343011016508430725514927811612941818538578460942471900099768379288642929402255981753986062180677288526716072912360203388250548270373328177347589609596269307062963706583569596725346908151883823445627962033751233318159888073257009734734591567222654441680034700661527241973974175305387265038657338123564810961952514342259010617788299314281332102287257314893809121712726849449883213703135063910475706636118950438645496582058083971463052333775626420254736399698069494597276421805226951142881402884015069895337658073314368660491036545453631982028337836703647687514832674121711746591739594060653801879817356174514526192721706594781491061607885448842708845767312!
 2291181675769061546845928489389872211507108177313167970523605712852648
90170277988265603603642594610065431251528431812106914812451484831998474568820012472525771290938952743287430830622654922808818622400979639738989081716217468708196422089991932951634169266509483686189374391157138031555842651579524338838066487544550978842435166577161634368260514444330939819249416670349552287993593458713499696488614683681179095611948140850345929292528654781068481578332835818361561308108391429720740832324345394318360294174283076250042153936645822263510936892054926440924253625930439152976192174259369660027991187914315502317540787836496334982873233730134509207139663585134723663605008069054870351739777066256500278804047308134258738433664409469070080558077133793857309542871060242866230687559270329209484458578790883310301398133130443526505542326808781894384345757574091025846606358984106004760440239667077790030760026075357935575705724627362080548639176124532260993253280883028505157074745904533831161231244082928007104922777520459587937971680116881950697822586046426545286!
 2565106896527952168512486083347947285256902221637767180365258967057383781326645311614634579633785474257288680072050497017421784982547653092309689569662550516285085377084098442083087733517480602221085547872613937262799107642657774785862278554973921139810935556347573844161491909322928322501243240224186092885232664340935040365824911830560734819023094777384958252932213234633187014459180572769232800843789166694457484229111829852695932256541822900036084344162810462153415173262827991783980169473213575302789632128738466265084554867177255451651239640388901976723883410750438568876302849358934119451761564187458033136481191604874045551995226862272825779478775097090507658437949188152426554893812003762264125743903463710491950386003124602727777822934795951357133196486605612273685194289369894749269974900548593074059807385368414953846047524483889524201788069593500715919884502676421128851655558802479396302674247430522017087002430398361080861306845472505213978274405844418781925669501713798883!
 5352358852974607171077796326744775072927728714915010656394709178046095
402
45431875143584507828202251472858208202516860629237004869524057327816547933967706749645200660505948833753334183363842839676714963098190610807787927331832704641092950891557361955919296815876941623470610769781208417319041527070885528480333751947413302427900597328390483012000871617832633273461520982242681528230245974965698252612842000136675436715040216127184462120244731827248302679852989751053483888077887633865705148419866420832431115740834328293726761364493396239722772356323278889009738210120443555015028313261048405384155500329715811298256028681109182746942521996165988861795439307102305886365683232017974065560885838876664206840628269180946433885927722126895863216095678023763459984026004001798416861730768096334821199531688402626870031817969852531346565075840197434740515400370198785106060874599446695014540352570031546334318165231198110270083200993819460961574081191216738076898150599105241067191474683756662712600729692728226865653652469976172860252877262716403441255773935062735223!
 7477225001428776589721798809331924590744022798056902142643942548108616870683478162521738505764910726839378701487699821555093141656185952450071025756726282595177928405628829700011546419865595352544996834543991977275367577600211083015088181985414737694345938656106932073679707647129849355169454665226709047294295508361572402804820058257391837529525267365064964532820545082765760467886976329703744455637756378561084672717707580825514964501369216617785765432841502811835031591124044461803366199080052136088035738512840654788276905832668183588160700136294669535071031655856970419277860059350785515895291233820463049218144940520534997131064947615786044003208856028892069615344860233155094269047028980977793537885796495500203176504627651740571540617060556810513405639160428765594492606387332289997141083913712150343613364514225998642482920830564858975816032563831281613809600079089357349573108896314624095280140681909312399989881771763898555621844678030169346353090305927962342402106449294831020!
 8506458685594333125395139524838688898062346679486890650903137855452250
72866226268387075001135266029181895520992629675692048459432624769385297312671050641686395052737901019432926945276489047878907610126370136794369716213466888141891993363958601800350752311880372725257289666607166217142440801983478847012145344728599155557751206583279140053175781538856847128680277326385785744132839204272952792650488013740178452192899568618682935722133951044846488282173589957665129647256363359757121458778333495725154613986016474539996485397693116732873730551902588835238311357879916801903326522714816421732506704342138609935553093194099560262759136869741526166935180073301007334771277014198259301874643563096590568345634047529332374810092373961657501382768317635896243281524728829778936104695439155035028265591577398476326430902916874343280159236172941536736171330029017371318443127049688675611298969326529659446549966747153576869666055829631099510617579271757816157312585628589712827642677917168931658000572182823577500040595670440910966673577965960525060506668336391902049!
 7571063448723449863486714146678229714570703309269151236797430673875819681212986427235416426980698879790931784518059159901930243208904155530493648654898714577652218689894805439176308464525900727523862923607472070158547075540521099650969856640964372287015288533923562639273120465592628647884028387205892498913620141401164387019543641349086337928128164799463794627588889088646470966993849937491719882603931726929203942777681983683313383799583742768183621667987121421190501198920878193839377648862844948556180500608907765075158629277019592599324426192732697272823495911701530980436764138562625573321748096380286868504313937916168857634951731734859223470560443030172884025800753908911364147726027748745994192509770508698070936410551204321934903495578994074185271308762711888243078320238190300769074220833279777961813706633730432712975389193500517891619681353734042655631189602586400670148317603541154297223781992199556023858024503661467838605799056986863555406479548954720405639433339050649679!
 1267481311140510732501540805616465900806315159221174402378865157839218
98294291755082767093268942903154938069984379333338691105277619859245256477895878482052188521414090323051816901214574000009966442659876813595238437727895869528100085711256186257365201598182562020216357308379209243078670007961373691021915105475735705150114643389612838724254673005051770323442384123571869697410805933505837712707198694359950796304714577450582336507964044785917607165988886808265296963837809706113313717750364278013101079515061628542206320344628466326332745483154440394667243133116032508249449050533238410324934639220218707275933492912672586293348099325318237472392541682113405819999541327517016320636278222271386691383348995336712136091150015173132961707402084824416264549590498444112954551292544778518221199109403287811888690571468617712886053979969818557792215539256717873481631609224827763126606847458353660351597799098967695958557320361292284432925853647979609412054158932642949070141158929111517475146758281987892607050622094077745207466321706415585266170788542750092579!
 5160755955935869473424959095581322204412566794346775350447653265019712373731757138332992708974075559788512835130459845528488372550534896382399352221692988302198016585965493124806837226355932679288517854502844022774385421022824903257802006948502771621276658064074604429517541349195216416007268506509260553378969477239657905046156503155459208379994119840476532811317656807672295290445459270405464030152877727758048106763492931713408510492076753599728629661461574202205665376469826431705138047340697798725308838911494385723374011860751602326020277648969076985433651473082274338827386951010998336700241287274135655037274059472365654477713997966851359316212343375448519031485673455418147535135182424172091180146858472080007308621447476065238130235257835874553018252817171711710157188625667126334237252205700504060984678544837881763581089485331159715402070423036145258205903852945330542155252975305584538191675321875285985162149013277190243163816948610681737721890294290125725579859906840196863!
 1641021224683198585311232356748194593610279655051893931450248751807494
81773011093419470168270823899002614707023616438777660809420410490544686354854931223059337810243308951270822735314405716559471103230057059511695880954772339318403390277679879115924803956898502261152754441583206187651402222240295020545592180949270457669334725968576237879245297815607873432119742939583967519538975938148769882506253853587776627245075469024658101554299890480700892583117131706379504452688406127388759015841426541704756075230303751432087335620825928501782643087751609267898200013906135058713765924623321904044400554109423982679058978851396895472549226221373349911785642804983756096681418400488487301230012967107477843606612372854182038664763498274477151988143054919116695856174102334354330615424962011709544756197361924031036675834434946443789413681064445016877645049456346504212728487310476953087098836886462498095544942602418712265798457857393089753922307392261439439636121271469414102294397633115598610765038233708498560867410130447340182701469963205324803216226121987227610!
 6308296735952354410527837889212997617751911776446588160800065337119136129672434428226912526639092541244745021092606551372417341989176755715058859635759879349019753878356365836769726786356852258283316309747412348125307407373307360999819426228740443454965074729490463341796564687061738398409129385935281822597588214371805291329544765784586057353907770525579393797189044625332048963896018773846907201185313250307704106924418655809313046454482657603562089749087248474237422844821354794883465279340054035449593256847217774097990573639586697528608147981025414077749824382176715677478661411648398112379479101566435804857278367109160086241988575508013228175384359568411170372656114714123965187889969725516372279329246028440576769925136181587957996442755323730239420438378043723395895865462499957519674257552119758187295093541067551593982937352161115433301310121839760619739363947625219203341779039900603319736828395825324462716859168735502261258596855997293328634862478736415002413111838324520223!
 1890129755644954732795227621021239612213463903158915659464565170028931
151
11583899584089120679647285303318898137638858755510778688613336331075470702274141850036213131036184040695316880517889547278492009423042049271286713164466970085072710201846361687485658897041065955541462698287926417808359334272570265203218095070754674498459447013560786547845160459539106974876929897415552313396442264550136638216651778724263097417864199451522461720975708082500510805854447046898299552932494435507054172858264291404096714565622124370900409579216670651116500876064607127376243373421214908258246898603809964417618461868957256450273540223833095542510426313335675232401935751269512779029901859581625520605252141170135242919335404685921012941442825451689769120951443628063945714883398270881684295558235239973113917932009532495178945665510884239779931824108699001168417856466865172174665076284356763374215609616422026120161239468259640450662174564349458327378066661051975248187169406246660969530959980695526730011676599768840372867308774014466178927638224666633346439009550974725230!
 3942650540425308932280146775346431203610557794395524480251412231848215988262028259644259967619867396570658675918183077336559266491516066778791051898706158876319019072007999420011210607273526635817597141241824062366925376555868441202675680559817657256665332070202064686575511021574253755022247021517925993343302541345605489426826333314549024487971506727720282217255867715657878582050820252516940114359515637451652608574994595025434389527768003520264717409086892423514519089400530971851647234523173506926172668878267171063688173881578897796060631452183858778693708734540094966693003360135869026540427097270623600492292296081310863820623632371577467779415797402484532798082450639053134742445006798450835594480744769945415906439499475775872651671793542742497006319636964300292292105200671567613966611866628297293707079875606803365449055456174068804328975947443342155278698562973267576655053715029185137102846357706980827329232531502006911852427392874443494647938213496398006129780887756245049!
 9884553724038777023483099986083669998597567371069588862719146919419127
32072570723773540909339666469882967037862462373727420973226738742059575980803876288431602697568771412581404183550497490594915799545865238939194742639325151091858556902894393469505573066259692265689160715818537236650471672940961573025352126600539121701451300622014702523493475260476741639590659257143976196544752993213729694867219520214964209756903685163739345305181783466573867095348795181729514491253484081074026569849939436800822125995597654213257352321038454869578436312112594619326722053090046149457050825276388969813510186661165397142404647174358655196291359358309791076679204593365410608538223802648413571872993380233429856651508502649340352807197155910794745390065517046281762467044558322562717521852255957354599497783140787677153792536566105478976853462743996130611415112132548466122660618788735716028123226747181921528888523263669210346564873161965422985362182045726235421477498978612133979025337473446140068063972589239787944085099937220744000908744807063865971024146227630512290!
 6200854961907135837995614829456903510351983422873157559342624846616151894549455820226796244350437122986679009431815690041692088397260312689396895661931218331978278421422590552214017516803769564907433894187159321756849292623543937385981853380713205168163095141994590096949793635458948083285476601328829414442251144496819927301537505466458433635982893646600365783191724328503900181821484876169414576289615383821887018908634120938564274859368741494468758271034517414920043195672986784139788847866490459915696128819136181074809499104157089774012628151012428614528658029810660904552504993859879190419761208419786987603925277597827074501134830610350182787929659913628517527234790320197344731472927096222159394243478143522627476273076771046968400171002240388529506724100516676352123764817200521106794465995622334918739874839548348234989688052309347075874773852328779247981278969176313445179337299712744562486095766732938255681864466364069969891268981260058690700832097601651670268196378878976048!
 9099723055717133837546499962406872385569487506893829576325893802454115
32991570397964223023995456095444641113913610068815867318468782651016965700492283458251394046551531701970764562386182388079371316652090786253108115336266894270612201072180413764483243032874773141202406831292014523261195403727015190784869701521814381043544416171734139163184856547376681110702204510818209221280723044332929124638244336301743384828584233796212323477117793895616687237809242519081296027936424193628184978940990208983798935830032421390456267126734572816186366589306248014609505597734735455475013960217321654009672066629058398180613168867003818705937810638577436786333720595575184276947583277737591946313984272439363341883763108346449957563529327167504171689698821650648076245182062500282624495681042643032003879171181952919853127293670417047963158380327936547393985720855719203508665755140200421477023483038942690321243250025885991088394181164977213846164129418551761714491426912930035970798317276148586325016182854608620417914485392820640005454345597304158211690285985682984105!
 0460286129650832850803299678651040095648664867159033719334677194350891065731490678039563888856636120160050805921745137924632783866573447286286303007729759504751660454550240702883062804035138216852573063414943870685159563959365268144969689561456438648804945043499022556711662996392402214409976894870875671432390355141359521037244441846307985416821904504338965724640214257044953562645495366225650066696760846093706482512743481101346727342545647975580573975059312483548763715800560284713466010810625466272233346373343005009621051946367269490478773749124054206998875797422158887968385177321406209871182774315762418171847869267900415587507121433601085400136043614323289530209572359320671415611071431927199267855857415759425770614649455609995524010019305889729272668590015287487546616870922456131331851306017555131260794334402309229537907376633122585990420900946722670259870799277615990000931776653161528804416226942792168976298442462708636221091093375984894717068395095634969733855835826081316!
 9567621574933325470773488322048007903394362310808579052949172442306901
13011136571741367292031305878555105039631094535030952218312738609909579418876434542217174163341898636399966114987157781219546407977557588846403937077193469087088965536912400030650096894919810910052977438849063125090273785604677623772157855587044599761211641614571607709360754651742599532593471075775443502750536731341311421515232306099383925369138588458465583300328981783740081818750715230806200313004540211260868774528210801714080209025019302904190835899329186593845289040018496437142276759212891349268862566811377549367310322267420093392295032860515018993172710267170137737774780681980092040280778600554521487575529409902873248194013610819428190470689114022142526974181046535145505083882265139194530755489780807554244569693219671100571852163864815980987267933166439026522571381913093473631256978920110539609242823645591704772853418114026393219457034060179538856184362958946064994564456884534260278605126312521700825881938297030445738554413388360308065285703284651271685212444238183414201!
 7783679437013947909311434814254859085530727882948450869499354859854127044459615954660370438862007144661875090130426556590695585728080074367020681697218351782742872128902008090696340037770891451901283937746713397396192638653047706793395605192705106723310309545779961252059096069452429750630455911318666948313642589452443235754979677412397647946688159576417355686983614327317002903251618252270030159492806177051119258911537129124482375524571696472676539447486109952415195614705969887214101515802339012397610830882199117404322356008911792084863059073388029852774767535322551612428367376979180054434711723233452009124690800216455917952417426782938515318930690929326615242566058188944196743434560227097273603426626632933324601470604809846778708159393542821003428078125408106755931069647392948262847057518124302884132653959725874119645501633325305025383502914686146161747856213557454385599855368093463342181359924918575130258547603703012881760936433684078290466439790742606578898750702329364093!
 1022141217467165138024069970543498582023490259398886424818555265539252
371
95681271750701842124791424929017032147007243357015970121197448700552340502077325700280387993297047543119931236570682807935238177453920534328898895257299242761304545427194317333299064997025898764184891676828540830611046209341221719867131576864161549942765384099159560690953138315503090920169456133454175784758520633312043580175872093948554165508691518068779796238225215534250322138840544187304695997687703050789524377319416911599888205225049978294065947534576511591007871639854156134567430809161131379633369817885586717413414135624336005447938745116496284313986194980906009398323090090581682947226257215013537238879393781220863079902350973020512392244563289022824925630413749658558184865137308493414924357086848551351597999025032461060202722909388853802613631139399542461648780182793753662504707006914739733170690468496031510552397351757320392674153910273189676771200906388728885368699332052075568758375636033475087415644176010816673029198608400088033630287086900996817485848932184601087058!
 5866824863718443892276655245767941640438831832423498299037654083476895377032201866803971010714390473868140216052675692484727846834316099842965527207485798372176959787756696581676226551426313885150002946377810099539994842875854419469434726493416512779383086266490588500813227680500758654917845129274926312820890220215326064985899909536153454281456664988465333547576205127922400784030658817931734969138541903079287141161890473576602465080183933538917106311012728666716349829624232894114833103132790658173291967664948500767681292699353879927682147460592952748874993037262597929616656587786392486389524151174329486217752054176175690931085588896847349420932366556977131768140125012422684648222875042923183691357959693299791724995186218684412960786469602898212005892930988387738155201175651141999527970941143788174944968213742860156220391799236686004854434589078533611910302737808989335252475535230843824586775662195604492847962994679277213543589298818802176678337477151236574265094427787880433!
 5057474740623780225900849411188421382924458214487334659190159120517905
47767703712304249172116265913399037622083284442738767047837414547232187942331243607588488882771504586154351093900264360168299280319750680936647066620320555241631028984503825462115957876475673027526869291596696185496190444040446621995372898241096177079883660888876546481266345383532784505254198618337678646150550393790260681921141972384146128642458433235290322236090527775500471229851229503446288390556997598172060389161123806013131810512249432835957733063863092598511034722394645740862665314900012903665041569681910232979697698472908632298673625985784801676225265108112016335490215471442937431141975634586560157182991448118612687718340062387854843797865178568291243295398814162375448566863077376610374632358682132756653148544645068201254845359273609361862647661962319918335391473171858222985701711167198114321090854434250995031766794195448597299778958568412400787726618629144166398690080112196831336509690388607660128461596797832925880349042063398827207906992806790336473776817406000584415!
 4385815557727722956497525686438689492615492892422811034501612028147862135061650746318246473699751882020964358780275946491836629782131947714114521638211274778585210736765923913060868998506259211141528897193278701378254271342756342948078013316597626428724600273070945901109643398487458555697409245980898854354543130536647749198815068928976877790523905426819343577386344415133418627576363103309221959562032152909616111536857398502460586470105166770932321030649010912185551400802166014736254699907577893416679244807989673241799925035797280656378624214298434197250178843571769495769923984745251371246018470693148155082996989611720582171911054167665324330956734999515320318784523257613286231581752198829630209822874943114765360399372610663549507781581885803055505426624517938425108472627748409416255434123543832609419515909471680930526185806538104945097785880822141076356394755809057724715307228194873558353465435751887355124009187246416704347087371584931588215484345449304280820146553514695228!
 0847830535719695273753237916851949729653135404294904660478288559185148
27632394899537955652492011489693944515057270017559068049990406500394736424205054671300501922625913642347395879496470393849364190980985305121916215583700455773104196626625077835124410776256252857389885896602141283489560740932546511813532435876040953755212156433649860471062802652027709773195155353964367570511511669289297922010971656238596325181756159324097731225345331060807179115050723027171482718014689632378298911206102765271789881633454175144414730643654303517316213084867640369143768443200165559877668733018716345340114171356890718317027106414452105849488299115311649761267849093973481068549003949787403563206050307362735703241596870896206437170654363972904691222167164278885353433721158314719824023056716166577691701782047529057734439704128473495452089601855421531362807197407863212316539783012975260127311264144074219061066955052598668135514950838403472310368703125551372593845851499270050132759346277744010111862842552568163298086149887806655297542608604241606829830733818123116149!
 6917931406077720247420542528252231077270598641261194141731441168408727921530395179437932503895035037951699792518396227901253204631610971698139706145232722627936600708627139445775879642622991449792254520996097666447707699215361368602523811891922786914548471455312896040030053736331819603329414068654374220773403004603385896262262491435240745645704922504499349336029393087529334927312960091709522486099553748271054785916100513839204764478879768363884657133050932916582064016946942575202960055661957801927674293456677729155953699020610698986542955378559879910619070455826202385215432730319403772987184519126951494320762869532595171151007777683282027496901717925689854567595650741751212876239672473695167419919503611004946799135528840226940093183819564608813169211264965623741383168240623908705567153973971432318196729323968926351431492531224543628906244160658539676882357676474436398014057261425982234256107424316162548863671812353286877819050593006940751292134844398779257762726963544537130!
 7224686145131563149621020138838593714401889477921529277658454377345516
34389337198873846881110548672335693279400544092121960934349067598389755452480505452080049815274920074787739628419996506533128269618867704334806369178079964625685724551962882319794874896557702147964289452151288336015875191595381037085063979729973568969058400778842970899260848457035518315790089034863718487541668538323460863919827808786123970194710265293188573721480904670776247401432168250261011266761374217089813675123108319176416693486998489202918027785135581501006674431059734383394473556772511783645804646461545117911035124093498491855159386689266593813696113035402406729896121976242710932538586944635942300254175332156565725024360330388461393299393786595927967896404458804607815305947751015115366245441889832989235777566093147716161282180466920613445979929367936650242017966692289797537307364481889831466824555230732125758153503948812726411504231721548244356124418252883500358033278670681387950462790687049011671237607164333985559130240342999861417747169267286880326625575210884784216!
 7745295910245506769303041791375245768802523589809748645024641887666375395553662635915381640596219825235870966413773128739336765790120030073059184096338208230332082989535349363242614029014846162918618765224111053776952694561212046187074312341950219314483236383088200275662986843078418065621236090959500784650336417548080985021354733949247758495304548113702074026329982580740968256127916348588516591447588799029213724484727064461190992366647575211498364865867032110956454715787915092174702627243733696974862807417258185141822083551705270634850960040443068436635163061826437466064575132657060745205037211201515169934911278392933911922239625437654470861056645742725569231465185535254260011608321678794429779424962733813576864466943336000352414466490076798700131560263492047563503495247919804282222185278059569305249902499544309392692436127643824686114268197818083502056125433725145086928036505350298432622855506042603199315127938741173186218796986997634477503886909806836040445743722862880570!
 9429191769339489887658098387379726923223596623385969349651233743474769
914
36318677827011482214016647547365610392372750417481769037539367334032467534153627730115501020934272183689094155910864400019096530153954101206901250603932269901811547829502282032233294005183868364508051319548143727208064375319322296989123492481038512843617560207402226558285085119469948842512588869691454581592065654877912337542707098451747937039956902676262014075064802750327238065670591321708276986091864294475068937683826645445595483089486043222574579380028503186276579406961473162813569174441598027998154355924068114906680946709929845745987015484908759246053742290640373604467742854060157617053258755713356838165740712642593248051691370447735683718307120813930352821429444752842340289752259179215160740108042365426285710974864466763571440820724008145338160923262035279814699967495723236578267332151091118022636939916018147122972023804757483953564553196945408002264803425552680905758206112444701757716058269257018514413944688490536072043610096757212802724052092407023610606881871382476516!
 3617426191339776345613831813650125609110476631833772287206373615954564723741474797489835935181626514376697120034135534989468370848937970738502476000991158661742991617072337848935311771707715239577674030833931423050272926306310810427056513028648466253920298853287963167762303822993724727238804118754476976525235078295056152553947594058247824218067185824570469940773949847206638562055732334456743456604584678377421369225890731018559958410688346225035235372853496331952837062509425074357699749702709405574704664521976253614179666244427266769418930390667634285923004815244522426168113317375863278378688162104759153725897596686964497614224837119437490408656025500721989350265015816346736884651287706455425166107828856031896999887126645146841021440231977105824149797043924612660441924114060146833811612274226831569054124715289799146450952296627085687501270192672559650019450069161290669680281044751819429202551154749424870440263118875457447610018479127818658173997692718081000728960308489860461!
 8682819856309424121676316136237767714056231946113383280742418495053461
68611019460438253193097710915259173600553439973133313584950101728954718495231790656625098504617466557786314887545862387202610219482324287765298638522900425261971806704254117256223607164263970782204859859416795236085281768734277395883082869105633106948662360954350556575121651494372630069972250567830221191286550127146548708414022522315314922349722799135377306596695999875039993780944733190660110378123509038901823256243063449657581474452786185455973624700631940374521347289812152697247810912855652253796347373887167126032993068548886019736402716982725910953192407655558884450815785524584111204449029039069542391284884251904224558837117088816275074614797624618923560650081793494771742907012389798780782605135268992689469841905381462616330590024470471587655036595017893907658141376768737251305677498144938539294216678282025577904173265605832293549483419065860092896102964668357815529642139210405932759540606094382667031726963832041333549467969770041839785434204676632155519484482883225497653!
 0807859106030120865055406042113390401326884294830908988458874302308227993023592854783522505718491063812864764548455171809907731790147058800482920620150442067845397717741908020153668160752550314373827952670837612432049105623462576896289194352666108980139562450209518150431998234087432113171069061682401787111226713659666397920101981704274586664036897732827327834824354272650977160431804192252309441298884469731083473896367381090190899526718997193921451058110812718546816370155095825516707124064299341476670161150355441441194041958291773485107112125662979098619999996540849517043900368922001042267078694579723196923585063115708693845969618420301450551502590120510826393703997436549880619703741739219144469416514106636079456974844934847539039281386745821183010667515431840484689692468261959399861571628430139644231095482686990322371644747157274936323184407429819539857799561475922984017440485153041766797849006369942693660002844979797785554026051121305234955737062675825799714395991788544988!
 3310665516236658561233592532718396466182376448297318893329842358259577
93217130141217875919415974402076397295715318923688230819364762067147790956749070154985003751346191143098492770770798138818879959480224164865802702510746794094352044953103856776649587931702398251039066021471108615831162126071865990081911399381598101920698000241127350474628896671903790748563321428342740092168205493805627071218082873092264983066575219118534647501850135320606417641227128460558544761739453056560746356686442454462741648375569051412067351406096305126451667489406638299294383654360746506143950704968071826849163709545576424848386926818411912110924906610206884689715076660327450577773343041627637106097519790330632956817842597464262878940878385168455964410085119530978589644726690699998440632186762055303418051862939174406365332926189220856314319780999680657067623053407591615808200824362073932301142238256300716736582771093991522624799325280011454563312695691324690032873899391133992497324480045876587713682148976616097269938257076511586663107210828497049649365524129224044583!
 1917028488982071788848543898145129166758790783849620960486036929632914755949803703181397867975528937361373546962761577662962207719051228291742970947233870176534430995784310634795423534880588812316576787070585082465000483245110672533899162314319013052215436791261286621262025252852179121713496924066920955811300699979492303746012845277113877006297076997114380374551150579841110044342089224440516377145076186250542235670399962251975592367737898746431995701613605322911640936095313734900499690129956689795553327110013858417530334611340210845826547510128600048876096829552192847488707229262829045733119856043999005104847076631027859118911246462559319098421987892697851843786795044064658475722817231567695629917575761160720338046529948758793306544871291643075241965092757934624424196266506897994861032792737656200523057566207929201678804962838715115100336495927191879559258750407447539071968649793881976218451758262547895343851334819898095132507765160321893676439357898742571823839567418184453!
 5699545315008254213330651701030873253561161069326790930920286992237278
54685217016280674759949139149937049278885671675062376624149147062796470717735208527810171673359988482813717960977779529417224263323185183553171673320299763032418776446235417596885902514478222072582219340072183477776081196406213804149820080825012550009417665392880086179177814495916154345772474065195421337087636366824239736563281895322108316245859751661490301895918231994263299559631856193115598539627605496399777597174460475175516976074835627598193572000822977574282776198024974038782608577171258560492946006406109367312789994926913103457645884486149904402084263027036695793074385884431406090143617060154103775886738569297937766457558612399789354000109285744495802229354674987543783097095141012618348548384804302413813376370004543922258537140377144794573585293884581428937200197988013084547818926281222201912046283535069380148197439555846775645883344962791726360825927611248659200599898321840601093554023766309078224916292138475910242411413828352516026253532644356005700708404511931066526!
 9068798996677189324926946968834526427309074986383877240528336678123137045533697999195782923213468213769631286354365822506924391308956868676974343340844475190866883257278617671161220784721824694893253233956669885706702469175860698905694506035655495295397051909949288584894558465406108274373560609412581371229484920447400580518730230088374086692946149844274867630316777246275240201540280092341527689170623571402537850879037293556007286459542849732776975398208796107673113480069814479425486208817046674396548721438545190427957906813604316634863174569432773485288101598510904505278953146912347550871562710391723957879287597667221516762426290107454033121290910112240832651769320497960323447741625216822209749915948920337137660945083003433482094425025108000420880575469221204932491412740342914912453802148341168367538419416019538892770332574663274933970568737254487550622141273750464064921367216536943111474833222498062154831615946544390898983096415330695848627858151477035152255146101564855680!
 1551451579171818206935769917187560879264686555598801663358261869069835
490
80835298392861193126653914027123823553159603815778609868241678428828889069354260951079324003869806311227988171991128600523770452959456466794331129299116310269044999208067247169181219944146723277613629229628949633548285822484860356279952084224105914448383351986521723314780164244324668059773685953774134300665516514617490353242511900702495760247350546953764335325238493880458474422798323939275858059539023968938237712832933855378730484423907837058366741966570661655005366451682023745039107491176744596320759452049546743416463461179784533637144301039022565082719110236159323695783124080932099889515512220447025195217689092004577612993889931672639165450735371023741117974677425892295344190222975888468874283967952844319832031847071119468468414124441867497050856181589021631719877589895257713494620473189831906849350590567486656066361494161872814849766530422222441375651762774368445361958950006024981300434509877137624632753556229022597004476935693867175752237373367639023878075084789993046661!
 6752568908534675524469403289701167090970019534392103329700631964267401057700803514882977179802089995115543506977191831292101429500041254736983969009262575761741821728545141809026141793758628998405578182986921648866986631102776760131487057459553406360221049384537108679875355230041508447555432838234534050516763673773443574035676936053277563977943001565539664431729241428222037265938281449456457411895825739676360740387567846891913411645736552684482319507168620999899185474081674769652645935244720501915777011345431896086662983278007695170464937418397624783370979143852241854749035997779273001856350306941751766989882833792138425106714026450584079509343179634434521381204570086347894649963250269580681034369398794000636435849990816048453638334593846684604306821525728858261698496419482538499252062893500406988079407983196383923644388329960581825513076830665590931037684876724332038945128234634070124721463796767443527079673639051749836955205547292305437999399246680298206056265586771836565!
 6458262401341613122993110075317943005543075673479011030813373018187461
42828270948828372872149159666533830549815667552318186115998049376470467035224389150678909051603293915232273611709544075337160374771423268811053826383887246167361662181517805276381066758661986267577132166337505869199618180888580903045341694252260720517428443859272062756313751472968595074280309519797141726331739368010406106613683386129715851165236456497809739048236702156654248307903445966644497733272065401992289497658850565150031452111904901431770577861528261634555817099206035562056217033667168027432739886321890050371041466159293920341691693973206992817664172607351481954815120290805414672497554537181542401480382488040864279774358989161217035450518170433679074493190121638814766882954942828876608440519638061544710060181676041660596784883145328718142018789095975157629660453790175665315024373923787337587718087109727536893918738287009573392549317349702236667547812978338686617231058952304109406748469393549164021972247514735839379894500543078304932829761936243280319206466391934859593!
 1187492120232849767501704144656272937695334614928564790566159838544254520906216522064242643169929850788049603562205892264441183814540887940456152604642646081518100790786253808888459164460749290792014776061791654775036456543063719126897051107129955175798864503225396039477573596160651333709828760989674961481092550416348907172083484913039395856156153788511253058456413850893912516842332977169998426559734568861671652681581744202400647635087836128182161462457641325948035674231361399643436393913410657749005471861745992859391203002466203085594304274032156961815081290853233267827251854624651877808066156335394236175098685775305577260345500424287628816005466348435835950600399040483742325491792279165005443845073652265177248905509237211882508520359061511601291080058326348787823915519188553688458109520277816821133577153943866050679060657587334366500667763995212155672480632609841461142493709846584692378680473652301703196317530467860944697406701975450030747586671247149330060722978454298265!
 9223265098713548763029743325365143042711081497001609981870871931338146
29764484545952202409628845071163482774899350680761521647309162659576733434014974508877788663280912709006884916752205621356451448350554199154306444803541042761871423250277765444311899113675814256648224546762357352610651197919381145853116206701867530637021097360878225320120185544646738782583791212967315057226991898272029246060901000445464923922695823807702261434629979440345501362860138448170567978194078867018752402454298938292784803208503008468921776878082862044177766867301770171858710422446710121241586685243731768336375743574922209717353839850496265914139177476853263434542002271379751534515291235804892956215632268222240045550198283993360031757198544695120178194983129576144008630412328156550541801608079631629481404942889792516842151297648241816041732667771491529188321821595862113772571777526038535830259431341104031281840309708735307744033193170234083162390284816668614438282059884693113666082217582778330477618575558743387072767926492966776452756343709727152451400396951464729480!
 8944271904944221658787962899231980805789829508490448497027444728150945074527146360454918127040689711309472598263846991669098582844634851596457195747457894440780305698034197422651475818805997820997277099970659886294667088510718063885153628087046460233044071202515988407814713192497460536719370979470847468092494296759992397477772012742482562248342074242053795227830775917118530204709061591096680767096775607683686664863133024055644007860205830513959200133634223055604062595509778658261178750700240346141493672030365280484594673716033461580776687394788409053193115913072433035192388268292117333604765637645547357086373009047048409199904531050781030809791226107354968441180657282676305029453196175427804734122207218135533887581856953272435894162777266445191505611988239197730175843646388646583788719291593510968294097739970291274747726831720387589848459691646207404985491511086009188490915906397660553533373042494514639749139394069678159623311323139001190957897847056204825501342811755570403!
 1945598367965147606397148041426058973019194363897886275755189751542536
62798363986459041752373036389156743623838244005760236693218783852568973512158019818344441248186845272738921149746650058304246842026250648640254187821913996477878447691641520613769283968151955660744095317017039947486727366018946959882938286323004743700138457968364227628872025101155862908906566913606630698994851018163805208969005713363399701354271878497239670995487091412643369847186511369877373488115125124125837179995848348524941216723401048733049182151092226099389761223205249361616085053898194263431035145369044449963588692945528880751620520554789494440347206225729903043072979511483043440288989495763563550024485874622835820611447747276533804993623290806124154524063867884880660341906423825103920658024353916814453261336903095582691246255473770921939424199973672374279648706655734675070640060707024313623443745774105350830622059374992069396949682295708300592153986202034165993769590559133288797862569209256736609249277750943705193996257707148690987473128895276594667672351242087581410!
 1893957218581338047732999129265940376049555482483020787801286359330525997965703433323200730551910796732364517779115453503815064244985783081913796043608532565831050490789801651968111359886758448420945664403247233482274835494145619454464159862512350147449202266885801624748427601779809441867044870024681233317777436975659678907265479294439404691076191034701188631435055738898945376389985558901075947658369018547480802237506245255057635947047617439161634483788357533685291032569871564239466742920142828274716367667639608340332272738887088845110392374678368036923051230349780758497525118310557277448670537665947340424791725357367558193757255962884490801106644416754385472289230333036724508557602986985760110791485441673496638583331044843510180256502102335294547631517322922513799804068035012401717977804579593528935574629889180111792315633508051355889695885159466925688150486363732804783668087688357133590908248742358956922512185343213574996949967448983642145812731699905026215893973699290402!
 3185380762305205410977177204729664512654057590236729896110236961465974
989
67090954892106250649552826596127438525911024101230780314979175710726952672813198717985455317823994088577216145394152373052657767392086681091246262941063625834831858605946124673799118769251573372394985549273473570187359572551268222454201697695860720728774609341821909009392646538563864775287414617729961149392590063745356253030831749884329358128178051043222997112244415112082697681674262591267864527727377752739985455610304725145354676022407718081609453226231697729996273144050639354936143003290003702221625088522187079435030074807966724511170619423160130426721963374143478499977155099077423342236550871474125564762886384383165915149903623745866896721484473135668707993901642381118399621747968321608244359564951690145802492552077576731360117385132586323241988634224734264919800004811972347503256158283080913433166505522444352387160082280354094038692142664811021692795411138818127322019991376464395200802035610674747589688462554762473634742050711269857030841782468115305168015516549129186396!
 1412924182699224706991571658001340717513650333188771429214055748695041211592792339261683797587686838947302747896147486167629768582995622801017465451017011215612549413019015860351723464733667168301349924801742251392905122942094455992033492760340894608464033876095367596380190919417586559312873960279125105965404496212151770209578971066552592369719338228226749132290717447358925650461663735632368710651914572979096121731251179784667266882733039105348653073890174282734376189978918962353107670158514245328542510122766969494658077278228726883325844979697522136067768155812497028926894639500869608868383195494444678298739189774437161194666183679609247268190121965220096651025696755742165555970946361738595190190780366799858872628182170016246946517485876367768426787503524781571937121998966093053080712624219283222354740773267012393086411795817216863095007225001190893693402228719767289947999397353924531647369453567492861982424989270153304903134271021709276342769738739232113925619339669052452!
 6595044151138604653255007823514357029911169853347580336298771751407711
77174788851944534664411224006192657502353519223458839466468109256684514287178930788911276453961615331952857295348172253891310882109529678527558323239774908784784302992996076399516563753250241527677440255373701616484645640922822964031088593240803001299779172288856378191832402936448555886388807617894527205183221848743249559404116098796597795500780653436781789307254435833363761375133944439475567360500726539673839557057289869108471464854866449308394515826876336561904874406604031669596375504753011271929014395905653703653877605734078657708886157043182746844626716483139892178503651685339066600986357363076888441688382954775443114599898586212919408556210033922156850150541167542827227565260203421241131680461090777717851488281624568661561392822567611667606657927573849877797170082637914568844029734731978989499546443502014849629871355330568760015523911554888785372663733050895201435049665495955748951905446427561639047535294440677331928469447188699019290574542106856480378056446100835203211!
 1850786314275699817935234817726061399990219561877688445117319798471312769392396483269659241962068811973691277466479119649347601011802062330495190370353533927379484903654780856441686442300192424063210365824544409363154472551729588683889312275149534614653346180420721208539536820702695319365135960570952973381882800926801252272576242895318534660831889363339937676490119229050679319508493041792117584766814515148651413635959188106854328441039582297859223612857217435829209497346683298714159915081343173079656821213168629823329382450650328036553604124660520289722993987098259828580367280713122581472346802473060972812158461466609568204888133519733152563278886350412245513443548375711247050174984444276575897565897021069619790654335670888331263349690881810441380170387416176243350066867777192088117830587548347280874883976197588895499583938032523164803742947345272519553309067355726410643535731419041017323941226020662171180861610657789481105443380330810740459072196384868212196534285778379917!
 3911600394912661989004317072892003708349338383557810937342652952479609
73338475089091430092544042162810701131808824017253975744020617894384529266971870777043890651943693312937577838542524659426518808926748968910253582752358005538391269077290554131161212295012529994512596464192410146890232277729859862630141939346316212571475337521906915118309237346107481148056557789441231630373873908754235639111117764311268958757709545109381426739001842009045215919097649043801731561319431915958867940402870823097877369534880492988792391338132222909236275222344410597843245907669817445941648060519139764396886658086585395980085592742592991738562967734825877636931054513428021587288632705802794211027620779398890793758029305634687796710166265041183583593761583291907967473625118162498699613491153974675404046449593040898511443612792380382688774708995504115129818240816066411134101596555661441166737161698221246157424104322897923087381599316201455615890672163339719583246839918406993375452873904630486735909010076987079286755069661672080154495920277408219590031843308050125891!
 8826007855650453284085025028414349470594714172712969315031746304952030784252422570825405001447097378392673425090936842616572044720319168334245624972006010722279465350586158072598348688019322756918871764613833841605595072939901588933792830070534980679989686059383773683956562878218903924462516083646531865476420777658847503393347339692566986860526601018959336535438707064793907494224975381459338880683097484756443898373964836322071474496291017586530708556175421982093852572882292338019981705012161442740081845558603547632307676008567779356846458256638381320327740857293877928178453513481635456528607490334395022345845093232752144928246232417924150977053631348214771598051829175330193376353871064162620587369351316397971039816829986102956291206005230701742702779581476488488237777444032080898160765987899172011865616101989038442100150368005986050810602154721302039423657011749122239368072671775757800469971038519708546934706318941530146442668447134886250640535251021908003359187494716816235!
 7748419330996435200047848230783473882685236748696252975825110320706680
57723691011708085778514077845669311927563984837564527813275558666635870861134565515783334563931279758756298298142696672277336939133957467919605263193535502771313061602633233641558516451441958489727643000524417837453993690126774998421691235636821719968752455184832478819208439957650005738359023182757596626215987192858853385976376006491240565637793697296915222978309131462352256955660525670378041157309491091965295550202798320015134267615785680381474478923818256306103276630598939935134747425479797143768740794308421547191966231164848823310084491947716162065160878985223783587105394026350407355242553929109592870817743182129241118170018293155798597922116310254505379577419577384837246629975520244411478745631182324044979468716976764622211650666638367940618036178299185802757881728742539724584547594874542325506687063463344836878773030203939733759279647374487471779379525215085864771706082634963731134869466963826927431400970137081380944533965896309304996526934471170364286656914422194807365!
 7898573692710403942021836153022015616334835827451715233399459913944066791559329326988225049764415702819204968544528143276785532526094212831852508323985687214555393932274489183502962698164468334406986877528990083247335098549799892570549754580202753220077258672011354866819200596655991176992857124020698715715184097546535283188331753634685343807464658341216113705126261134683262188362821761225498597062213078467047950848307834932277156598628900357954505472353094631670176663717739669758173921481944714138493324071173263175025326174718581415388016817070253084181707932944444752734507287833866933254707405198295955365941484160537126646769558307150726732997452353916023191708440345203347067429400226304083066107100599835534874935014753590841199844742372714244693389183732844891542735292006572628123437486304525376356434502333965883804137424923661912170158526057590000894110975648508856591000269030863994330134392091024752120366009078358161342675756571051974806258787167591785557435588655108560!
 0986278381140781533339341732323249090255247239958742025026706475900820
753
16807695633208003021464871944044939691382489320949875208671681540892555523095551660779084444181731584730111625052052683739358837920608385559715768206225160949681073153271520489049310566103556620448141024544171426186396879770598996577663676416173635221152610323411355405905960755082975330403209902591422143927030098523019273600073126754528186227700461991899353127877471309201300276684809811109491340166767683434619325386385132685934119214365488824757439657894443449541137940447894534588870725550449062818238221210442935546087570173022026349153138014763727854061612645202589794394898687787638722529007287753466534645726639212548122886802537202331348883819589673030333427940559097901602157903526567572575783202198746874854187300705349842711857023919150851323222801059337848693537179223273968851228300146458756001297610426247124109839932591023788636600713479921016682649482990816705314951607338183411970709772022840270190202751066639907545975273521764606309829519136844078362682560492505418454!
 0251387446236193009476401530806876414257752918656888803964472287345453527447122724090585434344753263597866018579834263576243592137628910697935311060223729269677493061194757829683202278455747834102068969921349445494110812154319227965921936376383781846373219201164513180097921435795836646233135107459114995069182891266157134778946874583129625203127694693360097099359073886540511991728803729650415622669476737715429326288273954130001063659948907205147344628176490942564808883122410747129766917054824449932333292594158990864554284311290367649983454894886148696789578281282219437777789062615153118783833995531392488472322492416838915227059169332076377706630795324161120303922724509782120484391029697250996950284742066931425182508276051480159123577931231821765125253258378090773322078772669114437149376564607057997649225676767975725086540855139937203342440477440506332311576691195345823246702244756667936756860239142179228491344288745867540395323631789851053389017748139692266947521126889855390!
 6617660819273886615902814404036778622952997490065052546531671765265641
94832366026655922040906676990270614653160542472627865509602273927196187198741751272851991490979085061580460763644327231377897662446434197828900185548772981297159897426254544627077740602779731085057497009725088954780724931022759340594594152511052648074871548590503904355798880160976735837729500766253677898842167747686096694802837407920852774608174127025880367928530855208193553312611117458651683455094354509878496905526612213653879850252064516322657653706881426952896639692727624824982199704948531961165425772503375396971244225829050776412593081758267850132083020912627820382015046742021143085077532875304935027147581045453506703810681284757244162774574793602267456409296078391541364660055906559192699555121098476618023494339146641241854191243026697360327086886073284061379132778703394943506757351778422853953372572293780267295305030181359413585942524331383834043813037217773775498638223949588837818636563422598740401672858208210444317618838819477593260821881644793163307114709552129833074!
 1870934812181600231056168565074856997718062115536200134629821104152132807781110772780961547950489800604937135323556143494158299690083661206095536897968425874143127326554477361502714672806322987132099028367002372925412447522611879560921279220732812739443840102406521061543248466315380384775872395437575836187189719811833628195347735682958679714160055805264775717500458674429330625419723885196994523868821538203079635430395883808803889062212681236437145490495579491901379250044881316216986095955898520048965900687312617322709643833381359530269146891437876642098517947382286012256768452998668794533680552448511748601788598842782431789831140452429418677359247064089505322323184239181240664321785042168435007290298921824662249302076065379166668074676474373411470312384674129593267556717690325377445967349042631702188929130262873393929985541071143719745459314914294939286006198347320948344909379593553200259156775070614719473838998229871320314112961880077392726177928135563783401502188222431925!
 7448786371297071330401555962534474764063198355950672598189426645351278
98219935324749683805742444789114542679213910280337155736041289114015170211850543433122982945337020251158277239835607390123000195575121134544964719773003510335102396832185581964960915347361927774174106787365838495956235885922083278792196003044097845737747037709822530136542207729422502199110393578140858091280923116222794958015268852217152193495349079203595873403760190480973443382011201210759790365668040957706388369144938063884013387365862618625074860146266148631831483134426498685349483738817920896817908418641031041896232852254179717175978643160902385221776622500798288396258694023410537745267256272854934213919978603489591875389777502724912188502374200591052366272569692146257938510505263312306093589457801247018766118831954779767680627813177945772704554858147842678264778267758416512146937687150709919771624510173324714841621199591188787141052168288138332544993305144863538814557514564754204023070269205380447419853942723287524579452723674606807249879546536471894303915361665859621710!
 6918866600409382401920321872415624101169256495419705101757289926220419417210226764361262514403171152626369694853627009090634160033226550099829738966028857481902950236723772347970636798034039631848146679628568248357188668893490731360565968924730389754824972418354633576741268533712794220192508246066802481711417332223717731986099614372851796674988758041714229452283911109556217696400681030516847348377971471713169656855127915691727067750963554467530437912272770636484623251856351456976153348803846546863822928930049752197474191230550754964587412747272031997839525204603696215888110769801501179153864582624935921351252889884829222900611866513366584420235324998485733466800992587380056860793616203240734565876745945221019886268558390265872169690792247058946281694350126824652423193969790762753023500818501348778480159939456420635155249565110285800630202469962974324376251207814369672392650703284328855063717870644709443132196026351194763749267514462787707613503405114624063551236453677481146!
 3638401780097482069436684589542647367764459908923224960691401382929688
32186826418387270573397377294995200755489036225774768547458188516856094344220801717839611863398766222412447956534918671761140237948442830559632706683800691977680493407200640741963040806609545331350171607886719472939558177879083265603286093883338305732256791338625738009635763149429456227043049186755288168631591897726549309759759561652458250471099192155971570062393989321999813884084703547499359380650665374090446108893257840669402315652564273100452521238929267743818933338579221859464739442747305080601172672898093094350858737048573964357123200891685023032750214117920747124617795322374666950432273379965865048525126754135534568005917015975062332642515981106433067420215710977121977646598651662879459456321858520624465077752290335668725662954752471822901093834356617556397359712107992697144222792275665580673547309784203726309770933313605043440229097571791308706647863025906126976459311823278414236831393445169056076676621356633904165915345361618447293613180634470573413982208508278395425!
 8049341020761701061906337341496277919666578271113399796412551415372861126712913194646953307901094425873674182134643428239323489689998310922667363780626823430985443837663019411531570864871118805443793297385057932355739205339004582688958214143437465705700844944295475883558081762207577425484945478069374675334342357520169186214845110953580933405138903281602501489367422648636380427482873215292740861214386256075202899594826691155901322134528186145793808993527390815682058657873464934540486756565296959333642186380908344243561826408601064308252496074031524901940422574873646386082848502587761662728449761666521474428635040572043407799258827061017429231926351155661138423950617634220264666543490477999100900571871945440246381394497082990476115546808063488721536353145462078502173284167353908435279029744456130309583936837894906229323547660643678845180436076709893445712090316540859159735310413134060988855277085034070183763967891682982980202008316975640578241563601211753543851113761242155442!
 0668756527716052208232312995906352283680768368872229212191669880149349
929
24213374070265409523580941110524699066637202051266345424949268930416875729325942353071899903385589559663821685309735608496148591321034154960006994855519717967714669465358516927211386609678943618458224013684800373427674021722236608033396373682296227732712037892559032272492656156223837241419231212365751405198154667119399830747634858791484443217016962533878254859957672722955227680994341400787091807733454213675576599512192998582889097249109548923071574736985723482229989343356253171079114796931959238455929885170939387263142271948543282696864955013742570991747246501026950894999718749107254066507848758095254867366529330868986235089318757829583869257536803789474796507924560985074365996462776990487417971573886874320716356405683525512844210836723137580075661048587351135865104080715500066835690724062947718904223518329233150758629648286465726854440884505655217396364692277421724204187834357148156291639384997606828792856921020226124408661630105149652820308706966099873155820447137331296417!
 7528751611871366407610435317171923288724474955005816120513075082796783927319608032080766840501168232466373934838133638367175317445659209628533396752306375455109979891158567474214148870510836736889780279915069319736538994502693091079887517174144664111468115458383688949894209322878265838796439829087318927362879316032732428667494389707067766550814083713335147813103247722908227487162453811914091710426681549429587855423144782235032605416470608771380783055854080309013596681080231121218682904483539553268847908656262742765876949751440006037820835756628982253288776799977936867281348297661990680447762796503601792460113076269397054080321738998248248417664914510917825020476307687982460450442167204819549843277836591293974646101771166954249065933428038526295339330984947410719392162358417749029916621407978683490766255145524974154067956499976987585261830087555122593080423305278461370668454074890287574403774515827885025692129442434768356024730569219487558569116169713536122227800605718328197!
 9147778579261257293101180660087432023414095079475308387070527963152503
01936956818781424588604588125925597930015665891533215164432082865052166261460866928601215739616020037392214295878979557611450290994298118779027208792217512686678356763047335955338618805957208112776869605934505511442997901385666765247668444312160385377195769187461768440577567990947649796827436475873193305787230661712825308774983702439188344762966140975853975441978265980352662636626701481257577353589691090935052048918421571735661104792442835925952769061461205531517656194917789435982647361094367319455196795011913811453923767857433707292522634232487521669832650641353101164967490028896772611743314970873835865876059155399402710741608744174147542152025068977150055779122539054606211827064888648931829288779834496674426188420912479734695450245746781345535801056795410453300564029132775015208065614897738949189368928506974857884057421317142577471031624251359191854645478316837030488971013661082195344644790978814476621956850494784441044950175421311296878557864592785347082840747988031176116!
 5219974571857417234073486750646285880994812614392132357793726507679705093629991623820240309052222317236037981298046396306212728657049902649806012097894839721542425792524872526851298154695333780176847590534184815030682060637570251967971516452620274155161313913554887052155528073737769258007188455434242709471585478760227744276547490293038942245310741886607501785675535713919231708420510549896012583289020226844100309865230862405302155538126165838611776777337174784826002242866488734950342072733366389832424885074065797856494919030926088719248014476254972189318134288720688251457090774906032320581998534659453279877774246864116917284617068866612457122012810859629581035455925673138968892223128982010195762979562436500581805777970929973409114607354787276984866357849461633514412233984234416810769598622630126595636628165218969544367513264742769539475337970874963281532480844446780821739802948358567119744600090764075321667644855300917731052761836914216614889781460234288700707718484834666572!
 2716952815964734885585981313186738848929959347217789847466717672038970
19045026951562491551410130621308563001958385107364668811452631449465507706889906611868467832931133219187383625913365216494222241062446139211020463290278678032753899845421578263401391374241900007743505841654573992295090630565161874738402173225934743349363930928935375732483889648096532784870877316021306670380253741634060761885045744437379341609270011536266961676328040342602067622460751238733220672158677979153463855366096905948380234025086289554977469866372710187658525700549816339401092581540486916390998709794031022136616940150473883379324687334196337334798706661649796149729922276712749158246351016428383816318903144632080705718341916909629217897098463407487435642439422854522461528152867243902753911536623188823245065263921034820348087079141972690001608512417599905577456088654626615363379133865446762111074154703720001598851914665300229347633095820323313872188077525536193907933937157970848604717233705679732421975014978433962232627920932450535988313384957848812896890284774305685267!
 3584562591008654854349498338964386794480111795053796530210648670879710694072054122758901856709120149600621595121873958011068321233910074622719405213469458226828329401171022722418606898558011045021852848696906830650537584276120581748738031874183870124634261606913959783394675639735051595635716334097951414848715768257748011144657899046206983515930083822474853216600208166405773100418092819489246542869608057757538402096754778740771171990184163567003999237889002542366229959224311221238258584813141013170582839257477044160137045094228449755647158698394178644514604190217586972074412596089841245203229054113702687144571489906242518264962821965369767577443890099979199111459776000521388806880381317135714351918198069306532371645909584845944993323836400036821717608084259929971809630107304335592766396843344972891612342321281750639449637828993944178466403822113382036431126711467102658547279648041293517501748477748046257474069093981629866729664343131891939363498120461223080914512518888400167!
 4353580664695486534523611357411864887233525083484697814654134854000719
82930273933782524092435532016711390490183971050067665336412135704961262251041108437139752656578725969771080083012011407979763156559876463850168106441182110946277546938407746493762464507841564516577673588167655951921019667274119744031423415254176648072219107278112299019678174410634411044226163606427983789036188271176498705174622605670397324554897820470309691006268451726143976771219426743871337973693211516134006777287578999601986342158990446818414087523543087864358394290284609130638627584987044110479481080904575338255355049937468050856849769173412594142416289522811769422570352156276593832228042374578738864886592208144698759365856824816804498087225365723105411220342014138661718191440229263128449613446405236135168096610631424161774714386499290406977304222919971131199568838173739536428092904619323160389857096520740555203292581632311778622399664015638003600153064976378737513178058172271323014041277054016582228182927744667857007160404647269581763723793921192968897010228351514696485!
 1251550404943215462591913158081310303685971168072493911637055595289743742669475925152454541034804823142310983344364006392496469389025960551401490828609706489324530796339754101772562011992593477650166874805298690885972262530053361099824677836269306197173313971669996627728556041681406580690473323942707992896834815971203934956499404822349050199956047776092320046545292169023517970995148314613306784197451151613667917183499996846271035889223002366743113990084550502711514468036414334300752731015183589302742071622974474892424282645872606008617020839074020639139013270664989110417732146446861417669372955272671349341272211709437388972021560654614066299568958402177156098033671697427615049820845054215828668390514828279501327046917448867630637581579050379925999653588542770223387525457016815188972339663019239638389358324744854701880914518115943726954079442157718499052731627119228702362118193899613633068110190742968366215846975101726171252612480707339785126936217414879147191349823526664408!
 4082014457478616307104756508570561299647665765625179352422148535086398
162
93922994164537258277602494028974862394218425481377693017599195206301906875293462411063064805152303198203637531474632818788287865442782816048595928779525620346031432646404503159109865969587457179809754745536682277363153911607749083918323932479363111104822498258526547341502123232208605857137448247736406741112965031360269692025368827663748511733937246021503138338134717075852868467776409682135565398564633922932439164292589206566899958805714077879442692486679284693176107272324791115255061448109602702486958035868076610208830736646488262715503598092649035647974408970890463160722541299128573459655765340025367247897817751261288855441341666116044736228769438875008667676877724218156947754683785510051845724416905472062635071349529701069390582530472818304664501851865403098428379658314800371601900733810691202012326262147314227545608845684733488044767619187575657166108885755908097614124093127579246788775162797787594542930515853251551043056216468414723780532949146855846967095772267331834029!
 6847198160570033229272561636554718975400161883053282108228559301350629965340681012667718273293674281951649560474775878897202816396627215756481440886934843504339828388278639568192119055084549947592902343865776439778893509596784079424781242759045477181864760410779388661908649528473659407609908759839576503624320019820808188741793762479797952961586751682777539360430635168755944281864892163355432361728550432953889751351951593526295276846483926365602450596136081866577782981918166964722182039093286442059744145071818533545673483320102425496880264548864900077735865830206035798597558502254943004726579742234395454072397689884447149276198421009023065253142705702518633747055055812904188294882724964086908055765024555213222052220403782335412057683229043815956273119497870534124085354841968512239521072209198138591761648653596762328295425411278727308909138262462175855315049372794639019005891194047722876434000979646276910837067507519460159622002733592591703326551108412545486299964084911469197!
 4331415479000222740708989734349213036170317907699692916425884428995666
77867513595090656425880547319308911876740702890155599668899311041703836817984655897474065600603031651174441469508175058418372860581903751823366310156840555426364971071009684824105431979276867589069954963381856034678209270017155563665410706153349690984623964994799555599510876218111226909859004822516587501937089134234484319285695758506429381447709142118408172111633453712386093971214193383260890960241974912862241661527300228202942408767503606735320614905017417447051905192420489753571681085983591180926212408526891521145581014777053043849573388471058653992259506368284051757236665667151290626069618724951635389717623151817776558035127365653722680752851273610540081044071050219258652419175759279643228721905003976553381689759463651732400579427615641755208595750817896170779776316069188643358025327752522827291891955283608485969211848085108086255604341152432703550263542557415252536074480179011851769418544366932431541059672895086959209619712391334735161320662578693087035073917606569925654!
 8317175418796256244563813823246464514142430938199077624701129573150657555050967501446679188673868901834108476982664459156440343723305684890822644552676332993515739840192097302077515165126744507209178784515446679155144300340292940731120377061753435219893360063446203561300449565714060508463280673311060487475234170658777916995633289979551343065347751262868903381532753521437959301696390497882542925269364986106392927049925398474670554090374099133721235085805055569121798647809126581192715911673155325814883317129534669030820384988859261966740389855314827816888481738439494174134440744185410574653094108989397056195421160941977676445114224450412064557575387099164636180188810969047245810860361774068371392478215866455724424203160289150412916613035739915273299276656322209265396993925855977681871919453418301184159739615782700587573803524551511591160592377011094415608355954310556853197325733670916255014644447437298651588100379987348043724378241736071756521964513569269376240091214942428250!
 1620958390832259590947451186969256278583197036352511054313069760005057
49617981253495619871907973115535697841805906005867956642348199712022526631041877717874967948995578426705996810808935920247870331119741503315409254939560361959723215576256187680095032651474533430153276486637035153948614294041046249508234178023036521910408918158122991857082036466474842475932671952863295421229890236633806859141609397568053534890244582031132977523490723647438451233497750457021658891302200289855159303477321770973704758398837976574998936309161621101101801009990320379600366323224202462280041296748647346450192437748075070816206327609431269245905165983408048002590039776491127128083884452956208466878317149827542476661494154695558734861777787622953310288594969289932513953067253831422780453243580166813459221378876153559793117724140476070043423954115497332284455485170131881951415504873045357646267670402954841859976720346011328551240725672699921076463314290539977296433529501822664078961304247017047013560683073700924113017978451540801016519512043720902136317271906695338706!
 5883010569126780758590214948375661966229512524545295036566471623930598610042935005754190850768245708474295763951996912644909401848321463186238809505596807292599090666107902100307631469306108357690935414167246702258865202361348690527843215429197609846169323201491273011726622398548624240590975733871588204083760982586405749436216498181263100692482777998967429645314847202149802703188481241493854893837103548689193538800785461934010038962766833494689068230545698664472619941631237655188106463907651667989313810279521449317385269028583767449302153456979267071423341710614942890842253106284671434873030008457033797174031567880427553784453407438304862398017487108924137485245782447008738546225577202430852169872068563853030201528826499221208307368276826944011937448206311538301080310592107346018752072493043943354487927289840924281880305134933805353698819643897010859329242279260404650502802388101259108886977771595518633622225248937861348122557124360333874553354586865112359252607045778404197!
 6315127462826276701561286855972688030922098494595598091244937064415391
97091265088477061067781959281798296971660505626879818996349244685372953511062990614903513191722951741245481241109439562521107693751348726800720155104376236651427187182568365210604839066569237844121753801447206734476983505795507379455733273638183098455460489113266575300802976189222190712390553469944789118871836926944032881690752656631893386441621534319337276863054852552755122211777794320098975647895137740054984388873782423757368545480612415778066943349098158778086204367697312021619346647270616101610186468727460982813882230380208816475404021486536259066823282143303614562342758891562814905258311530131838626016273344101080355386676475585647178508011539763816502256646197791662362659608391322975836062111058647490998394286246561630075679849821055534257419279544672917312414599148810224633680699136702810761541908295379852736645756109539665765610111677855558893292344369572122775609821207076660648463737925394206054249838224626616279185310192324958710076448422328583655455705200971878896!
 5785976298545884383883545452379899070539652996768444907686135739726912135553177263886633606876053649213986003965365139635785612350643318921159932567178091123830234616629295975833353289809307998490314964228837488348692348557460857897377907151800804073227635504502929921989099267889059330731162923438165123542942780896300791274702237603150921068429626217889299354471414183319559520636047470652686896053892182307902275275826966111119423708333179281030519908895156961084389458891549651143101548953019819233634493770112327327257571272302674530841231531974394014259860639738991325843284486124881158906958837083275228896334960212354011083255914286773909007650348243925170748878197623300925446565757516480000119575486937497721146037675380415821286273655252479997448130793968210627133972589456580339569122292209093613006862257150099701228665929703419696023105757951389475034617536656029466984865477258095200090449950455205456792621323889231222932816235588673320654759032441403990345526496649964084!
 5074109498215410022101256239585104410306194726626100340447271251848064
704
12448589211620048852473068553646322212229641449159554784198822204647655713095770706211919509097009259078138330870571628522148794559890638836552723225517401365068144611348939572335209596453899127550489852653883549337462263708939608988828573141314204120988937205023338402269632117288557528546220406329697041487193623853174289327373126224661997063843115790074156018332492090883272876253297715576873465569710527451148499332802966924893621707000463180543266418633397347902774592905059012024715933646891731201134276461062381105628023789606872926551265087134166529113195171153154299240116301655263726787389261948909061183430369267234361661761193081292416830557503240213672629773109324190537046120776229222096243745900187477709616491337763632952949483333638370978093843282353713028974411200565935673423262113087716336973400419212754878844566246996150064653016581840484492168664860969313178497751234111548490563448343546017741077738606448541488163625467990388433815620436147024679452729183136460597!
 8015760038924355366456493252973666712512335785908993488172175804366372451202759895427389554994336037449176222906561662061876566308796164642850160207075378761116004800967500335431505857396676243336320271085393369657727114037782484238203679494112836971631668510782278462729007174570435552448397925546006778584256085891855709522610849272804286790639878649758061861490252707566805653643147499979387637831258663775848438589089261445577106571035555971097793802079816244669159364357072553156355675134949377320984632325900356308544419704870372453903203478618404130879211236318795042545734696613790996437664886148209435891485858967444915626096541511740336493045123429202534984187764970726866202253359080022555437162679636738447390474894139432601076978070813221966252051194095403133954121031769569505453124806780540156923116841950385612741004728467273634207072252517160385339984844415125096022327988712600599182497096061021777762841543341344407812297200710034845879783449587764945403463795307262258!
 8902784995787818975334816579238471764245984969295421496407513980183121
82988597544311638037093599617224926191248343514520688840538352749013830051475321282318968636318290164650184323766619799248956045295848665025523201887517067117928454823650273442417715639443846307319346795314655302447196864373196841706200443276181669213994360097606336275252199201068227177351417548163556971176195616409325966574369629472707171105222599399749205862331081033290564143664081734924731339524915033901424122832602354484781516215453594740565968640031659185288191072887535476909522007288960957952177489177373560893889185756710856136164538960121149219258130795049084399323055350396698744185321165199573867543711654055492144621901563754377095802846241827840941106721851370801336738899115848469784839326617074999639304996576571027649829651531723649483106072289021886381006881345182756825966762172919834388976406101071802849622589737467393414736523610402706768671929889188994663256882495821777631326638016085037192538845056727834995645532397311803817788292888164218326347691720284960485!
 8911263739033915695286524981869957522761194784073211591525537480187390535461349709690424674181145033822440399649815556957318136435704211904112386300676678912574414858843212996056694082534406147236794478695189937205655455056782954327669447860785849503081182036436670501011005589909427869001920673308270159307085421325732286485047144593485361602162607948894872635824558616458264698547845759697239133352179429730509652155048890204585373004984924362652874918845056639013900567127538982435087532904673354589518075257044280866909975963457536715601819012209369182415629793917594009485051868286448246135186771764632835143688737154309993306209959686725204590673327801406366511362871374481723179197411429503923277976884846251549284420137998367286597575370568859303876457282475624703338621043028650352081037444157434179294030048546804269759397037577106352922189297620811414182684826413029419797464372774482000417814810335508830916768830421859208342538306855975018829210195032800315485855055560985810!
 8226065305202403421575306217927011706062463930173815309370856128747454
02909943533633127503774943802252816604097783927052796765373430505028771926137601211310500731221037148780325068188905935516989177988492406732834923613416026696951645449678902654756906546228581620643430593780963025156455399712870485306728373139782555501183852577308988216121399143856460888993191745639215242949482707124841893274752830250468382363008564267203870458735498850312527595279679980449468327331810774008155484950239736265853699359544154363327712669471969072138049176033391739010010717044921224278909500031993913756273656754286240428804094126620202445209141691614334937714517420470470591175521553952643832858161470888607775384089567759662065807629352486142646041150480275910441174280886229253118032186203088856411146827228092755829869752812777495767076964086650503200273025715689501155731115930854270270445428145823311382183223338438098619322822805578833118629084225702650405773145644336596530027592248164465652517325905772433178638797657915292283486657779747691229964277203537357690!
 9602385361176686202509304959978083820141950366779514641764644644110630603064608512423405460508898905194651089129995674981068668576387196426877481796490739842393458483735972327982545279523912185759023085989367825423116811761742132446140818192169365823132701982512046899829056699131644678326525090741778217689038602573409167302645020010769268787857192176548240113188043660447015595190032866557912217162754461098898575745019516781374930570810056656808369453531382812585289625700459742769545130862339059952150249047967116480290482421613749656757121160755908320076110469227525866652747897190458467646013354271487330124821524683667589513030555466792563466981366721767175147694967877610626415224146692581659637067552437421885353489200719123107778216960052510091635588206173083320674738917841976786170644750439185929446638662931974854263523868422729947242247914229474830974267669124536547548467353981876208934497613099653310344306064918097263811431562942425604749304692598866951971085270225283897!
 5115276724544671952828175077852655137699075200554702054467510673623525
13638640924034603350375966021185202945540312175684587724929496487370825655188166088625302272232357195081146981592000013982696504297949718417703129243901487319803698826306179951865964080131771474170747197949779733337854092316089188036958261185824782326329157076548135150287796023910325785729000725331048853479287048866780404807749551634630944870577739202635910577394335911977471366053674874825659800295238500653384305933034127367104459353162719490518189963555564281829084456792489243412080206196287157879219685711538788929861102476633662109078062369666035645238191602144090612521816460897347417021863160064417806821384020729768140671219363992524227591108731460016724242391047760256296601279213535667892999970266716899634516527553406467147785353433279047193528542590955237427488977166388668107863486324578848801571249790055248461169391644130933865871464681170586861874624292828741634198005896915047021001980923701785136110540819165664481125688831245364563916162696692518267847340661893226522!
 8630217198647756451833252925921321848948707173424816529184444460603011658926442191525077918100561935017771427680766665542494636463405991279746331069720035460750111426255568377347234536582852672239978910409004791221373461988189661416458457334593867556821381662993448701954819067709977966840859668103596555189705602660353912014169801530186767483515850696768564610302663652003981280826987553471228286400444929045080906108783433530610374498492382225220576079659673079616874713773009804284715063988327701378815007745378010573064310824257892589436082468158573505575015614663602821329670808805435672368139382107807942061526855540713572774092368039150837038407210653576975883688787252043505032468490225576289196074757440694302839918861827648911482895436113111068137426868643227977696908056617105813410351351584009974168592077570497039118590057145637083915833042695347915310660083115287996765177257168599127447765696502313836596121492156995842556020077142632442073474778491131296735003379191939928!
 2296678003021142191701292323399341363583810079347740407195406261336912
456
80602910702759005271351811458992551833566662287852349251544316868202846536411755021480246174161564703794317129888576632458771728978116324366917381868223255873052274540290751677904313910789024612002379663857290518010977651673612198063666879870835948141043095423966186916776873338969978065916514538712185499717629019798981016542919073993195782698504266018577250607330978934700528367269180726876520561435683374181831284120112509285149658574679218796343615205906549812791070590668874222414596229855362272181526509946164258010138305884150919527136944099161792297791815651346014897062840570488469154347991798582797744480849564780816392428245218383057773241420374831530921240141396629458018016589480597642236481063468039455020196781814620431685373869121869634541709723922261018823023775459993308487067982800844271179426710413754491579456372059533416124043415570076837487589221038797440353058516112447737363144154187225885083291442724626703674660632104867969800425216409047448985048101028610290401!
 8756012507863759993413801108767320364901306331437235085395846125972405098919611850548267681118789995824208001602485305323260400040344797286977191259609098672843970153060089508013728585764897693266807131182226355403140127418954355484927989659997738573617722490998968413872873334113978132055797127133691977100212959207478932740073213090376563259679396705328354409541425085772240068627529377092810663158791060716725892646491791971980725391156704596772941079996612415115049546924625910347882528962775054446083853652852203040303548663574049857554364795454031314491424471883946406155420664397665854489502985777884000741615117836569711956294514396060567582277530915442577409307634688506509131228408328760184198786128716152115095179661878946325783469887256941096077130846605889230512933515464508859342226120494270574604718142828933452856507871379153815915399830332236462415419658582014495998439165159418386256482331171623008764427712347392952910053162738239157109574583721094534559404730826819582!
 5706688346554290068268429207461636275738913770916954746697816812628582
91365234533706673075712984925815765194643382301261036722426681821767275755953196917116090350976685828202774625419964015247684892244082219682999617124998238593531278809524301069499551421284623598397817385772705981373810379178784242950696648776325212006474141457428311946773142903603779961911600319655796003370303848135261611880886643642825130816687304968286184816698386676095024345964125032637820287354551481740004752078576377753694947061938362744206316901962915702534963434365239554239985510670282986623989597529388649741254077580760970561983972722493710011934175269100961350036045965899844860653677249782239002172297985673701159363577940176109314262513078363743355782392430733975321714681471223476666858772355548467129041406293769931057937854809475758553090974241378708800612761628403181267876814860322924346000425669267984091394397413690324178626793568180244012092039655339442696263599050788180722829860405257358782815645587437090241639285282359046050201208158907475110985200046296350411!
 1086986146271048966621857493281723980711516597298070182203122338627834111009608826395896171402880650996430484326928379204652599632370916835068055986255491393630349075975801075502517924562332985479099877233747329305497324178450063271248109501968013789634654252635718517968097343384811547463560735146890759280132001510678435395862564223214955464140504258707292766314329512625510827913976919208291257402752432091201265717999584479027683692499840170318527429806482116749622365161804972592597979104587121363629312874048354417071490228671178937261312868210776997448907881910128478355947397179848960339954748725788388887748926362824599556174332588160082858676368395049551635860360464903315269883370010188764586785214826145553573909349749430409868515864410148048793429551401417019516357035698645946751335622664782114649195332350934899135202032388076230119465265101543225435530060033285880663393824237207284537196969562828593466077356641345291546136748144286074382877352295870191330338878193952174!
 3368874155312465447944175491923009560796336225191712669755141517169943
94832721815664927457960247753808089447557875760938143832378546318490605382914564068063053136646301870742164724912882402199812338296959730180046213832723369136345268250573390715124354018102030281989726088876095496806223162190751571652031648435358878794906331053472293181115490552252163038508088910979906727910856611243111133400076870825474348070738885038206200010056473569208070901135764306021704418770539055721883323026952778346692991921556497947430241410650520838302155018009161660586102465049239431076390133627121746092204161107834748276627421887483981803246302465621832297920563666099885117999166006346008056739074594726236460136804424255155640866251785614821268895688421552170081998259689459685225248197252096278964069587666467704431659588726435072427937939603573211586442725239383626289079394769724168835851387589419080230190392306627540444373019946959276759678776156824682480673695109757375976742978168596659353814661918261104838193685401169209317253540155538691869117193592988299393!
 1154495514498277536158942803118085942527063902808409280049827369998176646779782658244204133504023798514706759382001935124044880108428174345149604266956421259369746408770818626551114975802793511595396164263465873206910753321809940586582134316565088914743381523074390946561218083253658064193956524673404314346291955235451953331343843593424630965349898067142714373448927585862473085888174437555257692539136847209507202266637965284786252209727009066791033479713554601517454565071815016411433507865018246851429023176623673837654583777507263504987837024615832297702444469611354824148305095173100392901599278293542356475899996103981669206408145256619401231549406201972280754348449567753420276891594251051266923034855814099193990961116703739811390097460028924529236843009129151291763884338542031282981705375260509860951897771971266970817754151139473184859914538894102916446551217419440858367789790449382655128527855217880003493697241325594805625659893789881619526178257507480729743702032937289933!
 9388216958091877751732980350661784954459918794739940122369770409140324
32717442691453206756363863503538015773958425900012341202906186763134807422779560753243616676122859954701832185161939369968396637431646723530933382868868016998776725133838390410601249842437662164896809869879767801579177187165112169653083964942320881936109226809828704658792833535822854991218988150256914119072464417648499000798305630964527948408389340581031356724743979636377365565575044401615177864872915212780158687778697396565392073703932566123565472066254222103363587576276132470345537078739103389041540559006065257951693319396391023764791040562788460047509877982477523839403803671153987465655373826904881841869068301312806627948075765814055459792629504990498810976656559081055791844460608989348053421041429398608733904298072413777628952168478093349405873634850709545852846895033907243114747419282286839657455047743781145135220608497004763143155944608639026086900125532595827804087631869159013590625056261104106646447652760974085770953462178274443562503226466306410236408732882574917375!
 3778266923390135792724216022733050628275508105975167542586052804179347749092481338994415323047762875778208271176730540227920782448818614946354207152657304690803374393431814591187798797642718925172161747575097383381707648116287723286214640990892029048008333959288111293039545579322748812771403496805665570323619470694280151218982980825593705531455086545192867142629749294417173512219115912304775778942741118515180232974812314810588781365695343117642658169195011627258949031603866290476287760238526283615427471366992808830088128799005871337639621649626507202225615850976566424659939704867104778476852748389213299364078810699268009997156689836813620268888458259725517667813228960509194873290643533529739404381049496567947690523776737990378317658943438834773781091566758820378143947292882160711653414111874085300886414424538825184716787242242084050200731092475598226988451594492269332144821396001206450273910919583656321636107444466315104605774482846216344511770384851904418654705276719805011!
 6666988972569843796587723888574405795683703085742880052360777683347726
629
61824423787365973201387560224654986456215211805731583976706984371927921725307131286643872885690899372305586705012515337896997021268853348979685589653573246695012435780016126778084269050522545675180410256917474930005701665370583862741056262796013105962018801105237556766590051192244365999311639588092752330624946707180653506854546864046240119463652848084508763270613560128876930776370066305330396634966450659160272954585901057276229163097381610642265636328558271572661344577572327792678472200513954047478815564590819076484509856876090635085589398221472945515633173314826632686546451149678549939814578141451297170147635498335493234300490722792542692368834813328363392795305011790731047543964721911585181815237294556176484500646514425079776004260081923764394260960017450027332062115011941720894474398183659755283327082332982549869535484944656353682213832539308922425492433140780188895879185796912297273022750722589469905896669533765606464532304338319284515938557345662220140144856044849484548!
 3104606704195364715392483633854189892111747731335372050996340699172122921131160151441267793766775327232673126366873269853044712830606546745021459085855299737417087869569157868244611020506302120542395649281104239063551758923535130256646032821958076756663125043908678734521705921893445823110788408308006206698497972559806953334846478004554562484423569117006534500617316185971615534709677575541062120779935664666394577362002009466910532932731730903549522917613440479516500800549948173778914162264128266561609558297423759981629059945693534684762691177017981137782490306129093796921568411494326795999034872539303187907870778694111467891162833980991623712266936517544089750809240440059738092580797670324460792960499511651601150975157055773837777972446569961999190049397219626177306650264299238043713507037856295668672868230804020642018992502310365650585147144317305715276079288790115646310944244395110149793447920425930862886948518945658625154871205643873079924653931288817734847034925784747760!
 2640130413326631058366929101350148409955044522430387011075091615307856
45862081660842437809612055223439423635614196045017793363349503088225887292192737758196183523580414719301288968749420139052088921774379616017334506772609307754362960656631728848761189541149537486229516880448109699672347185642616798811784913164276290571218427186932558961104602127086408618815638952520630825731704656493327027957912589161816310819820831251699442966679190517425349443047307020004581605410987294055028859967107316900981044438790658433512448953078081012451312242554733006320899423092443178804021305319528002585543840151609814730763745230883697524119054579952271973602089747168792383840732740311563388798083355976381523597993772475597870787631654449184595932025992674653491225138734359941976481689332126234146920073174014070262962955448505211665691877154113397620710579180595454862818096461141779214190268432087466403834926314162366385300874825106540094307936267526813797339580717310128802700248725020967007772559795245759616509230473609701661307580426403554778327508343630149688!
 7032877350458934871291591218219155375639050459268232517179991564568374991544776340677157253066691385179958661240820937017557709468637102136053930532728644736888029517993001121653077249145449010399419301406629176003286328082567151968754088879929289079847654910042401561934519750080723773370939563157023397349470258510001728857117709626278381250640995214234862610541659978821754880038974971312803581949464369820276091599751770656264371327300335492683530600232208486939033160754731876361720593507522708723455017061579197493934772452058128180611698936698170187099330016691534036080341663142845949260681020670560272559882605040128830808993194828350844401282345867327816409271655872982340871400667726616843174293778422253805050128800162723262368454381396982112267086693734409615235914422434281365902458009938988126298215861290404757540791992458751649544172253211130145930239066736357184724847711060872581291172048621527976072863635266706414998690409365857967635708366204035102337267534369273645!
 2750142134294599479220926269575339501162896908250069926717051734569784
72289158193557988176791997563814841370582428538254766300098310011403675069525664692925402524734299770072079824024129459990074112785634692046354456086879093343071017344419261079589475010295363615080677640913559716724561573417665046236716282728135694783540718150070118440852572896075747592997343125672697410153683094293644439379356030520163183734326721504767741767858253732624655158300290480906995665729050152141101953039264312626730240727355524985882712987125945369048879320769191562107141922991194840784765667685545423360243256514306753242229281618034140982911913235888897766963620895160698775570167616278919101354601551360722342978086642814559553624219565853003112593642924799057743386068894553312328821268595362854105107482511943774028266856655640383716315611521235487261093480291609470030228581790316832745359507243012298188510565091671897537034836686144679738822280572612489868657508171685305089061325280823079871645321283651829738204329547913726165803219346225768612980106878937797242!
 7263238828373604879953217266260344077504263815941283177169523810341863453081646009170482268166111300947872107089434066069116397798068773683832492707911819184777359336277102685858644429296293929863967735413932227068832661892652995182253837943645505381066597135688857983390435102412131717601850075822937149616492614576095433143511691002623128480863231527772613374857201272764181476304962585698869409474434077589629319009259529282168974961075856239631677333245642601012544423466568686823656920158291340381734589148615798093219799515753886987860347913049101660239148587553598175307048575703290163473366068598884081373413165130617017262838744117674867464861092322613434263402694552743315066964796294757734014885995031453401172848699005526332662650142604079503694280561485334364947211796663842367007671027737716173802070562231412464793068383938585490802103104781106419807038625259478918743926598510055742332048232988963032943525112727622832600009443233276588557328625204722176184470301439312976!
 8015593384852189692837053595421116685655432906988877703273520768831031
70953695476725618366022761165877070332436900876106521441835552964043733263800586959898920831260943050076546670275971528318501102204474632133103811644902056665465262270759027330246306825167069781720205357893045182570357639679519484875419253502302281123747734599340692987669303859774851129713655035804707453673400984417472323525277602226752865231241050025425914621529398055214696728565988830346574278752537534235807935296436668851804532625759122272541405857679351761398228920471817299457021188301151338095671295672556906709169119720302998838413732109718633635934994617344058314685155383962169401507520001424917621160703816089009457359837724292360829163434294388452479392696047656850402480752622688080178538677218347619251069569314152577859234636419355816657532449522591318201114150459968481487209384816205054472804901199895223977549093441725226663923021729478762634688202291328970431190217834235874578849914399349071330659679891660892675633666741388478756699966127098921607538161419213656790!
 1942332448500385243495947036827567926138786007525267328548025872215059541179203551885442196338061616846037958836283875032006277119996682354141660649602289986931828242202310213329932722954567917521240687274285675934943265583401776152155426573351610305024226266924546429684478158255020275761945387582983170756079789902042012889186763315655871915820065505803565835548275922896995291244050655672303888254520036215735723404856688679834066959278139044474066925212637140812292399810587270402757077718615476380412889621249680657282726243902476515563308414129674487664509396911175739760497045036098194258848083134036355494056894417994573692752888945326495044727498351817508450020647555544734355425309914886091364197922786876853102119938579532869934661811311045606699423257398048857189379466696780356323541505025767148304015109571638946688894123253500773663972104672163491221684482127216863091012741399107239542647645527850557103901501621466818629659124875176709279626800364434210337382780264539998!
 1822887802774232337813089470915327827520440441214244823590478365907646
088
52342776179021321864865205514318378976574169719263110855450632358489747196793280502759970421776981515243479447816299262382585230529840914687167844976578388520119808455766192996006490017471429670745088391849893345046846076559784992440807772483294824509973582608865253607059781663344771093793281761149171776968375431371752825065314979627008804205071641962261390505921021844341124557922519319796812818323373719338472411363503925301134838662092890762841145729411272664220222631657273839228043106187498337233907922575695770862877117488311807525986677304483432235562330489671391128271176170316483476305707940339313495633189525738859698547756333424594597172216867036222637834572010721856335644743924014350313293679561538075060069429652087126153036899248510749280965427449853248935318796123196058794284232598046107132661266305860466854807636259392899204769939864879467843690308958754454775203560742000661773002778407178382779595450083345821708769766751060481966343999617871403089274896278351622835!
 4249709865367886714052822069969572111051078609610651406377014237476293563856578956388001886895269816446361197270731397180595497366074971959552979165308965828331915674805627899741674774299157991299133468734585602528770053935339268872331925740012801979925191430219722589645506129794887527680362446976045156241564030420121182021197727541556409453923690837518025816594779806592691078253089395146262381492971973094563815615522852725658416326230161346213206742065997508108164180428147525044056117431641531850407433236411752013599950627624975115364493703535796251760348439041714348993731754563126179491169042994572605385617301691523178039877389420236771925930236203057640677765510971400121393907656133213294173056532148639342367792899845685637165185653684838205305692199083682063920606106352166356247901238787446762256651654989865030121496726374182124954776456003075851254154487759672415860884526176434073751095613474345571599231686206040393585098773196179332279038155932038791840937532516658485!
 1159390972190643208405644521821157757991394544872410306610689006603742
95297660832193290343039277253157803069498512166233298248308772672564051491373852198853619554314353067995380062054981493044498345466986639658408050916889446496467337719720353475873935353791795145548161178712106712098334586654433192865485437210240904021207684263615070276869620544054697141565857584449898673466764421743825288304841969022942410981765986465875488310571040226002805987938183723847934565851268947029193726259261767161232255323395153198741341451979270862850229807133202383793000259015669901610729175018747939565218425585018726791428276315197979500454649671664526316998460151812472553993052010992039173959215870344751105634554270154503178798682607858839706322462032851812771738981825295338937663058100239367170169983473203100850951086991574469220375691683611725942422898446347922992401236628844972242859483539306345324825530811850160579141007243344304150519568135136785696968533420953506497840992058471037536978146485398769216115937485988101425709443320720210063591067017897129160!
 0653051637787325473994778380789335010615045438379537136861050462631822017513177451372808792875521128067282033770785263537667054801924136613754564586530031252775164434092153577733205872609726853615265031633566310711689301245673403149048760468773151545347935889680119845818613717401827511352241531947584541497871725264582356455022974500611545638753238422994346982117993629192502396132304709796466603317960549767420181186124040323461795589162403244593766262842070861445553141888698476958111270804874704728666365850179637542672849255595297128917213502921864615644736553976714528022391997446890637544290049755497412634024807136602895679701917228485127221591799706254818906210672461370462471302170620906969541273572576843147094119980291229334771841129365155060749321403054837630725544880904225677146468752761447459325778169017337249334178475606848339145095711706995027639803072630467042456476362298026061661632380352653839970750462380948190579294579044716329701124180887834520310491866193894106!
 1161645865993975143569078110678312953829659174481237878653296252746741
46107771913401730980081551986494274169935246297002449796103052710633299435011562198862278005460225245938802519729738591891798526796336184030390717264927389341835878365926927622251248108955638837505028432838706064961262854379385957492801742821986057834022674331596363803375523291436637922537938147166115301813573546117306018907921463210218886434932472284092466754158975453075320983859439109312207119328341015981770119652296343806074532009863761012667434495690760149009661434824443795419255008474807119465558921843881945158619090138594837043029545383082604273118012297832522912230445048032670267115037756801907929280382505191695120505627466756557388582621774160111799499790941249835068710955538266646990543473599168349135482691792457810196878192469959853399620486193388023461085699407278611448503319954474982623310196479005097563041299069542987228078997475090604946768047502262018384945756631685045987305253677589203187669736889528441997671361151553458300627891814401236321839443446469643166!
 3859967807056640486573390702567606198683251804560973935921675954228236535165972451805075889249563820437683276370488477130409052787190320158589615345770511611315589559324909625626448377263401543849726313710332980321963172102012588197216106285682915308869100178005184211162947953612436115432621963587271217211926508134390641055788025174422223703808755012484409925515507669267195831588506609967665776690049254232666752278345984647800694170461095331354283891712094919857453674016178546484925505985465113488205904576921605247199731922206282713056073774364614070874619142733967961110062295922324785519430468945506836169193552652680785599841984230446075507314233879555100502553256331909721071639268938464448473753382041769209235823872107553198541333308160163859257740207229180982882117455807614361749716408114788411332751843133087470596586730692917307458064494243048015771169994394424943163787477234950996825214744796363066851914254444916971899680707765901337601173501329231440608307676634840059!
 4333708648758367164021717691297267882572707123526309689842336121529314
93618544920419725707551267379808451423434549360199758257678738744582805728269540450460618732340295283692633267882974502311793758804183411060817408103127839286636019086045229445716559309752622280692736130885088830049452099309407767959139848695077010037002984192403337080949979657289556625994195444033749932853738799866674311639415906273756611338926330622372981745823886030085741981269028833421056817357838091565255161393973947852464494710799538701354814378291876002902186537668269620595849446669863502239622271491323279530353296089629398638557740127866558499403561361550765261985231722709939449897171478895143982072352023448418782266531754548796294324151550266390230727034347157169665608288507210913944742520694312366825510030568103059379014027040420053009146848957505851732904976491809596919300175791384501707519442681795512717556282970717301219863313140422197870405581589287213327596623791079380912636461153656285927801394090322608254421120389770700774340048985353895933357877136359326021!
 5700178255530078061457644601349441108160415238819448159519875689893838277001572772681923970974611659587084866776425796386317568418670132817485660376242954421929993788203575068481124007250466639743285572290072696282854183970972233485730673820725569082992561683855593310654236855814360984758420362915541796992085939573602764222757942739421477916073310469008215082030155392049293365771357136684764261572897845236244765963608390181351949185888865687112272417537604587175608105974359884879340875669774499039488524184701896278511936999556870380850374100806841526185277563100732226564850727218744367481300094781978953440883472059380821077889708594945754461521687659124921367480755727064078711197830244412844418952609191892485725675576373294159100697745749855962231257648535122948565667531672432493525908945803219938128598803318238975709485075998895716899914013707273266514496115667439713434068976378542570160987382174293027670116527003771660824319888751390846465052465136848299597024941703359862!
 2812050098070287779072357202009793135398086330935862977385728680334540
198
01146256243898502295640674133086996697071493598137337611910442663975076204471803004832540979831844364007174927651802735793876450687466793072575294121629528546695991043379200564019349545696365776034931067915652396448304847188592049448187926439239175055082925633525143659622200428223384880794757447560965557380682774170846239230379729701925092113417710198383014521091411578542116939299033292921883421556389133096206581566575761042731489269582529391839574127193945597047192934719584305393955450315276418397111561816282004020253276827528724344341100980224541345456329242126323837602848349157443973743527742575952687978892687893802560256023093065195448644049690777587308865646141560266246181398727507063641683443602684697255555689641411430791451312614416513254914058183850288600048346275371780641326926050035863405915069308438383583416323051282004262344961112565860864203109680407476850422534958942778637113690790150789068547309997655546055591384360447319634140871028888457969600669060654675375!
 8338759695650436120868399990898184915373083947844131306982794943219431576817967590446570124930065926574247425930944964396846565431767624478054371678566190944349499572447470165091767734905477207638107015627821724708385509033404910072007727025425944684714518396361145717873797833161452304506348449693914881135684813406866712402749996335996810020424616518359602556483068797966880276538364224188190907589686036796812553292221390884588237582535908365540367850015267794996777860808633702278642489130010192400290965283883596815045584497647534881306736988761759290040570419012987670303239623151492991341307770540480282986761309611329217627078474360389005558994448175215133187363184834815879954660423602033044869058850439763746045920955394206572395841173869524623615100133475961363143232980844983478111122960674322396839558940280885613108033192055951755682793723140546238670846913458320262546263219535239313860020471622945645276483842856007834333607332211823027058600117962600166763838385292293605!
 7742744896668114293491573696424310574387913188152634937185385794449876
18318803741534326621585678190247803054003543331843550877808837784635476145658679951987163808607858154533153243517098179659491258080991621512657142732340856997636735264994301589258024941157914864594731661406237151463766863689042562838877311229016399474958173098138189147580722211713404894203226011956525011584247064675116626905764041770156143891943832637669271832993189019788838761202162473005536235410647504216664012914943297142529652759037934326938336339998874442392298324072016927170072587009697955579775122988523844413987131951714265425343256023428591460600982368294628625638756138137472350032108267653216109162807484730371980752468133474969517104314044784526468784008721779026518042730525750581818580917810887610802062023493978146757597648668705690783335868410936455102818939717161719424787538795830953026590051340110233532835455380043002550037833691232822424928787763479881160899127356547251337484095916750296044465593318414107371977436209263291951653696690217941234291238075575363619!
 5915341828750542763608135227681950041820963059229357157625376753229948078488118894221124380555890063527906162923055202565014483247247226639966013392977916443008483519562354885557179391328877617121110253272918671344806493489990111830715299176465743016960039077501421797669740176923433893614069268836282484601474332395271252597948787901912565141355136633132291814280614814772575874933511622588548934186304600856664647281038412567144090215910712414691936653768025332106068081017541001276704127643565034467187632025931985914176288654444943375627470179377718879075450693462226284381489058949033985026059026390264313696935259966084163042385633115692069176911360053010132181201403132894538736944448127821580918237398685356741306313367497156430511433906070294481933561532746796733593355719284624287784818976894401561660931902683917507264165680737250158588669120226273799389736917372978173318941883587856095436420351044158185642865168757954976385865838573939100879895518006178504929126722736451351!
 2762585412552203423864694986475419553304890757745873244448835280780810
41774825151813790639537122627440385944371493717613469402241698435877148943666794056570985577226984660038203606660735119967472400158139767577501681886432746655373077078914090040810692786353981130479294892740847773784890485366770684915996355563872233841998287591463294622044527010210654006585234503978084459383697852002408984037619111976342981615621476351156399132540995907880115602170715115214689758808376093038903570934821892543660979741152678766879645185356761406167693531363141228979479372121082394459898948693807035241972586964961748039616862195733845410177267558073771145309394120284312788816986824364487800630217909442681188532327780036707179220064889964479990091794542815634717640639425397112946824745080516218542255463431565902831467426042656970622817911964537037633802228630247217235269249481073834232188479884412841017597746963655575834214046434786548641672149940643119234105625046474958620371824877953299580180420929025880609431558365406321752194850364401967387400701410829098977!
 9896445559390339082693212549909188665747898086138302997749048529943500401078784365217212219442685029928693284802493906739007802759308056112332651463433396703497755645890493016132016157512753438725985014297834578686017815350091897249737953930718986159170561205108797434908980248232502756816023789436370683379829920054556387914390402864386906194011180689708754329017837852940979289894645867950786983873478270509722342579114547690182180793720439796386714139376031983271760521476055473409229279649789873546431323646196536371771498166366834743169797096402285686993460795353963813502785459879343562823460371598253344669120070093313524805919960418073031876253344540049292734604864920474182498189381861826240323175455618538115889108320877332655964592000342215507789017223504671348326358294945348149661022503769209863415534918752646936286454003702128944395339255315027071110438291813877329786694212859707863006286697782803894729169927220289588574195732808569200928975152311017181429055812002532802!
 0486220648421519538373085845311708506718098865782218159311577753571238
54244537622637160759878151944135169725161359001881106770198794241272796602598879141947439825727543810653306975983845539009809083967885259300278071614436962498107705331468361756948741998862419410285549367987885452477479844820423481586260629265164274471651337195260870256959477494281909567971889203763304902397980904222474994454649332688445031820895268355105894054025828169222484402839249092188494466050154673201049011422311584847303380717500904297317100939134046151155438349270786689186792741628107004113001934291734782446916614741373641150020217118502551917678147973558891116707883042098042240510619394849713525625110644456452123818288870288846053045678997735427361894874420568230381209008918748976760568504216518061429404990568128484409500220655716291167390735857312862745434864975944045492662553447338237041938907570208190739054210998738421350666036933830969077901054115187597011645241067202580195499011891567656598415958877973638253483826986031006068949326065015980468962905044363785264!
 1335067257413270036228868509736053413779608433193315547363008209959762253823725561293791354620939913843112090950775352844237422933028876518014662762245308697427917437134591399589134053948769948313052982198365098966729516688274799474256530993000964556985558938547045700403852525115316246842425827229768501904212433423372857134038746906844420109942310021058544136460462082074243516301595576571325771062474632461958080219783386928631913287550207912082229615070501209611670880314301954300401575264039802269590534014151547857436789765664886529712675710992756149515025971346597652132138173348999589095271224314030315763536909416782279553842985805446769931087992777181459975169357977832334905594346580107443340164229098013884575613477071818373492687912770288553535219516083092079548970684595622837077002189962063882353539749618239268754205801520442059642249175427369004578754245440257445531912891349407012183175301778057200404764516659875420201723112082995709672519314242242152292936815323313619!
 0376070077110695393505819009858114725649122764643516836229145385013717
187
59383279513163011464367386976691421616421606560380557505130789189354887396688968634384276949937603034539802018204675471889842506487658188512660919066464844874567693703436823291395489055717237183018646087153739195935393955859928187026327442637007208589036214846714385694853888478416867917030088164172623612724155478717494843811674947083017692749870808352884313167718774034237148521457101481197983328310109809214260734354889582047128320490016028446004531874969014960712886141824414857146374064586161187749393852614717417160659710926386209421646351714666286939033256301298591617441319160835602196214105631673673931846605348414369192121933655138823703878558521225607925930723353593041230697445228036720964838083012811805013458113673842999655742018637006814408463693925943759619785908168507215161159944050896794745453252908379988386901941844023202138019547384745483281285498095948534778820127514579793182006748029907287241108037872187303201060822828500383485971157798508723838039461230617601083!
 0945616040861829446144036051855655298642430649384157004555569414436857257594973384730585967304409969345899451079321245859103386136758451337754377422399977159863532648098353547013019768945109081647832672351012452639200625704615941047091373712437041499277800850297265488923573008730987965860348816793595892455116025795054479056848852516898401016045572859435702415572277849872290613980414445144204279448491124545265215256978374220792023617265864627237391018271465408898084664983462459312763318376309113837050850081463489008952721611626895452814859467954975576441454773894250246948264734393755771389178485209047535870973540014550816986607025410224876421339964795944126352914930831713541128228514634907348184809840190342504961796258582086334466130023435108140347802615851435992612370667439809730091059173803865648553609355097709295249628552242577655518963400926010685928935386406778697361517387863022999973525040687195629087203967076344990083431871834753434227194262848749612179112997003202697!
 3669474752386198404744288295375591982464778974486953447392487654434360
50453635850322161849204307332003215685573916694266705461270125651708986191927571999868839739398937221772277363121205150504413452460363079258112258763571283680236620088147958151669024367632941396117382978415474506494522473352561670235520810571814249886497413232686497161549023306601418387207069360133869764754942697548219239218772679546280806166226662393986276014075632669485524257220891753307353032077451499811491418742055722726202273281585921033501487690732933814088504811292660943510964357484342864781421024891285160268140569088025231484086615533971651126913740795856730887484248516423495494553500275233204716041863200857585654138644389315460822341155450160588577154313477146811444327476961210086872299143495180203769747341673931885529243361274985499775242894663437934042545412068604165825805282624867392299398701391932879702245389105480150012123290674046911576017168423836618355418576328286301200863329848058702918475631073108567440903852176888966553855787500806050305517856289852119237!
 4871927114006596388598160029240986198023268879486598425151531123267053797806252584953196166532269235394290384387483609854421421500178255622322503287162474654558214631001932802392564140611297463468839717017011002054428697623249532148692132944388967709958585200417148892624990184772834746216666984219265223384877998852738198810636205170438439253840545704809866944441055530007660383930123486251106060554607644291968032474572256622315779995877756635413424129806375474047186278266158244139606127427804391708277138635517938210811813018368565070815091337795672496142121576288573108229336477725557826882185190210289341296277074673008686181114926327308849382884670615137192076283368707953742743446195222727571702165042748158830059523869224096293213845882940139491863538430147752319760992034244046081476868792580674486598721460750689119345967602886622167660211706731601801269012465097035528851047542862715670444136782433605035181556800334710435636420132375257100256674033482436273187304173294393904!
 8824397512088802220945088925348344015636815318831096141670039398524056
20658964221160407775619648182348071758760716948546584512352748340409640865704046561502291041725424289608197082392421057802856938663834690492462879206141751500144376617473218951687861559685744442365785042675129590499108687912393651954194809178366760450348479953362284213857326697775913946936917540761891636209626567007798385925377962949519621697004769898669703996346217558473419672648330477305931779964317933040516964056697834668455471007176627375531572430670302209658250478415848855651641485526874331634606218032439132509712233041795928821084961382463400567639109327702845656221320487113357483278477569410450846670576670594796645897945745074178290661614479343404216282331342265328944107337478252539891198455064777900173286742929027982165542403149330963741124625361367520540977782682481911982185416883759843744696995653345549437841127765745722780428834723081217507699261162366634879256302913611355637779647052986545927789648449049206728722794613105305720878882421633989181556454409994882544!
 5927063753123171360848185044143191585392153511694908350183416322771210216719273189535526659641454871218155571974913443912057615696616812186233075228594168428840162794269467471789946145184571491366749954274979476969395070081581460767057027188341352765069058011571152992661499319478253379916432512092081706238960790092616209389177471511095720730838764806594809092128666429219309369674760963374456156333675156069790706515754292755648777940606148559959271908662645842312180586606812243122966200426835863723723888308281851253465280221720644976524454345824431461653026633105335175244066860378117727111197514978918975410325275335114784319813410397646103793509635401066327533714244375146196124856183012638643728045124228002197143594509056489974680005132814545926278503290917536558733607811612407724781390458051740123825428482440215771442932989830443501827615263306959077108063715510255357360683483159369479536123299616818349154433587471993384053901708724818694828553083421579697494640130757889446!
 0906108927556451557123600226368586669913773367123946435283991761151656
35876109782376744882783961939670305425770439510963017478859025039004562537206335773372707679107917150509500585547508885056556693678183445372091666818829558515118416411114064355672616944467334775648414754884510108578117403772841234881832052118036895318676173287274989327025424214218552263021973219501685252351548997481412920305168102252947955837334952202202572532429843908052535488893960946331094832770396401005291397847819323195037188431458001745713544935201701561737141844866344450272901853285525779885820053217060565133050923703454419333032786522302587695455449579546230189506540773711013618370132112367076502822335554239160174486132452585556929916422555972993553856848150771885391267463641917659960198339996363895088248357478051488839869182801629340203510962143226723606593458481614443915244321540756773018809082124821472786562767573894698044261751174267303735454734481759583197954744141168215437181595820945606952537280100748382769739083300737032795451549152881455295983631641769282657!
 9723556582131555306333407418379985232461189550534611749681576253105383924242900938055178451356143922487108238429186868194877018660869051125348911381756085027128647046653441903229591572410132057355770848578316447854578405347242725550398388755604748740656254983007554600973003354055636186310257846943906190514230594759889040398866216519186721085379631213260302974278686461696974304299340486983526038074735641576724093272571845697699678469066287283554573767711512215377716909742334472957856222335815189342293209875643866388431158773582144787520926243236484432590757137700520264021862654106710334684941099126664819802481563814764042063641646638191650820513899275378041193058747531557669881471612099101268334393375455310168472146625038455096451321707700333577020877870826828087739892280677710755192234220504722567680547844879504271168842947767757732791560182377294572107954194431122608050622964491236402681000907448344158534243875640187624470466096680820079600222340767694517144726960878723514!
 8859219948672156307166570709568962083596819491474947705935027749005718
153
86879003468366539524428710841491918789432602274533763827972819405229678221002883173927727270199499796011809489278824681494141136514433063781489200971603590798399615056388969236235961362169501326842052722502170618352255127770168201301172283136237260710053780466072739816786029348117472729899054855583057545429906628308321658400069769530906924184240848796978400871977867095756459366391638677338629472361302509638667956311611204084529536691422894592874982969870547287208949182305995725802320645208176709135184959582822382958073138366094433429208410735744428545977005476638090135976077488809075675934667443716254749934486190559626436179053204045871914444630935377448387674961892476640062794510369671735158280461052600365625687579024681312596872352220820416924200293106951247125043526992139039131071316854779555682413086143402337330035632311174610665322867211455593576954280781308782743268828021760392279436329586921966659933123840925099582704682119192648092249332841654005426804392635568630890!
 3582182375461928267332560621068671039106633462036663459747168234836490973459213967430501200176093272700410612452243391676252871896674059134791718473234237939437986422543846148732613215527659890113304877762575036807804708074625448874632059768786692767203487315499420727298783574918116534649535220399510892738405003687350094756155543912230697175122881505650260073955895259984378256634346490719208477795032033034187855744946103501039442234028644288284603296718728450048253106921773271603605756496997571896555736817279548312778517615002083269031205512875762369000043817081371361017928842236211592811541866553599541634811688717126107675094532973722566430325485964343591629401707768238021541954303331697941565897403971176226267464835996818712075513423174042837781205191110539444286927862554442154673119643772248424253286715631796419667793033037999437928360841867030666867915988651175207491276666864139209178983681628593592892517995481143666308284175580747814293117331516811154760168386183807128!
 6266344960877513434591347675951640979988497493757786286900072996013050
38283413614124568932896665425973179525366913125214385916926994140509442802815052867916073805473236530424568012514380573890664382675157498652502310699532833576919775527223403597117117544835375311261019459295994641365457745103413512968339917743135238914897400806021376901715523499843514061856483968203172603585158027715848261944965674976023331782562662781242518617688636014128821061699931859406075456281219427826135985262618511814678447106405375929877127849668350559938497051208264847307300013910049971822776974537920038380165780508592611140307528766102559292906359880583525306694687653879301987670693639205703114532887722811237004305894367891524032841248647129999385827072951415846665992490026730447579675155647741784178673388474259926392985099907565726755298529560737085423824847432211308392922506944681439901457994627833835972133176874485517246620100125357636656548187905620767160585888269543254069401888776479965638542461258446752576722218307358747859507034643019957017217244867383870871!
 1534906631677973214209872058786043628215522264140545883353144363422945865207668932567792970163642409520403746750200286502574580211704397535389770287051971890175981184630464061177230650144636463339506735318218847262691980355109305970303686962828141316881848405025345390715758489895652262818900842317067862985625003812328602326967678300553679157810944397686892184512183573873853805446219957232679380944966518709848612717297954699213268684355232530880213524606928429500846419734160182995528116311232066733995263215293309611308524436631924952143531071489536499744299091876102069646531154655207888578946533692842569862878972048596329213013495937660137226862584763274966469585141203946834405903099648620161341116482277183154188636339327606499207176478132591311491450809473406621019294607822615348758704014081418933327226752168029842839544570827658778093827772576112788310737176665669478175185548546474804264649622297905493382138721611252848740075326144906227242529020208831636609097093637026910!
 5646511971263959375646915096889582888261886434154944860741010807695775
65919595865287201518117098109255720990211130685708818516877169130372364561680973799360617092718939596261570786493685269848077455048108735411637789278145668913882189549444287768986168483368893978068864289653310726021607126345943019042686285550394315530245675610732889447818009300341979494381824305594984749468634164399850910194540963819682889621330741332094181523715108837047682875701676118004737828174095244495483559300628708655809987432957350688802240854859918965413812437980609971572561295796102722123828740567167021903146715859317324302805017682055993332727843082734186827289936542125225810276331035991484558836722458631375839175239360893337356621585029774376162583294966022176121643955934604407064870248380741147366218471863297235814543295901690232721500341414214679137594886058554918327205018992279270112628426185984551113301738642871064851419819605810191865445150889688267049281673636137911083948745647941157220537897509699955164487050243091127115398618127965584925823159450670117128!
 8362380066720793894028215572696219944659163065428816147825517602755239533895107824608036331953978212363733853387183768853898934831825484582741212047298236881406047459904661281033020172018182760122556400065085520462486623064145824353581596456936114583361572408099460520520004159391336988227995467427737551741751814680157572366674545942436721613321154510537998959695098743710224915255898963180389889824237938238661899643309765353318526931273221982163101310864512988912145799760518331231836635181069106009054396543048036929222869463509996260012211520082413307575960511060054118242623558897007050897401278765282821889402020011972232596787357639695519388169995349139056941070598676351466074631450769970160653667257288868060285533857621333140418111564012850491086990660292953722793328495521101970979114489014245006517517442923871711486464439250772013183462793066797973323122963342861400325880150822751951323439733261509891581007130636443396465026241359217836563471684237980863964862374792259138!
 4770762447269535515066605881475807852785605717885103856713219028607235
99540310926308872463027398777530084900361566470196166388155372789606363553596504687538332638841004401592328852536944893990736395055035258646917840859304325158733210958215214250252520128962347768072044852325169216235723455358062478037762486483212182291048393369357565399819839884783975786432581234653197231732683279054372684749929534042185486988480057438128317199802523519090901407917656086436451020938712727592664136049988607647896130051757014808831180440961322078181611504850244465124357446873123081568489426420869026723429592581634215419586401774928659470157080705642701471759052338050765617431180438292100027971078045686022473958850298463156208167065800470448441312746140014295765029555580973859936168084659763015831411787584123135835786969309831874896734764303319854984675980881963663900315583230322405360460020391890191534912440365722319859038088444614031322991137958461837492371610786084230596856691936305899735137857024902335277267406286355025085069292248741399821856705167568978201!
 3780151894436753744744849798597167500201870289814217531223009244223935756958347787991877641073722110466660693485936180720870313726652274979997391098622910711374410917596474171006954564153642449034315063259213313072565633607742178298180234864134017649606453596310498588511000084744062074235931007493559444242255380301356793246173930932951602380437887658930676638837341747150629327368539012541217522037795120091081817984405919110734876507273590379605948030107998547265655710333646755675923101418095687273745179793206203606098361161979974164134140777181495578313119719753262922657295027389105837235002302981844696290684725657294443030541824788855464530238235829824503612130963453783364110167496058633827082150292990953004368779591351838659522369590388517402945774825754402627379664261523215764356972515499283358277847735190490058533631966945961405895710074034269336496972442692126793959050220107977319227431274209487792230426241625871375898372319692810529457125841021649356928905262216666686!
 1040229750388031022157203929862949140184393116402494581078975590826993
303
97529826588071483168813401730384326760244844956451312566772146857749564007188192063967014277840744840017350732953119938906573545674856213785981736863895345204908814203328866193760410492099630483254103671041167347959421431943343585709851847324962969285773860649776162965661875043929387513241311973489939840708135681396785358902526171576281033643867009709791708595833153890105645992811088055973612476380021812526997562475593949986004006879694431597997126229518080720265887340914567371112384076878936950081087267684206474150662936358473499325466686669262587574263444137904175013143149637809940644647542065921596280062714168648985123769563914016142491673227028296361824755459379826241141568542842275888897168657104758828962027464706715063980512646833134397137481485000791841152275809933527636639332675677096878421443118278713071327359974596562768450817464848386186435747376774263100752892981162097497635254935997789249519274436287981591632425597650907360144482339477504566096855160417738119143!
 8575416250126898433238790332734590755749742816244618628816665451061360812562409065990671715901072277061280455021452665935487497055147840044413335990396857956541989988605724845186986684784527624185744024434092802890618810670481027470014496815768870296230527564332910368152376084053365866683169920427837834909885454311756249470436468087866280031188030035852438282967518576114348234539470389688002607457974520314906445846318564253318732514484460165112967324008008317489372309790968098747344905183027715234060817799026433467297998572520088071599052231237569076750131736413360822444534315354018884195436046003107953455055674764458042398357941257182296554979525043022237240818082515293789865797249171752872501864006189505382178304119618266797824560804785384525799593737985364855702844752743997878242840578595791196146631560326786325057499710899903945662268368333357637610078008699909054134253412422685328689571884726508782999706430412414359396753330957934543501053178571836855863276504275528681!
 1639369724095171240734149421336395009518404670879655370743784871029537
85710897961608298428430134587475979330343145640418276893862099765413660432172651475238370669815639323523547928153663223376239216789295741311711881103670779233648136030412483431144291415185859162876392653575369677823439829705946769758400353098793430672618114158455443410309699204946282430678139649229627097248077570930826423676299647966694831485390365464756643095206773003930000538259060499088640095591880042094465246235750384899163411015741186678026531254200592502276107157058313687207028118772843295279982623719029994812401723256401325742956688343123404238163735844302540897091359762403028778267579951694193177956825840917889921081928052766584473011527501203836048844062384922490736605286088132229949061570452657207721274390463645623934217541948153917100600485382474391587253685284938842336381031342718399794439934272672435143673759172369894138669170181134346466697302792453626810012990617299091423059661654904202470230915104707569150203223503609785565290502410151654641294462867146439281!
 0695374576116515251742379439928928309887539564484772322621590656419782586915173131480815212917584344216814245153720340828240119381150569889919564429637388311234508139204136266284937028440237659687328581528323412108431603238988491491430616388964614383840450290248518468326781391310877829084952613946560996075196906183314682219637536171957413118278279171401641276125435005201491041279474752598687492747171030330762710133970057095036739323933592427362647422194581984134485510808259749472532916513488668063723028066475987654874894958591239425497587591935145081777414742959635248769359673575052294404980539282641568291359230991543056987190273721252398801454545704070245404378491901485215060634342749214020256271565576933361112426751656834831316836144357896016974625674739827958286989168499902012604332432635228951257277652804100042968752018697227736489186021286256011109559649793247833473824663003924077936192870015002839319380292651236137109885009105379190332345163604904177805470544911038594!
 2556486533298114018430592857544151292022572586898333406925135681068927
53996332788399310341745071753626780496458424242752156681130975930056815737389279644352378787816203682129029452664887928343960090626610978982753702233199184190979190999674499155784921031925289207753671588546083805602457444628915479730921454992356276373984095149102047553249394520283368624217348103635904207570180224455513955985764044567890813362563940944338750907080998935450495134124910879208192304355545593946245420529529669424801787556862798280360080989859981257615415530663703849815515356889331259804105328728209152680419188426516713753306966914364481095768720493796452294717574838003060745583411507741102438952370510674483036642835859144891455422981191362400527677132134313218266689506834068328318901302279067989323183593147889521964397858409527362365224114937167385150417942718089496181517919604029827901503112101185785066070567906192443472711305252151483297259383915066344870033019402338580510726988149887308622764471289088445597893943294198380873308910564408630282831300195251487737!
 7491172402900577248610545217406763532361826054019516367856649175052597132771129786710136649040679944791706599448888427334415075039842162360240330768258265600984299733897343964925799362825265943337908230016304536749048137658532691393035617619878821229025411560643444426718741731863456062877695846920944715490503349222356361801212541778904137043988387223369561704192767985791301736116483890516764135601319048630897128813236540675062853678694404536246676680015276391036188927221554005106417770999898346250763333214068431130971206936306872666275499269565838360584026558607120444153681877872530974690247477595167282435392014281897786732139100748764909152063986998389678265925369420425050094489001620366491000230964816571862939990319254286906346122365128012362655505189566376557162100321865927425965569613234217950364201584789561747794779733633049475773681103328198606747369224394937810280535946101989945551362664878928164854323718712315623721368553433683167411904987960983297201045013474121738!
 5763826859183252782144149991697893029198042375427095091431218369516237
44765934691802008003085408042077605466540602635938605094000271057580051565746484152999895696480996406570134380973886605991125462284678608873672129976517713799853502458949972540396079184221521964826055174261817511820690961251579434161853029189121133126079455274322802062537548816593078884854431513224586931959201023758903069935597262976398776116006264489745076281833340653202731974163614104088140889011036539114213895124854583681750269634861180832854921781535435231875660125451673722427096440970796668747139681862836147754271314963920326266011600185558920713120199400031785786986016088892187286538761830888831160311877925648003398888216680617707093187004163893496749027491954837615908159700263950893491610275218836490151031592603838779314020833657398658145638182627581887149338407269040381910541455304928962351254709628163001216309066951605634594856969497700040649004423339160837106249920325450668562288924447474363696038252265802795483726086113340837001052562090867289795054078168714837139!
 4920241417372350418887447986373458747180518335858237712388907574699257360808319062949307552016494143334584961896972194691974260014954106755243772073386286565570472967460740465225415002538314843268186967072090683447178752952056222570915379264665358054159533512657991813285622792964014966489583461353724598576449628568640317180075452142986326504542562983035224940080562801809303936530950888000232379092459969847770574663864695443415664798581673554326314621341138603397350104061696124967309872951771986167448646852282136193690859117242326912661531339475959714698087369390081122548304527520241827826117741202649013636676404860265878450531422744375263767575480168051118126839531757677113183441130952149907265560088506267081061204155162318026615795198480071658978597135949200235857685043593076012666173534055714765265248738453351071639605599773951754944837910725743874940225226191582798374127663277386244189168376844927601255477787323941697874719397567246040745630527079625826009161804710199730!
 8537567932446665329827434619824196782281718216601386044614755003541270
432
16694488140551213488812521037458038182245798897698127858635585224941837527038955000451892858708384905629814616166267964721786790379973280036752778290459319683846280688640596540487527903015460161152133467369619136409675806243668414613888565863207750323664312379157119201120781919265813642650990315817452091715980203777064219027096149426038145189254902389145329029925738489293164881452455880979020714729565733845437750605584557462125445103766638263105461865207581465830832329589485664818131229896472518874167492989656498272852156389750105411422098274198460361895162153685041049090823930059570287328806377582743826417814995730264253791858597506506094983345383946736505790693529947457831480435244836918971774704940055324386051112549070984957102221226226063120334645712152362137976588641117899966498231299655556933789989426393209108388792583293031646436551379202931730682024972958024793134010598450246515050086842333650387539234972855796380549301949295469712807483803946779570941157589453749059!
 6682504756584127228356322251609710861000666705461998266903335561810369799167148710633527889667303309991340946592527970021937894897063452806226056911679288481495147371212691696437049971903856663569918140952529503066964973256572621219538626059317369005896133606100379043995668505339643683385366370250810588822231798438351303567425780931594990780470756001476087080789689367224671455984978411290942122363870516455110230408887807190294971205197751057500322932123021704735256178618454189663797875043961630707322815189902615643102543890998022096151029083805975555510044156134175813409467515268056446036343908855534829614391337123692479671592887099907123260514286318794302693535387387472912786202712859668590469663257808502386035828518351969087138553939470737120650969857622938275043958167080068238912542627806670130654251883878506465916822140407571289338740909055141885119762141267025427317634534742047564358326874133512708862485604398925954409937085632354656723973882154515455455401222142174737!
 4398769732477905914997243897394953121203024779624280688292774103573223
14226953035137667139906942754798385035880370447908232309045579634565498481582990168335674717728260832830853676413309258448405526180634300291710729114807075179443665885283653432984247124613650331052367802336234143566359414848768330606440415507659190656166880818006221956725139627852725390013799986686987664860685911614758362422185719314795699002497835131849206470006672984745430379639998399298370435357287568095567989406606139796007937410669996092317506671465062199332602840477387853714210716620062273259650441769010481118571936278546492446453100489532328694382420381316963194443095239630096368635938291327224636709418573050807085680806098572275757590779872411799430731982639705158144933839264130435901950223435579953123739692201291550608623100026161642442543495564452859998894544963333841575074705165705912976892294990133384191736878976249463618851128607296822938605370230274452354769232330416606479027294764769926965989216676210815869534663662663507198474270773052207568382257663672105571!
 8521465476541168257186527475269325861312346569842738593788930155393590742312627532146547670120541070232207690458216764028032814018170225233014764936699520362810375730773753183483305706103326300008045379334468826189913500027724690308532774513279398548322519075492872679014369000795608410382953859017784971099644986774266323257112247727317571397032871509750672690493614077160780465821587861433533057088885049379806412467899445897661721770390627130915990076205636632616668842312993909227743877709285431249708099680890979914814500791382130419575512267148650148395045784214341249248679162091445740266373545542755306592266481712755065532979714811652320792833933479702769779572581751255559668180240689405740478817399708989891356581094037601144132563841649867354818606083965517896912532296504940884163742571833874787242984943654690438240109246659277881003065381575406357251919076942759814545270182518408797698890881229748166170025489142516719942839948639453506270374591323327415271539495142681048!
 5272028424765700638913481516242442754750387060667366304869337076517050
52925104200530540705330422270008574741036172080910210145804847293606748851601645992505779328315592741655191478203748086990876942235987444459333144583374027035365935628467318575792201303046540513741030714799520445355850283525136653790501967540742181939058419150335884446172073142722402129906255443392657543541815634839817572291126727215671368667936449634876473678651282802388540609999371689399169325880745093536382797140084555376094805137427605927087357949020836166017224751431952664967896847021601041113510906911749282611207347972260456346114830744342977788367591238993235540510653265753001190576602447515781996984693938773756754919324640502792956144791113129008795805396014228329305370097737582557799176428856624493307494571210548834977061833469352445171538613872094204017393332175463632840275624975882681345055154416206048317796028808050786525563548697572812807009365139201179354239375825060472238847321340316055695089821131187615888973920919936712645896314266923662951217509481240730607!
 9296271466677104066613860175345055469337854185705763766138108925787982007236424388544078143700220292813086244032229466067677204673536433064045120162509208347757428657434696062502651235484104072083458450460784069240072627729525048634230141490816692602057063912593992639250349750464384934659270183407858630441223696004641508860359407821338941889947306287845271268734559705015126462992172554058195727356298736789337140199085098378368827849221248808986571732162172991737991801772747509767170552297318869140118968577929814155780161885311117421288077216166865971370451458842239859068611392020094454791944840957216163972442252568857556218921455874592682252063947580375352317134007528150400049446469556424752071906524889623517597210040353326946998144380100209292988456358935206476943750056559938885443365083192061685545561560156530717331276086685924056138244832744003923232382106000091892677485077309939483434800714319663104678319468390098335135616323692564753669295151459748540989058490824356713!
 5239442219366732357088193438741580320355924039602423672947951334117113
99717406668523850511119518281627794059418424959519666621703804575149778456701339216143349309649852668412618923183530111671221972532253228061145131294231984009457508977360109028153581112012957974184465765020392378705063852769503186135443022784064527602698201732192309591810806357861985472665081505255884065923795696820950669263203245877302010199660421503459260365639969255350646692955822339514386407424864681591224186233876403225014211436412371312119730754940489292942467613469214856877307470921675306004314427806625719009033376351093718622801935485104311659430107573719019954580904195399537932951334008504361803713067478341086367045422720490927777143140626202924163792989080012448291122333241947004633636479016373363702245167247507906469928960331791638876553752229622758996657404516608843276182968048947012703690882193128015612801502516774930752249629788794901651056653933499949181885928560380457044056780467049741729456279404929013456359233578339120624772614814561095611620391467586480293!
 1664009784723661945392387590756020445772935921380468573538270631181917814018361042684596277163210305592175477492568003455953033800668934481464627741536766253048812636580228425404979663538363800504039577844257582933024786880231868056184602511416647690955767283598110408607961907504384175163596883695288069605694913633765704167393100202999338622903699160409403787460123738254430995410756684518156922535386008646858050452207380004705374072642255094550419018060009890509113852018855464141874095333784031404678202122237946951752586355838437225909960407458665014023742982017336153195096078926427172167801828558026252069641267067509549732497295375618429591631171510303392223150248939037639091164789226455328112538625378891768815047864148685304187763617372487520126390581985534852915689478950435183791150366010408668215757314452789041527236337455801274710590458914382129416951297011943523333764580799275503267304241506879532319123597296098125068146661920860857078880859419701507995615089389037262!
 8460798576551054239850967593060890690578186484719755553411482776890213
493
86083570908079717546137820158708850866937108512959574861882581932130849872898052937333818233625325256507738334632944779098133085522299225065058808258429780074738225001961853351441789558000406795087890069508319587560845866333988393154198993502894113844152778816343486563527830937896278814279910032513343315132341199244675236677623894908789419792097086905726759363224191375910031782438870381128218300412187897130859220588323180447309776239779258294758668000679727260516297876743992312752751090848692120175908820245308013018799467500451429331517439697542440676803548304113229342896657387736621750391248216902245218940524094811758650983786413270770279439798333838799677564630915636038231625915164298220489850096053547342221041047333162246271216012156763611938529683874206778261049381578676082939847556958636308802111533488512467999377090252182397452395934733512644406271452965725062389667232751064794170458128262273517360388736088536468578101299043567542071774684347507583703594799937343323937!
 6751471379966340477308005940282769582351217335177117541438430346004402032700823314143691318648337835025997487456352925280806235341234438541671876620270384072112847098175777812651258300024183104181503241193201334253775912135240737385358617281535709635280015696267311630542329615559273587430362293334253901882792129420680831507177762976321465002150488329538589388712915939250307757940058187003445874563977124275354869490912914169630764811567487640912065753845107501267924245178434796406701273309623391373104510894568696539964610927133342727779401233937396317066887206709992336747239848362400608434973922236948783055466730354469742154839483136241694239170627532604720217507941932884019881301421204614744725992083934185441862103020970891937185793347795945835603757810233739394440697613155567021982274715300234006297955726057895283558934205701747942290443795095545541839458384419224053176994384894290581483767701053161594158154421803266637167193731345542750927159311984405175295173223465695743!
 4013882862529414837943220141791570230144999797848927730359283459692856
68061120235356007400210910250891651027560996900801053021944104606281439798603984706495712828035360359722722018100263935304391546011314549591940603365834478470393491279039438672382041536752687407532147107072024715077959712034483345474076886302200067408678028370925835608197537138484604422167558069161971812385656216964729317427347558924721410982839854626382051250245248166062304450855586897468577015340412979012869920094116179932468875940378488308015008997396829917098273279586165700433274766654064400013955265759985513467506913950146971344307536277085508133244381252322855418497393911707169898987396505571956708174159498426283361258972912836470238773104084619549789891688973072609257091345440905196034254394059714728876096988278163627916744553864001235537502294270659777164984102354101698250335935286046159567595901455542945621342435291148195205540357378510111404994783859023591758011623909892580297033134747580056308026760374520601023335736402021969753403583770785989515236811814715701320!
 2970959528741687136830866263001210162838196592904509448260094044720334081143937812839390841339976468646316686689829340716769788496065836289514875554443640907902720851846792824165658205884605471078034394253918470212086540201532675550932241767300055985753459592722494201006566807150991696751965946883489365983709986186731148054678689202539194871084163301357077177997639851267294335027626189830662484269499231428353627219256143375724784492997464409118701474428141676381190596479709421097524274570628489166985676985343846625312188880767021239387727965898892507302875219624067688408686184246386746743385069134489513880181668552501666960490817547933209338382922724149488010101183600871244190786129552042198393397530978374270539445981782634564447607308763454151042075687664934141556510543007620861856588321050825628091604336041007399572228381966239518884056427577114545811643199323877865262221030896921236751059016748041992689730715706648350926216608618631166785098743897269568010730034337367948!
 8878996274434443819238545734377587319246273967651561222212775140614626
90155505450446350413380749354663403591607658783050761774726383529818385173247731352236545409791412780562221359841611473343031932279688633626677556555606156736316544180713038551740484619598427425916760215373962505602310531345049152146360183764372010187127538460860920188404201274746164435773295725442268824260040007932168983045426873372601087772907005500110378371367377193087662974996894183071791578739869987965961925539594095679988193659186879502245881518251517126587923406945423701430738464909033562094118811458467194841314024125813483594743661441157948766016588394674221947228095105472261237703339336343714680544486301869934488673714879269237421946638812147563927940687095926468460815126425672650047489887926951806203362789827166658856027330461206388120191106927791723485744229437941492029717284789362403370901388791701052788317706541467011072979725464246440706816414325322929989767559904390777594181108318582085373628190520565280749666483484220609147048638911675568460446439288323610742!
 1697767343958270199265551149120011552411682187315155634018991156294465916995082033379653280643628151154448172600708929096640879933785379629861440578846406210579206958777137916598515238461346116997800919925191718052722572446565616409947197616878789076347453442568776632028872249270473548025667654041480250098141681427486374687721419902122148128668640749573955674087274592567936526394443937591428908792805207092602988014269964425171181968036703373425809551647538500102812894778648982780229749626590472186327683380708973389683950749549311617618189194725746189593190706651326268986554180186648336398815689824984934883231992905797483038575841901928691915183447092373394588160532766496046300716510329107057923724024262700541665529265714065178283471199846802950121061214577536466604468631269920316535446383615759003820244161705695321431149848918044215144392880780633159649808336419202609429204791008326269649618171942813052206677158289730412300983002396354600785397229356957156407069348560133171!
 5262518913128186060648320444567076376821541574773248104683346466932536
26005286759104642921620352713981816420673286352251692635338390864960374180056109141306137140949687430939036236258912770667724705980150759204212343172162313167809926353359381561769763015087568488256861242824808103224560269578931920021632684328305350970493716299859792886483668818853363343548974515581236061730575117020807158795553977952417631604281867684942888578219669307246224947863524494012239651046862326802974722161633476125957193994564687921050139967348786597379725519534447024712184636216331585316975398354383568197897253236315824381926096127769293455850250770096837716104110963601237337988289634009666011326033707959409985808708536004302797340447597089475993022738076766755670471094498222491559088622125342042349853375533412262359829820175026193539680338227067821870065969029705210510414897435276261340948828149385473913936604106472991721232964976787740011246870762109801169372190343646982526502483958854121561939276922787249330439852137116434462409574845711369225654918844039271560!
 3551599028645521208420353449342493330627823847435372411700219939948218708838722194836293719511095424298514484111978196931262546282482557505997451116097348923400072071543309356529622712723685277016821034956042717668756425627245911497124746625144855343041018870979037490214606032357730968849610287522112715747298057324879107366198292834791281663746741556467988239541978451535443764546480194380394999989217383972823670315774116786239109216841926012045574328978573874074200344257375533915684436652108301619798030145533216652372124327228959382223680191080975472860527917251222677353934430759266943241011253198180042795370001179086909235997968436280900273727254252587186213965017638779124193826036727861714100528429645182593913709450266671000529629771981141220079143394821858214222130002851015980210354076158404433053928641127245712316201223079059825115926471046921173194739254252044925985762434340281641042375111903353272031301830561292071241168677999514954788771055842748867815791609086446300!
 9919625754110201658556527667055389582335115312157312197797354690392474
245
57705232063149000017126403314609136855925196377046218287203430390836834765992682824418921533202563344592919826728215292638106221451669320547977575465962404843493315569327914681211325834280668374956098286634133565307365188777601694561151842234185049287836209219265091932894101744197502132655507135957634916543148052875670408455154170277452736020923812314609008952103911733274484273499122198882939090242236726132571052176226370400477276839229660875704809655370071776080314096420674622613623096627390966281285895215121891336205238516688482076038747835794143847650519855898313222012495861334859161036879928315156857033413940832911566068641460440514927217209028419099304104998297021801961496901879543262802326531672909283934256038949955398785822005934747465238614824135807788508409517499740728974471104117569265159892035906337226868205851197829248164341281698927291458452962250955416601585113379692561537227995414003089977175450331037272075177955832468633524564808492149395938578822323463999410!
 5945935203445960798080253815773705725651499674195382205702941873949678503919278351836508060119917200354161790067269133347517855140095590536785644043527964460284574592046991046231351678038784613264250064459060525231709661094142174949767288361292786505761258056128262186911298052942794256715082894155469990202334585647317661097437116979890451661703273965208262792419033003227575211049983783397528662939056446280665910819580962035137397550763440666473640123223981582906306310293952193773116718136626560425467139134445671047076941444941505101603892870049455198665630290107037874932691325353513310825822245285302309758138202367038358285767875769543291745525532967562896192832100756466724113510749740136695980568684210927147285633317659384751743825286660651867355975793128817275318777937828715606341560732331884529659050915243954343544641029826944877274380030096386040907110167217585724297540494742733106155734353072292658496819224746262087508014037030130986321334450241729883802469061916935401!
 9468605285393839700651548363421429084663067144013231283539732614015307
68750449133662707434049433730611886892090190324986644037218551603623777360551991352967778781178969053561123236624062985342506037334786917383394188934205659145955798032174738994068885111061577721880641522073629860313803949352825911880096859449734139003590931786523952124758903634107374484848426892795772531927044845406573112111743994031276699598328351806664770860565155798910348934556511891125485308285783005707047590938825781204565586326982675096345634634048545424593484100349458523177291998893892143584396875558002912653762790242740988576528379569974971123354241293307925503114532634655216984814649226601413759133132412301749423494369205807472742518595522823410488459046856155543735790485062253012054180513270275590391635329125832425017066415925841217787821340373527073873487646400604548201178528507657319348008807426570976954779432404503101674773153163190167250776168952622219539990630860862569420231864283376741160900159345718553421637763703190710463735655522887301909596296227341596382!
 0219935721207590296606739250236074328933239922585828266487278601572753176094213121781592132067451178644674573861289395395653241288373844597855709763484725787442900941574374787691514860255123669882658864941881316963221868748603784876913185002163203218634270352805885622548137802944043741467833759939385892557570086231521130553822146761320336923347770404693963452937398755614694002618749078779223846233021776835210881540479443350382698773946062080812348826745787295723461680135202913069621195383954283567203727507055491981570628640645928488387050075714513504099341572736958583497659374769202926739324142271074707936323307328718281901522524791129388711945888884024472535267351918116100141703929021919941458950143435504923527405262778093445188204611040564981139609283464135726592493909207385426350611356389315908361097404637363609466753726584431216136726188766505796787833362828348234077403533707725490993821047722957929447222508364015228820958905076785892257342741752913527388099089133739012!
 4629179466521575429710410783241016393674997423673329524164211271184322
86173191659849884395897083834792443676787163399397037474134486599474358075879493248284463954979996266873950212737367936366854664113687267721971503780314488118444955942903186976949395180597070344296359374999793925474713547810681746464021704691380211641081182719028203163080000867787850759841715676587802109869829723801857259749526592526749758070150302378676718256152290142887974598771096677580996306984847241461714385797199625011699649859095387853342535845003561277715117078870439827503991541267408713387442064437012593367503974310778888933645125447897198302709698815621285123819052701465334661281955061948998105459556348661541657257012978906069659069160031822819060029895039150557257263009718839357447255453773994776552147567996191852059182618356539001857801367486963844038011538821302617072888105697014296264305487506993392618896837959072195473179514006879339900448359146674367579179360698011715313332881925609361088866745046369831435433356008082114189225115657166741523607937172046118522!
 4418362638204056982464837144940047888639647707601008380227163583375027922763401246675263627410486487622928883607766387330070972951597409809213997683780260503911803198042176939553247824035848815869386451906431366536059148236704563949971834571728899060844273227478942687175485492754935897897105436472772620110996733502270542147039638346093542103365573182158794899715451589785958900834403029259944323385438390656563252569626965322330931544956095059855382774958071941713191414815357275598620124885009527077005561728970741066335819389524985096833796269421268930802302673976541970694227040107957331526461904964902392014474350736992352511411279332346514751618945870108243122839898562544333932360093968447134791511051945067846998051421044456662330480338646150402164510596484922146869168946223508828767812417725541060017548796537485183584849440258800948114250808298977750506072278437228466780818961723535603241720634249813060048789454475084252796021577409490928528904546772092811962839535491263779!
 5018840019271857530704896144800937708104996923760607973325939883308772
26767489111914583206931475172111349614744092472402994124281864198400144782343377646225385819908386528274722766337143084720478353196944635350973320362189452291387810849842281314023765401373999406374893480350735553936814237983001588084082642973008051862159831187881380546688510847818505149261341010388916893564151635923319724694517905465997711763363192856354944630839027593717799656047392753636567778906758470827662781397431818306239434530344499674170143199096404669807794459477774047247139012265288878198963689611019410049291545535448074057904971386819345699262390958023187633554642564320648801728586966054840124173448901038099282503450921512780572643672826575173507879788397916339954961073183575245208079363307655202288186598249427609211519388435494984144079383322210498269083556737804471308396212847827967806995545893000558153896262074521072939552792391411364619298163788525168416177251126484325945513972194963331140382938536826101875132919565869279243287141647271499975233814220732489875!
 4213043483449843720302810718629766385898551283315320581530327008233183912432115571772853497448456044800684301045335176672943698785461962963409525804553774798067006823513972277661243643350215964257536478539183670397121293856660123895556241837766599175533155862865277300273807042871332419882123387208263802550091700614837971023961474803968439519247590538838344383745057932194252312043836021798370687118932052507489494412340881941757206119200820169722369212772050557372763306655848190722539453068863207385213102882285796683842664083809609629079321138062414677126369760874993164452694541270105455166925824423649631642996221584018362060050688859137166848777617487094842725501974981343749445860160109261952828256054067923735296124813240965552567846496858635329453557847808672126973213140534097800099682837269393397078632311044424050762800940822212484884569875027695115453989434069379620689505687734009845024041743636191955128496345772042968753563403344118561562987291063929187780690705692645203!
 9113377747663921437887944012192247423959167719934504985274019581608487
957
61169938004656405691985544127739326846359206822278621201880177438749004682066391992802434207404139119524232021884976278565183560937661831020648949319334995126098384695407857711685640257369208993895751756280015187099121217579877501532608718302127654389824132763676256267550486969279348547051886894011814534794263144718016352482311297482948840616586820000549130514420657738914879254788162181969602516207740756325008428275263383848050948850967584488469173731256566664383890498513964034237746860413807219297910510580196860221637441474552712460181157744967754666116948620174378478400878386181970871666343371504995078744136767408937485728414596073715898937264054023592973726197793381444128887845144749370593071397525452015692341108175539880522492938079350980827241727432743948703959115543422492290762331215447384223737975283805507002386641736831395207554105805750399544867920187331078646803855187236467092141600162019487575992102882166047667977080887985853844614673944208996713257334391924732958!
 4942527390697728004619978222911807947207252324363482309977647444860518206511490243570747769642776687491263816451846963536862863331360881476923490613572637775986678261322950906109026872450684651464919985142302179453044043733407866569518868592236071928358057675575114612668160560463030876486204170144030347949701569764298268378380258828792819703648415160554458227193853050742959421319619264766077921603462095839441097224681858361979717337126568154255626606248379849241725215049224226005459575839709029084723049072868445760404113671020409645012800464761167081415879476407233681249439145578826788124635137867969933281917823334352812108109016358505675986848411154303348329465840140577892429711198032524139949602486479730420672181809941537737848787233143165848257843427078606183456013280501943460829006565858297505991506726331801768646530401487872303508951777207214165959849819048522443285943026077211011792905131489631821367491776387768495419272792341611398389422318184485282787290729243476304!
 5476778135566736854987588439943178655833571560955898495699665710306361
88238200290151840504509396120601594786905891402170920053657990106865716856384319907611720384582988598159213106273832479974743586433034791517070432653471832404733027262817422397965687081923298719497534546476667781949661198736446868587905735079099109655112466103611865648833613062716439807569121593870256148464852604736002937835655102015874456244052603940952718738893811202789721788600886939817019235417792103210189521788070628209191861959372610320365399386742478674508993587416197365062339080989275441217385164581284586012403816055408678720679884743142020262714084258682107731673922737481920906573441320468551955459417684101752649582745124079641657318155557064327991407610365597151955029863358154780153002329219288497245287545031011164472905588996348497761867764766329460563546095128044656430318505923559403548397941007975309990527905800810286703389563623160628766041896348180587356217059975823917791982282926278820237576648510774727079961444330179898609564513217990901163653884644684888294!
 7228121112659945700937526021582964823910585773521810833203498506434042613599100581847600042201416462929052363734013948452656907754072408105071347944932620130874241813636217899796986971823721459738066468649061218235882720714117618811763496941238583884030254035626719320697139542707999414310264749991292771429960559832871059423341983186163486390548223886304401998620896127790950653810002185992259928085304275748253254869395783978381272295254756131080940945099214527452694936565843422450853254160645326655967114800079907368638682846846341790771769721564737539673930878415364289207132287963501183782220291466726722422434205024220027915096616360957270165370331373477806687760952045132631237055921382036703648526456742834167565857511736921565215452340346680447692480821460681641162457419387039640271865886432806974215899932572785458535052544264507332707958117876468534154512347571137207414797182210360444551083203865741772873857051211123695479659611857412396856008089583953478759487113914156603!
 0010165693244171847782400084391386794627145316160346852953088686340873
17152017310675102948331114843852486775798259380714193911686904867805870359278905117895990274790727534740387123156436251194090585180601009134113703221615537045827158286256064316428260774762819472058207457596296563575971541801044892244915643450295909455399265626566193945599637128556479545609133532165967354907704212652759228099916329646411991684620632778683637884056516343584350234780138003195940288816911276225432571113007382069887713596423744545089008751894896276367919541893975280194890467394772429126448158160577507672431531065257586818622464031258379550418648013363084497563079133724292362453378077067951951400263002723801074183917629906668026467815661280867915722431350275496176161918735803756878280166873582854625799559087865099153675515366738862063831207077992637622180184061998427600366597619890165833565638315880190685270892338061647389093019865914122477313673351793439621921421559039762763996893169525211424282604968927126521668119760148075376257673519241326715650164131511732463!
 6077940224767594694620273435298894646100867284590022236704154173950327551365217057143860882199181109269144189578130777247361370521102155133063257594404416615228342308867978066520793826220001812490808884398232896810567293709988500994910551638102465923517002556708857726822770180579915562223238520627304993710568429147224198002125220243178162804777906844048705932027440535465154327309158902190958624279940905969897466210346385136622780558494569842586108913227361195965847459865610531300528587136447257789136755864787881469589564459088311081222946522910290611174653554298699941638942300398151498282096703277255871562310962719662699534518911503539773692734818873147818747405074726706570858941583925879376693941602665230461494945818029078453229799279025249314300877847461236576349271445548182119674850266149554444688579617327571856827131137179754099066917170188190227530782062326666287292393210006219413386085851607088293422600636544236437159130172754365927548709944976645929749643892825505385!
 2861374932177819516391363095341282947642396370530328422741606438252469
02585342745562461195144284613386166690149623203653702936270681458317718321753893286136492623571808546151811245439733819437241985279973360790462726527976845227273502939783024034649718062453404969898259551307681503932901105680757962102920748448511731966258919262967737014469012540408419153238800850392808708101391406603734534149933420921109612833860722557800432790269561706536862904363004014303182215289137227851688158916121047759095734596942594072663434992337812056330770007930429270348408114263161462600949841262404854236166494011728550707733930185823830811816975850712384536973480084702476402297837816965089036639710360266327852445904883243941640938632879211157363859660138229446341595537057905894073249972240847020220961175738967274157937194546950915916752890026661990153581505871564081923620374834798312768547891840704105227036939046352959887606998836599193372114785720357456934382652266154071452690343692972133519047493745686918404757767721933368730971071202022304592532850523934395667!
 4389379930386098626079341266395859677592850566088225485031870312399287163319592312137647125617755596301172826714015007409231920688960557968562494309028623476724379161498020839480992349388378955950014719110667323190725328234260997076665103159793932885620812257372092263887519858704186634817916651227105269990276901210712726618605950095553603540789839784241511631189555534344073614756683939094093485201204904203751242662758972220228112805833331872059416916449670737859004267642539255571007496194148536081503591806560413777618357584544265622508447189417964435798147833110544876165402307533568813759565243402152254883227160164637184866030079305423841833522008489139407475059412610601158525851709655246605671325891885742619177441649276742593785664783196484545124174258340494285496724459554355948913777049410314183197648576474178214522938198579442698519755202366480718907408060371375217893288580860927855634189730525824803572389267108756917205280084327070306566292962763387990278312900906607159!
 6001584533194726848671729620482352326114707371294273904909282487549600
531
98756618424292306662893632581750388391476176985719100600927240571841305090833454184532654965779088319154769576082611477311409414412232329617576591338239662787544897814885743708118009107505407613993635456047755749431986954485044289797238175558553430379707247869258296483442874325792422452093118095499480703660165771441209470087999421524708150496809735983482898764465644576182295982750121921088300434323237011963470992704292218795725477887747948642399350347053969058373913183105412132846502901964849912692047826244112499634610776295552720626054808830715587913651412096514894624426574939841312660036722236519583393449153126026555795413743448686892340785236446745840329044451257600497429217421526082979512744977388939160644933591062873994255815993443181976614034231259856608419562647463921849790562178360644604794768210548876321119420615105877256147179832754729137738877440078052724597586321930351143080209402174451776314896620726246320505743718445641393989255030434956069259627041746933648470!
 8212347872418217992786376815493320626196485731450096979686614919407878453847485070267329614246262402096479772219100154226730621855029827797931591292262698170222066336438219753376180568466404726262314922023074444170948797096380621524703575179656971991655136815805140066214556510303899027376655734080620180460626762003577764302783817037817386650577112125630713281624753937085240570359987113927555340102151955045259181650345334140851190993133956104201969108822901923214605189788789923172055380225694037302085159697380535366718771974105742740015185904335838723979170156914345060710332097155898605164129647421483135842583466774466532378444686570375200058354803820801193362404015235740161786580753591960718345813622513915475902604736652744042481827811811594496484682588861789330274239196150099367477283172085938740667982513512347034075149825341457063445916624837539003465923313391784695834764274126475764219857998387577448626635138895765029001695114427184195707619492362694616788681508664044552!
 8877176400963880342559846496376695330829406895414638511125746891741195
14043749294656013551344240890678017988706683446260818906321662134515695358945579595249795404288033084901680205316213379155508135383011310148017621890096043502723021655201956966850730951007250468498777442327586446881038370337912831024714447489374027699473010601769750116567750758252193580208082375781463385256936397052649130278316393911211709584874399113325573343401034555076557852866417703064375468701378930990052106886701382856149664205727702090520476576463851655408212044437304481759255901678328132080068710689479596556298052192649540931741599194177726357599908047491390641777384604602708953892915886440245470349121975235797378382072125372054934294178633414146608516073027150032017662593641019173381583701228643346652771543303252257103237260518732799188474500867742292556004333674044057061374657294058729633730359950513928281650831120265180571943307292157721357297464340202081341956779952063069413071940941485500119049547979456910629238953358611005917602377231305109697483426157532547808!
 2788726608827819212483289121092425245995457956330021767814701601479632308900978494174874130493464070800653894540938760827045113099418707254976941089396984512492098682923309593222854494088587171995613476574190799978438719357405465643527900790297643400700502339156732405096308223395361501400513390247466526718376413629262284973329717349727842025699779018141229297139510391153880514841542752854423805214981825591224517078912361444850978298068139914810532548220761926271939261849740859953411247061567043472328249512111190322283613626228552305754772766333132366235355267308160868825486233307811702709564101589485577238725114996026831587787001200749244360500480779389362734584025778480880818795970740087082324575451749328353067491248574288008994102974845087209112414712657463900999814506196846591230519984769560115404177415488887916689065150339176203564568082048715236850901081862890851710977002815278691044204988286343555253189734917148243744541141304407876149431847686354216071592608358667966!
 8293321216689540442087059262229848125847087311012530036818606364257065
04736121011018304552674277656147654137654699510979685722543085772867249863378511929079162904161724123082039340207213241072955427637815319278047391322542270210565473537396017736907323797635657650970700856990593119638135712062461840456045415788572675226673636563070810818910049628682048822002709726871303403135494578276613947463621631913946139628772405344135481328025505110568912542789389039996111338287919511806626551162426143698444009829781767441674286098055171194054497753597189436071902482614317100641147014411485022947936975131578380046147977507010678222381987413972427754163587023050267105911757819701977783198435955233985752981885875561930642221580466565717227873964697573207696449636115557739417755424989232120535596071079371535786499434074905286673809119072660981747844552064562248542842413727986123535465483226258220078171808793883143010208342954584643269444472254588711968625164481712099100691513904135339522124261007423073463584436488166402310434315721230262307457281363961714130!
 5434318483044533187984964049688255778608494580332565877058694315126289957773361789184760432478098416517024869585042881981596638864036379664414941349026860707326037318085215156995751864875633283153436588649070608281203758861377899775058330410063796566399002381787094886192561335903596701287101504819264959080354550599581995945373130646366337913543235460059698159630299117493297518392809486948429191278611431236564126399547162494192055897354156304491262509851420938109258256935867652912673103583032724825045424827683304931985466934207748773313835827851502303126173674804602241490784150731216986137952191178201609560352417592976138346536906339154478961191635598919431109486800904233101336861620252298721202665453084010446354847798469418979569497990226434386969373682600336170351673453432466603412028723804089167857596262561624604300129023228877531465975309437830819877339499195272317338911081840180953727628096295804754266362226276824318712728049412754720782116702777695554953232149386974742!
 7114382329079148082179181145416799949040416919567278674723774360538502
17281176556234955868527940967953034151198680965131459825025591188901780959981252967495191859147484839182482748991503013708616642675843656629370082186697864102709718397622061475911500378997753142560475903745718147002502146654711274050335195492955039279981727623172201919892552175654197254043009305020690707374470023836803288358381433054846931447336964655360879318941847923319529883228710376283670927831273192101832805011192950756359501841111138125077670719793281437685065234356691209100974948583867761932591600105543226328351247775733151700145706795693254816933640408401586174246151256350870962117726874084280798756389875109793006944457565777085730290908140349051535683262817150974832194549316277860069272820610774615643147722242720701245003118902668331222271717174077733493885458691474760667246475105404814571333683213209256369465652419555003811640048960924723035359315781572113860141353454676179095470552487675220808990081386818686921782460024254823352817279233752639447817450210539296698!
 1570860392360704659639150544275103273291524298612887376233538436050118154794170622915654615690792760610861836496254733267009496003332170619593419659532696684320091563609174878842224701320504750962310439976571805984783623180523138484880572440228841563538898347896269024568740282686371923249255127524446022447923596680019679697298252799496440695650579122639892579273870907188061398331172484335290227105041767224753874271332343235932067959497676921999175768680495273073510070765639916375716799904324035687741806483679171631500954554762457907421191738170659398838202728088240031678589095158531019655557547188159467001468195903073941005231957645352945075680353409776316100188655290859262784132447263949618945651612543190787623791673464589405457483891758925754592262566711250857751648064972623682081570778791281032904054649456230466906623588464954174648033567747825321444589492295106025093287426118541933218351787922399682202356793850926519034532889528768758167694922505559634289537953452935567!
 3224085330568894572328615814463849729301288942785493089761959290694932
906
68736881080623182785130122979428047618792567083647301097739277113805163008266055793788703508192272072379490520836417810398171959424308979834833625120678926625727641219445142490192240131885908727643332468015304815110419712228733900683596556680504276956692220364162900795527078792045915485952852566157886875019383688120207493626021207588380863256402955560283200962348690124008019433237985613464598064576279914914361236916909066130047785692344224316586764625689076136444244271433214732420688231430335062873169285726402573797027657926641529951652806938195939957047816498226183802285090252397610634774444054562199472366392842231512795222664474272880436793280627786157349378583246759526747584220874550835213009800666868994872380287121289603649324030139180438041833538848314353165978601776510998058579325326146548606453833124468969960297736187012164836707332850868734952979027978299805871830342252195168778357497391946656066596541706058006818689751243543425711642147768166050707034115288950391562!
 9667785839238378737787653339854448418372575604645772778929518660411851339131272651867676326874876927081134863462706676406732198755638495424314549178406765054784538106756049423649458477945560034435912619978159084701038768934864097681721636230214166383091464780744653886707772404290843598760852646023035143799567783328851386511563742617723007616163170540018069545427613682282183670244341435397731092108665052384787184879612587027307245566513350803548660148887347457915032641400617093995217783973206481029347786752901888319872733542446413992162282794228850207340887364422973762576224925762917893942198569250775349604712228890497931677077014846934306958884667092409095390327560864899102274024031575356059599707029381683742326819103858617663820614685793654251134333907060525125501521530029428253418998571496104427932815636422533380640924595376902362783479098455972949529787230276450310695062205221162275908074367631651566202681094096208339363380144639191513414352904168674496383214570244340137!
 0923146729482563289746485722434212243222092327357728238558817167682227
57764852244924170835784397063602085189337385912623402465847723013545013353867232330723016483810843028290775939015366167037998436808625728873417570900957553948677910564338452733108645791800000501108318229895656344480783875270291687897993863118143361322884597968101452882591709776523232298046477408723727561028050681479093730376818617082869834958490095567574575166951255728067654645187593036088455483081924955572953246587067509873434239262912970393972414684982377436956057354489352096938001780444803482758433858283059671040294075055423760580982613538010985197175914877832961100495221821092996139703608674408572933443946309022983493349776093993168451895558595410139131632299910914019855611284989822950342153475709579989989295034037696290433856603271370089280225733409371642328391132434162214809229970852574839230048163380878281877640817724012569406897866947422057030807186630626442607649069035931747000518426159855787530763311504191925408528353766590817996530904040277492423165543161532691291!
 3489686639812822417449578029181643462423333826391545222943077618192048756001377640574777414194098969876536107534587836011322622554157752245595685716628249901405591914854041158256720190330316572222950405078247725276295657131181100271984044745035875783566620281980512676089505953537161262236090401339967036919111326308583059680797348885317772018112924454884167858653595418233516521569528007459170584360358682166086227130094688626330806083117492727406334957880409957597591368135916183006039823431232906757760871299212678040056069057201868135279270438938116727618899431965528678483706515639567470861594907371557058528434168620089788382224920953272756260768868548106928345028653967480215662370014226637605103563489282226457783604681892739648985665108565532480707453256193239657517216714966548402947849624119467494024572147247153696074717981472562733431267484984948362578735392384786141328164002476297610955519256688745635057605255478048675763720849331245150941591558220956768945074815084249054!
 5271770623384134100610039962889141864337472717523744472281063453593805
06573576886648501473474771551220700016906558553543406412284841048057110858294756672014966288433399632509821472745856757626110772121864117137875465178636830337163719731302830423294887066004161902992744051172026298328076722078897282461503757648708687934315625793986203197205348783544729772815641116004214517162693821220167214372336367803385854041338915505901391339321272039887337374958715020606992047139148629602854109845459442410546124914314047388683996061893522577207071541623603413765148695916311814756688402661646066255103277804918975357852488567167657236825500569318904462549602826866215331910039419972605990680957407700843849202119422615352027246859706349611502835551596952623618812740001023748074519828906507653448597012931688875916618501316802442225558249294097461343753313448689419340375168424781997882244911396773378308334365804564920489268371856190289210971014786964283415486872101168131883508841999405047657361118459086521540195072165025821754406265268759410474099831128537184128!
 2118455660562422731876009141929314880035523651251291580971007776960458391709729697202229129284581377641479446615373868839783965907933021142860130890879678159594614346516592077311333218686203523153347778964656873552096368516885424571330398557967018334578461048309017524602856001085240370441614714226377623470463286050605864141115899758179486050935732953290303885152955333235955551665222739076638883063520900923831235644685338360124635779724403562145111401080312448613885220982487504561248411028222738605518885275979323907754263528387738244994447200980345941633903225011471357465665686267757932660566396930214617104508288857741343172503832273015918850022938909102705780967463329628411411664814291893135734331090420462410905470081390237084418796165454571214147714103394457041072458544043777840031592254566119197767966001845256824467214323651706675763230242380655075235535652392606512957167907000762711733299940493897360184275998141550717170912171194536547091814906309810878338312695465582919!
 5714183604616125603100222380619378069179595482260263676424604584804481
40546239845802169041625372982082546894715230437322050453525174421157684990398762041654657919660430161374879930080384634706476239320939411986310692404835516734223591371830133127928779845847259589224192811258811534522325179233499235292850388884948954642807329932700466551002296010613190054428639028154682263689139240521772585800512957398563713768202681816723475763775481519669807103275944061706821106816683524867488046720934045072085561474586255886065524126378664628374861053300459650870344822038299383826223636545352436070033389380291225787931509220517190427965974107294439807242588770646514100079934756111902566149261183844334583687503667949209170147685954085705705438439998022279898934732942563166695338074758057557303727305759949476650316205226309718879030539736345939761256899314520060150561591399906668461880320590627419689458025482870428542103443216339231886100636560303471266791478362232031614976100614090174744091754204091847359448536358928317089980195494718345927526663364767156530!
 1547126561426662425285500228614797602223931883025845678344501066136386468551131382115750316658805816326447864664933540591536847344818882745776690988136842622484286060194024519515634978907976614954647417348181762583597218716587274697044336956799017502306709139707642475346143029924420063455540670607963346145921278148913267366751821877932187230996338182145320721438506127380708165929982531592104474533905208966694559653585153222421499331243332871743051300519043494858825214398343116139115403096571021415461887861908793370532690124798762176259268170614772867843400142811547614215336503704250726460540750230804582981911626366888073309826546670253328368740156922522270067606867490645920531888198931857297227164200929228768741926013684272439490887584712858045864423954444331902943031231139055403505761456738358089012728775453222643193632589842605611229427144652833922744689468546139849976386736359064660400906314361943944831877459965165164445691722262914142867632396990853081203493785905809768!
 6121376630194874729581749877809380061182591834284241810202830365734402
349
27477530290805799818458540836032042964188284175514684029113201179361833091090208931457248612996514707037002506834435974733108391011739124701981830708653759923463040545643810685592562820614024401233328271812073164272984320591043360957688728541599409923639333071510842966119643040328365984357613665524199197865657119857992840488132847565780227457842972474208798246544716090213303454802301795496440548670065802737065658934773989281785649807562036168536025874772417860477520072833500704203165466579323270226198926945050127564759266832641240550124386214571335578217408281404620129818741202162249184611940116030482744489215064295820994281270224707043823459796814228326606738955996002925082102001773683783224457582308160901798096769868871082153378955874795116262870626777164871238940273050094103827124022765824753013012746160211085895291502715904404422265225980209718821275117508717527762408221343658631919825464021362532849474893177149091980555333429879162827907875513936380175221404860821904808!
 0936159536122264095788948453613296390669705622161984717241599363659256574486167918329325383529842908445642289817454278781395121598697772658014120576129578328099994232861054263284971018725382575166832186718244751481653858656740930870411610733287142663904128606320881102079281502469256135948400417735226427654763182856167185643335505036135879479784768907877321527402192089910382849408994428723549390726553592165871395179094869691794251450268042439749032338678554561975975733779505594929316789187980754571167602487341992026319657731448305683892604449110245445217434837339097317888773082524900172648357237523797412993676636199576755024780288879033679279133616657906877366113377825843320801368624682225016059215672938793014958093135244096007033549781877409574143624668878200410512842286114020854180333067385979349623992048220291886913069043736311524961199408632586797427568790103798806767251696370345267173061171265412140616177879518664420201336833961936891370005377330025576243970574300014185!
 6134822555869802999305084473836753141011163615784307899622069910271571
59769893004735527049781955565761781712425169888050192122847429688583242269992678958426070007230898743731665449681096739462616290645388506590491701645000206170750350465016386379247736265097528640066594447688581183491617590133973195468711828774797327188524166016740888240718926108628745351889726758255000906727844972455575677195553242168484862502878590277606751770978740343934610026388336743701428292715492206535735624774723584166629665278318260084888466928929430484332255762774118093126275953878149170968978619206889354606758200475919940770976257062797720013576688013191928955662473686297894412270401617168789638890357615221750419178620768760509671709858774089207975866239727681403217599341447149428545978060885557223666718516701683544344477039619874694776994731029729103693372877350286867770801322139047554768760983873132745685909963698613816154690108890420572662673311377713278324250575907784318617323017468670375717436040851983630718331605212101652531621313453138852326660922856072478451!
 9613407879721585035702569205312719835069727330916135070417308198639552215008060378525598511663220566591011813566655855642460493234226438218804166878031533337293030865758486212440014839870561114072271021530114572488369746233543752065103866756412811176346776106169663777576519917442281275814365068212194497226930562119494126943707040934270047262831634745337645920840378817593353853964122240926088980888256309914880315092642337107489587471923369382268611062280003033354707620928943622471437266261365645601736863047152417296931751550957479877130782968293945751138425639472283410897195837485141966525495430905358191327473831830196258420269565952805384633168379359462843075869865242090707308405268195645509978064698370899183545829835426899034489044213070483397147830475773987785018359019955092843246465674253910625519439156781535443207642459766647420558134460749737458444095082138930022355539415284696031309185373186908146878198368896891025314164905271143524679349000899762483287195408796952420!
 8650781849269151221788044741182272647684558320602727350906973575194777
91088443885346395975730410845452620299772472822837334793139264197007280858960515165745095756445578532892875333264644615936224066039910546982199837944926886065776948746667324872273452563423481422810942665092650784852474506580609460743321472341612730961327501632799841562220507821184634808149326450215157091014719819912222961467960432913651780375193152765442901382987310015437879602044096571544831398625540352131944189834659572915316493095905820433132342259096632070404107784495939740241167663568609651632572500628164906978677062804613808794700768049434201116399563508658606621340341120434661240970401211303721033175047474353637125825503712616543514584154985088348187245336118884803966575377855843711330988971512026251794413471596784451770488175376558619241260589089384252812510269341304195531015741051896096045986913219611138966734944692377170718127229941222792004104680127671892239988343126716210943116619407021251633879597073181325614966642031657587196230629605067126818221075445417377506!
 3550804294183935199785476751982875778266102341629909625348028629484704852800698263635118562961828450525763819405160233538475139673479516596827609414498475762194660200529698731267098258884726586387805633632603126868091883400210764790723518324683405348001733065844708462617273173071199589380690790066708964663383783701258903949405283873586415775740296217848799243244976941984730515389182640055891614275320325945570581212116659840285592809730735478941428148246371835444022782308335387973137284189137338592008057689386944419034586036625956352923810145199915308901868341993827060987499024674444536528743133576717790621197462251417705884415926820652135848263805205298413196037566238639779748826716941659699937569816104972797782523374554898505811542440203256528209189855376441235547899682702779546078379917374098983730186532649909118802958393002413422990476802419936358006278372313090664890546323242393405571650151504436485256732659474012341171902011471053676642996042037442219278867925552789348!
 1970520424654809166027951546122366573682685751738799826308183637098102
17520915328364012198089064063972945884413791379008484979566263592843137567066564159522959545878542067155690490810892017268431699543645241376176487655666157399143607919417546895057438607899660613703962759865501006790024305496906641085298553994301782885096448730325764537594346944544501788506566553275316582845371695235954952406577231466073161561102351026879920123824530473418464349555866820750355029837649169348269946206999117034364388988765662035601023277009217549236494602196389625282482383624632234107235422422187786875437790322669437856005040151374282434395342757239220875607034431679466607064892994448015177776306412777717399589438746179847726462702025975902748731528536917366657995669538129581708484041770050726708697048116672617491537376463843282238066682788034746299420490139294713781645157781208569999899152135009982233240778332401051965676121693035607759801781242727697404091154394402979078082335612273012207033715524359956042884629578522611725784011278935276556578818250443773311!
 9351682414538589916191074520127994322867518634048682703717763694537483609696672619463751308957221193376205700814552088421281229427762567001496969086494259121309529168889218555741142294962271937118009309026788840972822091038874052166852788685642658475125894462817774793584357872750858949973356329493388964556233041988362239996979155429809964235786445020034758937818721963532166439015242651055254976536038313421152479323132238527867567799892080544071305823305085623156439588641935759042691589545924487749944391322270193456284523489820699540826985553064435290756196151245129516901917000331773819809202461910793880089498993238320225204799256883825549863076408774570308520728679745323667414455703496034627047502986460097308620931240519393501947869344310271712460670333530609026297788438307288101393358134429155492520455732310832497223061343990794682058226895969424659078737621696622932492114651371955918051984799378143318617069446104386636007529185222672095401436769113645659750296303290195716!
 0557460194908683732342775637786214407778348968762486426836660113405338
361
25879314311463020332150101755020784903392838984494070149971921962042075754611935951957347856761570353729671258292819293212538024168383636269583584197040633782662160611567321976106348922534697170010467583835844995271838374311393858912319953110568627781465400631798646704333990123879117687367446307410756317812056435150204729233779452870400868612742006776060722614923126635374242105428070028821070025691095506679100867493495423165012210869506382508287553357803002874383696550488156887424217984461093126905561181491535959771880790404625080368405008326293752848023751876839007537399882999100311220064391199748891394016385408465895419787959343442254261393133375121101366173975251491722377032618945452361487120250418691369662225675560790889099569720201817695800340889948939766775273939267461667516421139933120463868015509766224870253694358206311605408767540977823573594653890902919800472902516767056622449595869481143518098064013763354767060316359483971244160057592895807311282518102975746232968!
 7637244091279520514280167808649916215508823674233698166098229549481323119644092736559463143199522948234374994105995688385645628318364319381282319922447669152755142041501303828039737472818514308130200831452872068679585594259780244766094202627009954854051277742953037226015938410037356765945820846574385379841634222933959981374342827642562477172690181067721970700404506232613828081988954471269817701995275344911032934122580354229411187469520050297767500988793849821507098551064656684295252208216977668192615009936096288643554655626614344945720891890880435865450612169312426308810002111254711469408095566770446027997550836877435692912788943578630441266013519089664449561353627373737154967320893723589217795863474115542258211720732464239677973102171735957967209004288925695602825400224583885104141733368687927873590142337840868568100043537553402514495556493579855987175170085238802292977498529417324307407690596179520235494823708934926700513012536163391084368418210169869965722139617441042319!
 2078566372144745937280501503057450814393701978136286247368907932725244
38173361453529633258828459594976622793228340988964293329721296303554941488357080849591874014488102531128566837151996785164183921952215405904197629569180935312843303432316571465534548146832961878536643974454560613223323833651663250939494964144658762823756581446779202493496652589087626377584023372171639133347094135633431926760518056395980598609663926674406941928733042625439756849082566670059226464321987572714730191853264229560210280417379694950867036277665823189460877302949358854750647893927054505687287058645367657957911767564812591934220759328208509065217569538397229511648131086489242542202071213696221811669522591342000992751677923099666368953202261528120625994235834753088607211226830939617102681310383210742772973456352755228346950535077996114340051473395474939066412287153102493398100741459096234623756448067729948414832046262376557467350776927693805701138732002662175364313043193167525233694426070139339178314172330163935800389475458905714769572109054371965794852512788846434184!
 9721966281257929554368167834763964659534861174698189463392278795444085023085972524498799366107651129776990434466357064528928443497233368580460317996222159924104874840006550698424453079296860210023427239605121764667361361162238644099670303635081678901941523540171347942155848430856614250092898967660226003875194456987371461895133607668478107021144580018331077446925298424037676614642830148821723358100829517862009250796370934435723240153409162129022482349779783216827965587090260568550776703493245218137605978176938819870200367338722863953206289322427164609303033553253097495155959836768136782418211634915184863507848387730337105705361634137233894649296344902583008336035176168229711725392216897309744975039479281854989366278001733690821605685416603452131535384547289005898834564042635859546909665280323885934141969726280708281763145612151092394400184232882727846767721096861489357799818708131176246758682372925680023743085432585195858040177732145481597976420471627544229569733639773340937!
 9475468410221568416797441894852780154442483761995550525547323705049770
07169247534039145522960844245078940874615622184907037511620860445962345069357866843293954487462429198467155792840392969666148851317000600280929625324788329659587821376914890076030336291492259477239727744633690790948493438962186088528997546919581413210953904578865039514267027502674834308488341477935622610409286508924356696295970074127866234208952742720518736226569735062673039427870159833181731322462161772564880342416512371314034756862973801887957159283010277045877029658583059606831368653061022146301466654995551906310411832692058191427356891397233818671524862293056166766059772650179534949854332673645190265715732904066455779899454159363029893082333196750122742635759092341756863238200800495314244089456845772475050952122015818391031237777577891095916266115073091714979520170435854771681476689975768510623425472401502006221883077996284438462397802507621272486160761131719138382929304991482314992404833164211514091478177362975868827160924273242760563652820492599424025409554094214165761!
 5722963041864472423560764866014218501123902547504174554829153383440165395941362055871244490070808975134159564507835630265273707016871511868881820281959448202592689384938609865842453228631277233899574900377196272002018389170903438160618419876308395998209893680143398123650471774802040439013235897138968392478235524678760211706417791671076239982265022148273027781884730409516793405245828038838863405084957606533397668821748827407728150097091307092846156664149448112392267431990591529737418368932002999841766449770979978255643390337701444886460377088012541441601635735336294065790569979251523918085125692875868642789193005212530844011222865083831134749336811728726041020864612616235798890710209828388520709534394381172802380788821201784554066427457785873113485611314375254206570316927358784975650777412477586692517567172460256997590039438302296364276134447782756756803264271797098829047595093056347608037345077335307876584252364041639106185420547355975490876098278158048526485508589220035472!
 0851789032082437907423747140217586116508920085032596912319238890973354
62875659597307843807421736613752167860461706404385654522828623004747962377888146592393771029627495983328289830461740425581268817083932801953678639385969193619233349386452939576939626203882470073328525071270719491564700722777472476748163684484454543331468908659554598282147124203896242708974301072329488714980414296540408021767981312957351190282422938543404461215123746531870573860119365642196258389584699837380926885660715695601367204210649358256040577360401730923844080541350005462655477494575339781770193962894076900706886196842238978924627628058463770568361991453694291593190221224928534156256016805467652294166947555260962084570677841524101867848645340635397432958316826402907579408289523763240507779677818333273171403965658073742840402989901852850939760446268982423750882085698302125730683535055087028966755920533571596663884431923035290017726922641998673526874158568563002575700327641402544437513187592029353277026795305403998799804055449391457562745253484378510095428332613448457835!
 1154305078742569924958570655100431374877140578494888693319484614216008558945399433509094775644211061006139908062883836335458671980067418158894848772586848075320917719221327963389156956880941355414367461417030560909815618829925292476026642906497489665717826710707580599579775450581967486268844499861844884091830819921637942920395694618907835084791248228162781666913613689872688036302037033663011976108893326444041942473166300419093662015552960708391357712932517453094056212051315539595771566463154150094870069105534161160219846181168327571818714689504598630685657258875618860353831516428553868874189761455851308244848651011470718248631693404274701923341446027621278104293114310611315253878921687926210603004099641994448784611044375714415960208251149127740034557306127677822244225695449669290962508275659687683569714187346849551638944096518866984612181471930125344045028771657544276275872944600284276124522222698590933806205392039894010547052302111224454842335579979608833958773186071346876!
 9447819578341790208662126588525487051950584890583749568423679597343586
620
27938706397266666937332277264490010312407691285828906274765422440103698024229500479425884622460347394913467935649434388825741200854162575442921132753794058643896190920010383281689056750439855275089603086447328554537651493266378565954010070353785161583081180329346264604543996625412265899677640505518227906757621079550835618393787839330213713681443298137015874409649654863105497228316213741307274689170428160981639018553287873834081424851304541672796451370078160858759935623029205014198149291140866438054154166564124831325540635927549254046093162855065375866523635949319159915417835461675760469374637840124556221153817669875059242188516427524767612807265855253232895532608842519352145188384899737871445387791869355411907928029434442257473028848026304528720519091024832324066120858969295958286128677704034572481249364605509557457988122848560102201110691477297297577513839187868179437146090623529952035433923683176043547063428218393752620753136856782490438613613566567073028801369936536044627!
 3856412299955760093061727134346383986390230891780544439472818517394415159215217237821296180463879643776943799000225574643843199049128743654001019782587706179799900962125645386182754754819447060672363558043354180403966872898752326076028162485562294127205419124146743596354778830925801408797434659293485451342352102023442820509506406184182043872199422389196329675315376487376374046916277901376026396725074407163471897907183279834851668349967497368200251734864105221645681987027337751128188447637747826205885562629147168950057018292129519965234818763722305519775776266751919564876574639325098420348548030974565662144606928877744554564757474488022988701768398403347121828541655104512184111416497912705779356377897478412387698173694766543970743278874950809705083912562995311441787374461378530352039689190505744407733746061152751775504316496799135329021508978340887111223639304636280053520342744233036889752272670039064062344929122435082658262189667097864955133608116172802503777019591525991596!
 6401013092177819654356154088591981335651720995083568622257573325950585
91475827607406848644034676205772846557519463864555428266169835167442512567236651178850585039034017686989115483939606333401724397725376788628823261397083058790023963788641704109588684251794847874250454859347542313901383703172994949771398846561272912895177882789986506633475568981003271177277522687534173202415786981889798834701801483746810863586707033651908056918277481930074434120859510381216887613678685202065318667805748789039063619124870417340665584911831382448270579426572914766073875972620975582128577842650338617124211189276243507847302223705273855076372180422507295056210558308933179478513344265415829244625344445864829213986552273784897805124970792638943051477752543648354235634174964486744329608741710276907996804835868102499767204602729287039619130444933647667286514587085635037567659873847666447293754806293296340791925956022297296421771924337210152611011242640361822005239265565118900393183951512440870591881666311371926432349282027282710316688860954075947965996205823019599573!
 4439380172172896391644416148194460018522188626881460977636449647101843481744117118715805228113955158582976920854021375933783436032794782771681236406739959358595804524710245772163034187013626511643297679305574683767096062535996641823468322820614355074749410746962556838635103754503850234050015325330470379487240881681009368502001523677409678498542625309353453548250747996030728509530900955803235020675100076689780654654310623893095410632282731542451930228954226419685014104002062075223695897420458730414725423471963784842001013464186301590160523238299423145219262574879749010767346645496744658238195596794978319697210590879227965820019354953244772616252414299695675462618495674658713476697995030304380126720697054465342971084780170017882787567114327650901187876497487672648241396009382641215337524693757110887774382287231821621281657115579055083042547902798394448535640538037940669456311769736454309640534350580051439752654021529824326372028264878556988698809239485068735295423688129914510!
 5139036562802461897826231281071296252594588601139691776033150556511530
69971556081767903383321936918324591720391789633618520600603226351798465289125810845389036726393250235375197026156890451867407815408030478357542131171591410476031059255296266562546765058264059532642039732810337699779660446934851612446084190315476876721963164835458985411897501004979270272366671140768987324765049797622419287147084728852846509388289269814688540765259673484710291716424349382512120581622387553165304678926938164890825719314158798368956632955448882440569163589519351693950490775277987818639177067763848676628093171084974437530728267325595392684504917163375512860285819089353891572794262687261761409444509262744586621510033799087469407334178604835243801577992777984292054856618714105883534566394515066674129655690321208343654768653313528073730390414484086826974677270672628419545816961574963682926742249952332849181587115814981884747999457040299300811217467991292072293924133871464382433388118765082860448291557572528746216423977115871649168031586134730120904252846265897207412!
 7900251045623900191676062939348590020100393449798770232002351886846033929229191647989472634000318678556846652728883890135885693198459033082210069012914008492737240812732333432632609127147538464636106458107225567630874862153152752510666793086389941826817350721204314136415161936984745837525017373258837965879755323380604386348686900193924705139798429539275980558873517537072962096972245756783877301094671813398741471956507547161353744436068282116036974543252641382687436216611766789942103661412118747257289132537199880576925271561368648125329536603819862110281689020317598714064341423057513745935027481892653958142695292866229561669105599621393975752169521894000093070476430979729087634808678557949676016397106903683245268935799535483216254927056453080182966654712899273857314332746983929024019067235769065207259202313208377291166179017837985892807266181355710578467450221479852509513689881756194647656104774540513371393379471951709154445479140665591323007794043379213921058465169125475710!
 7006277686666653777047564861274676907905959274181526062745791618956912
13275993589795795850059139360832293089904552779075832209017423711836713161100796980890563445922307677652822793075217392593140125400675483474977642511847404708196486536234814029304051824027456999189471245567087983255141148889858443599048784552506871762475289704482543114518505150812531307655190594414606000432850748150256763158504729824654700134548582004816507445350267466485876831120758450563714422668425631732473078174449459083742991049825864105609973060013521101942761913023262604765503191190758882188148457123447695743470772337199699053425737983665053059063091377408593891489714238635499300956520142308392102400966188917083819804433287908520571491726075915399638123813585550140393308208849249798312290174851038132322305908740362251453306377342650485783274261463583338517896178351065407681868828047472620826326251806006355595892552161291113619679216808482332070464197832438286303427882821779605615185060664616781854128905265480752865128273891670110374001654069021523635669626105253810481!
 0617334847338853654787669468339816752122774382869292730343053168917168972329601841133458335206142345640738542371962718992428195439661608065349084336814885626409245177793497479185032837683461886438481543140894223352242559668833820162642346131253230520253642216216144688480105946726051645153554830230102113259171069784954399784573831562704106857200175238979315908897903911458174535034994812699450740059212395043835852769170015963064234597409607171157249915050036115780191896620592396086545256924926031493907499268204992933646223700163604212049512483885539154502498511481363464917259254941539088212466729831273506495151020184609238092440060992786298169032698145332215908855023621361487930485467759237144006735957094994321082120206996491929081171169064974695010367344902344947653130079578685795406919484352705860004964816370609428031911059056319453570035095830202451220920889498902186247928467989158562846141168857941111180665954989942506399285330546949014734414132980886843602777514458716434!
 6781006308616566707653262962863421286297767683577853196377727869499449
204
64149056979527641004465545523805967290991564304214610035909585279242669942664899678524280021704849251894701174927428711911546403999115814034853912233670010859956109743487077811125010745457165868817446125401698072353284343249964191376015969863670820010751156214359708441565139168276751790881224058542158084737583704540502182309817772217874553052710362290958456019578337402484805692083527868194833279741265905424571271582476105388905415157780276354362513336924006281561128800515293059252383159693294398308821719408292018450660753817027894161733031500737320584838364335082743096219359024009333969387857269643972547787478468100891873422834546028923847840780553865410637493562245647952524619356846886779489077101574411837247799943769906782480810746823431574930356004662874191035516518691178543782126860588796074268006155493544465692080478334817702885890135233851029250944431820549657461659564000703520548841661410481940749683525459884822874641441760639412274235069794822096670237617431042519422!
 6550261974791857112371157206322261073670837868247558157142090878574030363049875101355301495896915647557676814305085572578322115517955209769839962822722799262612627948166082010520676935561332408867969787581761413587376120481301565669304310742652479048139282272729042125261320979267936320534231476746254137739111656023549865645734836516545693326433289505520672915237902460173534921553938795213292268066591720007362797210976955864356707542669073557152225277041791248664043258467719724361812421455358215631698344255820982171461300907755085187802039626899429238059179016423692290401967073759843044336581224859379784504221175964324275920243646742957584023886953530645407993681740019421105190271318424226597695092326642516740879261990830846143812498219622093768347537249571684181307152841772620429256505862592449121886658496220406970833256395695820109813306182612111575296509769772806107765396574177710265443856063096814905174267267165705676098075884508021175091933064686926385363587346294356190!
 3965716115297883060128990923028022137723435395085999166919249575907234
08796042036440117709890362065002207921590133326237904804591620740113508655921705774477620692981343576981113207138682027814137114480096318893511214594435758920767470719486625081201432042855125035983514879024783167324404118925326785352862422705245298604246119230877382213653025556434999134917058363638441067304313207514089868942787598527666111763829418806460463727012472309004999857713253711550564894248605130219684031216472031568387137651731381915630766746382940263550545265078534858139077284891932098285506635245301852410194175583341889258468257188245001992154673296581985793874351224375270327600606005202417805309247518676824051739112645963958668529605736096300087444283034082327514860836777792134058705353286427990355377688624606670007846097994948159655196994334246175546977800128568781916590941629851216190971113834538025176180650195003496695983817744068074632476104712696710042733927961335521847055234466255734656318562785884067445258877831397968247825449677362177429094000127124649880!
 4427496674486316859857152435750063645042467656031682977616394204988670802635448571811846455421559543499166581601299157961680126746260496077262002623805207581977486082322673905886974550039340103570556914256506296902904782411525707696776950815469660032334877501664638172208595453921830982886458188298447148754319422887493629996908773802528149709874820473629257941457121659595350125943006661264402123909402212974410737783297678391041693117221494265740833036154262036854169210749339385988283947185394404485760255139323034212771347389885076024627001921125432613337621168520220631536904364801959078590371466346193515319543853501509787681423869931675516969078674506877491671667200895139434611154894745698479448088331029571480893204700449300507847031084413302875484649839797629570066359261061727071533196954682183709272302130468097018266330621843914345283392349988090541207817755529848545123412857558210162765262179475828155972574727621992714910025920301202945435957083736375286801808095659215867!
 6510994219518846987808252919864619637261166026531618240718148929025167
08365048326761568987248027048600293835284212213278617424723858287057473095024688483300479464360217407829082582437928077995291844002796585215808061452086880123760382459167475736688028357727331769019233438229555749461657985140228708113240479181532275821519534386568749640835027834880551311757149231438653608427147654336731102865916129906694959000069553487069956676066569438124166412123706332442796256574716848079067277601476653027038858953411985967955091282210133893935124630561979523213989652679194395197916552331803439891128844988947628864976205183810705864952105014956531796658332403014528309374554796631253656660266309426659429274522269703175661928277023613520833229100793218373811603892010733937555050049733792361771572674702316123792339140537839520915311038041817095604772114036102500076388222738290724648891924304465612230882111188395722179932551001189444490935728347692047118047709921771063955491212611103073870528152639505871338715767282832740831694602869516003062661032212022649119!
 3039826477578205030473915353541324056062046813975034106612606321778837795555222969366743008191149011772061646661154211907048833591855525492621185624551388358524814407867628272974957174247913224488345377463827986291036259193160539720926377784320127771123971085170578306246681789465811940374506888573988370426631238757675864380031380323249761895689205776388109813003070280750657841170815907390719005327320184016592776442471364628025062653073560679177913568170269244209362358391583348948802646433026438104639620495135503509923422492513219182396171813925758430294463903423069474703030297970604830601584471134517914024908255488415879363646451635811531698422804351092895415110635601171965848933305387130916425515384364197278603415728795555934655380243925606859721036023055413973082444435498802997138051040563673866128940906896286677430859447151210067728538824511531006479535285236942775633824844054332603376048215533882686400091382334554198955081303924731305391709571646001902022377664957858731!
 2498411994321059213420098984382918159361664873342514350710167506255126
27760999400058543766715529827619371994281175758673123406997499462448984838585275740061025288373458897495884858363295637792610822553949030349466202318225419610197788527079004882518302436270672890329675652268436845819258054087570465957015943404730415965811569706734623187960734276392872055904308011370476250203950350031473955212610389242744187083035892924027463252547727842508049339770520130806608080085360438775597854550404868013814119610621883337793323808242217529771283703306517782597338325941568620867305320755852528322318465505859305822386340062767879298393592436290201970190344714516949281796998750122423945644201929284994190203312287910039514289341868876238782945935010145720290669920423496532826667067417305059335313615545363803644173239437581601655588216055282878022134185823775252012081000696433978876420203667211318452506874334454317513210795935912827869151009027783298264404688775156576476591310483149696017210436904525439093192722029964876028566255241159167857275350141803018025!
 3533921275278576650685861188875386389727481829209449395495859727389688585438312247730740556478438585813918322121923533505966998018646587229702854279016397745114739865445181357855939661968041356898683143241012722747677265618673909914506834250023792986663342518338088649142880870584110907203122334054547458574417596373152323125577249305363952018348369050874928060529064059165401851020183248727735111380254463704828279195272714649562695162135108385740811533397780312204393992180803147726441927763656490077366522848450633161630133210709914443299820634693201233110032887863072539598914156567651378010320284137273009639809262103613354699481091651797576497277469215835762399693546955109865165362624326911064181504439939058903917373454083473864710333801671751962358816816288560901955829209167154463851673974419187418671045158224362216553404047013172566301422228118837913266377689872825004981379417614380458982576898435479683354887979971101941060621293468866909143425560882866406828863207478960950!
 5744243043168272196051880725527235976325573392028684880384882800723947
841
62497536544520885165808768613128943133102541811197417275352637607926699268493439479246284756178248111770802630053890867019644773067990444348717429765366803680123043006234033219236440609929294279618534525810265771333640885817032412092729829852973699949582200016697765269972856597690425856499585534748849480085145384334842659232814190385727047675404679794149227602356424933763005131644022567501035914116165541482022669087120759602898593009743236005358443142175521345587915158438653684546708946460999066324400120773847465907546364509974422179904449785611439515845974569275749642372281209927253898889003864863770122576415895551678161974903582476107548051122501520263423189059997221170282279291368601254126165285612316068729694804719374756474259971694249855853462488301755659201960741093149341952265779630080429496619562807901693536326120410059190354502794497045693346763225849049314145112254069419267649601734960086577882629815508082841445144517470416097409769705460448160718048472171927536981!
 9304890390953569168964576360838377735263542672636461347186939851564666221780884217198912424444132207625268347533161379674596425193646194823292694452617682863585220472079983988268741507491342175045972365823495590462623290457339184062497034125258018143962477889567600317310526701708010985996745199620407281303170133465245075924137032236626962448769397247190264447286716389962030488387013598022614392037209985528903726360390212152364067534813520428329171754183891836915621342631100762136172540582937468715863935144025345657345576076742756387087190587745967686554632712959298295314397888320018855063246663237398132436561818217182239146978130697071625041969728647005820017149768527802063346381832808750939078567229426599318716655156388571121741585640346810922707937458659223969865264389796026141483590478002577242453262678353160779319729760286916288584810354549230470116990760362861522285617319743184240284630828487125417269053306172484613983392384438189643626336161750701352238892863303099514!
 9218487780364644079667579723333926161510164341415364870222275572576620
59707665170824616348940043825268786137388393788505978194995668130157548570559143703757740232388000759574058653954907556001123505139776516658396381707069780575280665167019600584768903088694023158596943936112685946201763751249072531856645836778883548593882225207885792138658330554276905973885137121835420551063824823402436216428238493846010139223768116036157655922044825086530074620407834148523843822784460664032293047775079304809318114465202997472991303931522451528596912787818565465595671166681953113456615113321020006493713232000507966779562821176479047948297169045361321820512126144210653175409759056746226893143507243868832701753777723206467534361136342073337225458218896737324899539949504983005309272167173928935031198648598843241692665235840229242952470896636228994823577466852468879989563376440457215453875619262721997138363491042676827583674028573928556191750671883064324774080759016497285336140105083472429496538669379682184744455418455000933843819488625360748130462309277350089025!
 1404690771271966034360402846081064616249297059078394127274428592800264824062150163681520996842574499387376013738115991689434402579282888500038967120018066200622057064456683385500522833731517021222336902552415404104875484936049258740724182219803097912826331329598071458021474100040859145185932651012299832364136047962813252630541983301609007889622153117486442175828951986066543932152078604795416977342336985383096675658379151404848693752995005210987401221027256716875592228101040867083550622722539776048877616672161639867307648060711740853700479859423350794353592002294702471507500154649571975973653021285258313304318624499008031817924198384118740118938064428024261188998977378780073697838979720328623457087780781682383937764016604837193198838218923137033842349770442304077638612422854975560010511750581828754947208484344559337049261446323374439471297001011516916130516871609304624264158827148855747754245067903205415901806432816427418996095741663165637395750969004403667676303736824944785!
 7777636885752960813970230436842399624006364249078944620396981955424381
18635093248794571883336106896981027861369839300484143289316548468798092147158760453070051350266614901651587830641135353697404444068067102344415441141474032429661688648237937996731175028768266243954110541160105690390013264383898967425162596791115606000667533027171384773461666635388899654740075930840606758609475331808077063034372698821826179676395771294549268690804966482033235423318899746223534220824572399600707137161263582915271491270989862382791431621979159778863983512278331379837829366085628658274231704154806314888590477514090107903593742036404136363595262694701909750607372262000822358898182490303784808145971462662068867219055606403026560344651767797322513136645547465251834154101926366358198171789940386000925561971197282025395348420328462582229005255100053268569397676827980714882223168011115114067253205477771658445939780370665277331408576910637111192922015703917740121766441913623903000439845622776583374945016267348003257372682777887457861791534967923330135607390691559756780!
 2973639147176947980600995987066373432200272696870235853736350600977624276591212261622908919108336512676924980184981587853291904901551758655372258642893391090348691650175939722352515865459557562932474409556819947356455544667762683805812344245901745639700721145542229286067477165633829004272751189935241752031152695912483062563213485992921863539701788532682951190591521690305048298700778968756858044720495264884946131443282110685824652779935496477000634780110933560559659195963104851051116828214730350616433205871500490058479844025313138725838767427331701039748287759782014998394690799027921019469221644171350536887004469364142186352596777019031590382056496997903254535326427738275527749537315801893749251540664066469740005598738669721009014787566676782122685000517345565050180229443467400209035410313965344154616656825546857068944925630478339353733583559725526508973552289753842116843958141189872071440111718292580525696034029656705787461466178774224547081149740739593010909581747998846869!
 9689246205705134578209522826455303142663432203953751062983646989334068
01291487498544165183306832939870590014903430112567110050864550368959442395210220584123409432632911031419667088154801852333714590430472103767867931679679172360134869864699951000790906527069848801728689973038168211661135074559593016858738022348904458390096594215062503354399563299622702384338824434166054667125827746492877349260828511287964097980013425476791086122341877482789793521946677971149948313562745667667887223368196673407085744178650336866331999336135766663879258152665491952681057597248179070411269090538074878133236778394311960473496919555670141768105774995043091009517013305977201187632987969871755342719663217954539461264245735216335514103273832690571239631096111954689534915782222803387556471265934852059222899479884805017764284848886473490116949754175527763451235810179942993015300630700310039824634990327105276052623975104940067735511536444038800432779290358227804108987895496675039307933796544406243142085675736805302448283224679622376368536708427325936219067458918993760050!
 7528611967669974974387721146526431037974463611400637510270844901059646197702985920785130590613499790970644965251856842893420811793577964705358300123145368132457501796977418312956426504824558022537167465908560861989822747496572336158209925862963649143917692594457216604107858293870398048307345719601486817020563001883980275444323460680980020188481384902889365489484559406804127265792296615121994436653035530691236929675970093250521511311323098318412869264164859409433613909351480439313362251738371326568565626775414868935740529674755166991826430065603623231453918643124319088866412173521124816470126476985201942750157782973929799382266599580581373155532749793118397289028399609294033783289247953513171007688570804447268717138720600264230962454630460887673437946739009033912810493928512984921740249822920871300585149339884121155967544800344499968781711823164294109775667475573022487770331691416244023731417989472092354507507506923484588009096907899697888159482915810347931814269736990811648!
 1092564540624871735511648201471146265283819160987111105738033285171120
451
58925155965546935307087982248227391869936374185108827807384757206993872810779268933584472479690515845983804869533466362254705590521669122803305746985820617912009714321977932768323974352762478780951027586948005292129638714919021831859899000150658282607863707160010053496239866840191135371854142379561537466504224530622107031695031086395934483668878761180123576403378331367048392728255116533438827486606339707222907581164675920587336484262734898451121460768883594481084664747703929495388598444253611656064682987622460089851980491307718226419161822603780326079466294521405566601322068544830689467283282116050637240728586766426276447829032487574845987629153166029157396207934566302705696972443267444644209073703393676257592116540202138776877575741831241552446781862581494437551199337464721709598321623700822182107706739495857964924817350638261616024002256422214303413156213492807911086531510590117400861419301802130161526203463256391739642571209842258207582987897184054396994685823712977947930!
 8660765539345765317244294157765456372137617164836057455083355807240620366408226692124802764145630281239113420209105665528760281893051257397792838231055622296264816247131970546134957462410568556093241819556985538662611184702487758974522205426491212797994350011785007204346894593424832959591722444505786977827756429721956483782060054832834861755417884064064291012545987007503867865112580406168217456737841432282102506784317639111141828307139977636831984249894358072202851394014725559813109318129296105206976462448654519586399032693370630985229232165150923928454133780756379629837952039905163369535899346517634774666409697260864985781212255882143817316402754197227906653864952134346339450190547063746535954245061938167010427293133051295285173281844677058309665383141507829808056918918744025558784451998381618648439368757724440842850166047495907806571504064396809822633969867749064063199939729018424258720510457514522862805371755022078325118549861401547281533519507252618222198952853777383393!
 7442859954002320947538237987464955826062856208203306092984035259574740
70402671913512837897029351468352278430563802148107570262356191675468828094960466690531090926450539851825125313028546765006990975414811343237022506550778034662450108663520859116741078819150403627801507084381344940499335786113755887377529025176007135850176234772411266998601590800865099580492884339165560771339124125379399764320905257447928667356743066472047443201147320850329061255618258957922841343681624037358521445366543078084095360525437094059988641596476539355151732482244428414481020680833015448801345483721381725365579262604132532544863756793047104126596971397703098818654097823464917121004322194835539308014567968073251977905082609667803634878224274112449209506584743189445287510331688462427412916139846808234421646712941771352647929737622235960871851255113706416477005717782504640337729998765395160680347093079006464710221186354808499439314913167193584129130276484378450039955333378354507091612466173012274239127547699708420993514246140018918780541223113001829451979535616241590149!
 2464612848584064597115467065423882025753720042956391566824700300012156392736476014115921408956439671998834170556643110269542852648159773520710492072751375471956656231409546173323793958854720627894273335568352438378448853280903377735262533241218574483376738541155765706755460494996885047814813003088233974649295170368586968892334771294954010285254144131749072337296928363101795959371417837288290792598109663310337590060203272229143068837165940503699279477175505174286656934340951502795482053341356826534840062438832053704829848970168258724181470669644629009551702969817390172967749041214208444754000272869800855604719912666007257873880730259937969100558381090505189591998015762166770390653188483042285325488671227604023178778153214298002261601386324012854529249077573917135208803012727183836183944683697633285379353925577881389347202285101078011904609669668675925359264517795907146949770586426443283293148927701775519333235835714426980945865268599298134335883911030811173538663424172726664!
 7173653569532897426732802757561097509843645871850657936658859126182583
07237021222353720047244365319125493873022251758944362045699156641177699659813697845811164292418741373154861355251147886410351823001138725611935127872929395672104976030142415427970398901816781549875523411000481477254857812817347689047656439684097498495341980065069618552648765957151229435032880805164091166694010530704420059634228784377514726895405198777592389404872685460994412731502129875080950730284514088264524109561395068619833761451792736099674873643885526207427973029717219220368886917596063792855075676210690145224241588189482154914992247869226155600979028920177539187676318775783141584118414075966268942414557584888828543258135595249829009997312069107065834953196203555685159399514050047993382457831542862347670925271500788395386309437843982789558989809638932239777736707604910498817184467243381969426757947795030557963812963831789923665115964875139468568746147600877811032546681102371255525960743764601602984397468831253776516984306174840564385045636927935557343268044315632675730!
 1814995699880902263311024130920269101332726061449239120251982435475473401262102335586958737341343098193612852506097790858264528446999426420143177553965267229196791838611654723997949673192446385533490646392934973508137469999885721604699632716590040061135403064247870444977438290004194044849185378688808210803194546735422457370838560230244906427895748715458869769246887036515648229097351603676835728863238782712458531137400800371842875410254953875155154904862575094139423768687207351956329081866639684990518048501949754727796991927363325687490498501768232093725590152698024241499723767942307833356968369103346057476095185143410904869307724207279438191769501426664694757679621424446782976109858790013600373375602316707875402398989277639988501869480153939268511330748382858563172537403363066009389771112923729278644254210250212551194456965988596567453553596023538451827727999107794535843629879782867717980786547429545928772942691742007354809624085595472257267913143738218294535160131754518696!
 1479067987838277755325547896480790685547936040218964548768256925638330
07321218049292478718810500739882604814006285511236298958083674254983017480361270538609747967003344893248059552313255288157844474815756376285394433481935158044551625527822920601144406818238817322782143300938383775066499621121295242690757631142675655683737583881998875128128542497513851286380371871355750746389850214084102789977124664682592475279627039535133838147562815107258832878089776051944637868563685806613018176828140121170511980790546921650862041318142477263175215279090218084929729149384730145739080745453105391426052408220294769206181270870478425142352844753992519346955919833323001691000157558121931282078764759142853654887733545981702449433135274110418231056100785440065650865535379586509567945552218839854720243017532454461547788879862435630771231767124617277722855259627024810319263322419892426901601492106580323631447894801811663670099192213925980328996043027189104964479853885916523058797053669504682613198274044890050024523221254413688005770065521224641850045841316179510503!
 2740975004776227018941614030502096129810508105761649830079542347721676288388887495903512863671339541460358080753665601627937741118752743641659773897912159998119427235333611604833082574608061730990222700731729131313835404145500887390957738985369840908488938365382496833606177147497413327430174927867634359736308261157315006223909383512517360030342162304230522092569134682381480128525152551689843533967612331290073050294566026977278219451886318628565562793308310211924969805832181388276085501969571228002061961725926571385521919262805981522260151009441160283708220399443010265432253651788613723942055652422172199795419725883750442220562916870630127474100767906640250506104816827581335510457604816682689674761439898488738372277368450247962562274425743510569359674566246633329091569638025173248917698925578513059560792578912626337019478716269081706722935920144474686292870426966148638518681854320867378380266582276679892266864451015393927333566893602190794198938483040493335718396392219815645!
 4155185652123486741822432243582511412090207985161752822285405047497179
336
64600598999745273457799450873422721869074421196657894247185109568748764633508656881968866631327791356627541898086901586475273203035495518358178289008725061946291352032756527037329226106625228579723893559743816574643725609089613928584375059759217569774562712541592544616087935221607485232460274218246446134978676188094404933227001134055305378686724705138396345748495046210128602066882708986473121914001273259193332121550534275859110239097989822007928750223927209174099507076493186429486459709858592406744144572878259365482368072229741919850673259641572116240135827472440173285887156834000164792909328820886938746462355069918452833632042220708638065281312058386325487556464847376121717071474570438326702787094813486414431966127717494442276783277380719388107821065914509700941906768163652367229621844686370134657624154080481487411993246633918904211132641999824429224227888226175034652671059380400601073353483413638611990107112407532127531788524942145729568423196643784119169634810848809900336!
 8936011917518296968698780589147008050413065608750833894553140101155038333587482226224764395250585989840283891621864647787552934309246330615855644199073433566055262955955589153507601268786272555285524769207715233068386195071860512561909118959270802570437204206548232629912515295609961745850654130632389948556102272330114473792143429349952384553756264581447544017723453994651511441653124556718093712092025827292848583434655223049953747403888105396366723842315101414599351511524201632699718731897700762538641799645904447030334452652781349550555477765657601305948337067483556256307852824925236009522800070694910008057613661197582808018919385498834634728011194808354253291327611781227948803415750701328880840830807959480019891729483381147411836232334307843448072570562566960247818800166174199261247462338952965148584445433136813945357460772193327621234444939667209517414262054931295636032741081221926479545323265925491026961528599946452318984066230689503455421346185094089388431564573648319919!
 3175268660287203831135379700915331651933082518187259146426424416322828
77893462947272096121789665290114761577116813647990114841551834642764783261242275963036553830820405517937383951414171342797490625798029697939697415675273325356313337996426345690681910325442558293611002839120275120739626494873275101028043769502434646231740535179202670639794552145260584767836382401825086880099461493054354546073519524061406011816959276486898909978297611621909347510342841449120621063389525029194544455742389409125965835644017140943835239769066030791716329179252027726134267056978864425580427844840688233279964272206525093098007858568633241765815139670184089416059573149684768269436607474818174784434055664175391694667669108733416068912798938980189637226838747369191360850238910634913730827859547327709272788738325142627745197336545364722347170482014124461779120504049571307076908761743306147301598995356520919039104955962793491416903458667125029631606168017593635154098872719210777091510834820076871683201171204020724613112887261513141264639633664602792230415491245195850732!
 2805115970091189431024492116791551493006352008435432932103407728318688357022126775516892282455428500006635761533643617285755322146883969804145594596088530386742150628094524696372813876883664595812258806587387680156592685191480024029163433793241799653895700448763070470138410390916486381811675617729732175774254986326464651839631119048757003520716998193838126010161644646212011893139133959571173148849134793543369395718349934881955393622339687333178263005392339316083605582325427325614266210160684171974940065785137958871721752231741792546974123842190350428235710911194062845582614728111799514362647459037311929446814250598904935139273243134411355174609802487522270640587552275707279975338147946026570371500823680722711257842035831775230383003645776122429414848542793997155949242374649245365669814302604693953971458052196114362801675681880552898761882958444839265944091360007108844622489686073369618318873484097400197626895354131247096048198589567179523883322172777204266410637550291984923!
 4462966023536833767443913159206151692111006229506156504196302152995056
05962129794454061191375872935884053878130249255971578835629620448466101030237951007888737350286309726008422624064268861910163362403843300508972247250378920441856236505145342927408469642661438297538366694463787874070293797594270199157315861142093011142534496214720967606761325742286053534590675194266794281242339882170262941265756121803224916079952646493832816769903746587412348275896434422056566960511320422698047708586947452635082267871486210188600223670984070074602137911562485683744718697227521495361244401615703593441170936348569132488034866052838970879918318780650230449032940377389402175242817423888612457683671890945112522006840780737573495603579988449897632903946241338095110029591014947774084171498693516977439591349820369136240203962467523373179469162256946160444623718663295884683296383963703749880578069702251890166245668890826689052757120789292922748297038379830782775720438360351340229323075275960485102514913258593791895255993730307396017001490650099344686657074098569905920!
 3549090035958001119322369805662114413500334601333310840509943764256738665388771935654509504129007127360621218980049115638793542198519184903272551078143169511052110487601855090408605311177467544830764339822511311701230204107215631674006634275366429182170148319507372374536433455565514373050972565268189088008900873621245659709904655162556077914802145685240279587382274325088571785177153113015254748542451857582319307190298442534545401078292466696637225754391895278208731604368893451239296967480493074506525824772753680167144890047109361237365453658380228034079870294052993341250929172176737515250357968437080766277493725070969038645816667360271042459158067921124588941796137411820268458489608747190045772365855382838230427966595762090690886853806931871546796406540331929389975894205696877656031242798173670222680447109757499005532753064994481298366647867525303390680280284828868187789436338687659233938402329089867887289702846184548393833858924567403130181145963793162827095016644463650476!
 2488593208177566009410343638108004243375939301694140107971840070464774
87551864954549025380067122033588066501441063845338394483279761013765982581997248811185503053517668562118715946482933305698092023635353707728982742536938987233491137056627011313744755917641726436537965458892932370709793761004757328090736440516991068263632308489733507293494254842814642563758799851359092801247174384757742139259186797983584672637859747397965129611114149851582146984640825169830271884919797164373478243220562318284198990517710902853217047104791519654205863226299019331632270930660230584735063075072949632475321489046154698008376477556100282284385074245670936736762263519067971126800670031715105514728616135462102208371844532053521698188211065349619636781631216449089315107929250407673983643970693593550897134469141832308450843206539502179524190325983277261093809674604049450075434842698035494910836874142308877366952179041739350050321465340229068519267858169488285104877564205473828309456949858593206835429646050475784861162319511564887703370337858221148240865899492765301425!
 6184580027031075026499703955207477418693566867801656449661884755756901483145073778220351646494627606582650357048798751521062035923990207079171811564233820627906268468789516455039688018244531062533110306738534534660006874051104052163757802504061772659070359271681575166036012410748665372021064263213547929994166879118872078022481450910034115280260487512480781243853922779456760271439718117311372577846670744876308199154856715644444978178045469151638482862530892057575437822388929277815474225178080114582241035494536614751647389474762259662967687402124523087850918367495928128962827678541629127935485596060366359659231662258952614388738809272615354607167537710479648097054314672643272627048387632299430630519124122860508447763408759265843469000352386422164070881479218580781507500476335697979545683161690522122810471131405043041043568626563254178061875388063228011041636661695075436845100406122349156011219883890787360831603710906199162737354052640561694853140804817758657633840214219177093!
 8369931565587868522780275120108928351416838122075777185093266416919885
817
48025375829995222659051742111194526065327544323870734319571586895250438406847293395111479434333110093649115609883755943594675430792465054584582515916718492551650155645748439377536610800236374216785985779978268927515701581774431269406701041438385516846423163545396504376037601626614058883394474196234554034363183812827982013799455701964090329975397254830553146598167239220481970253655836323910693867034542661527610058489920707555278683491404256197474388128979308871718105368730486088196419940610705216559246033441141178995962870783191587421931823589903404751503652803821545365475733684318418260505904434465392948947817548914846298832512234062469770513893989589793941345444004707381647768459951737874942223548495665190722267765203113104673992349786556463986063822214655729793085082665310222944473322687989172419666536979916803009315461188224007790472244013496517426112972708139004479091022402410709046748873027996022533844332216255102228644747779787755861592873357159769906044714671400901467!
 3331814817466219586745288307983364706836907847420602131520047790709343258730468221067087441450991245559811101630218476158569253009578231851605935063852448038883860400054765565971161191668411539602851366341576956902111485658143320279468300346093049735778723641402472657044031849393477296508055306440569527650304458419769623252684831591717279670010825170221353718308490834011621675550068015128762265000630681687640959560907218744867326546417560094167421369028998702076586107448353166511793671176066273726707703788773548215812382144518107190975045325451695129778046808209095110346685158503961151739863187066963723733596889593750754175927611960497648759209051243647849085492956098204301763374825345220679752583288926206944734676606144822784447682307206064740136199199159849613440826119875153555767594851663078734012974631390593024116867615852169566805647948789513868512460360467180964930815848102517897636872401295196171409174714764896974209127761338031878776659225883298222594832582873690213!
 8020930940028905165563422280707524898677916126113050045480049405996759
03127683423098399935472371091968968725392691745103863733310388746183046740486889649659490427291711254096979796107606831453455189000844212113583798937500434672261996432385906188796313971044021439239850509587416816434776777601718532511743407778224114771641424964532302751187993305611871510116095190980676945175724851368872879489434019752362848947812794935237089513884072901146013990714289141872535525180465016887615730849404173589023252762022539206083647577765862839795440622821131722709899338449259864828983033437958907458195673045275231397738545013456343104148878361140415075117245107058836481251744783284131768421741609722437985146249159713328107840211727827964111724796023722699273386111268052580360192634780774528807946220798293262798670929140601305206067407188546669872152192028816172786663938838780922941453286751134790936011302771859301297631822599508940830546143648543488914162891149970842536949996858003688882181057570104767187449531622129571181563764925479656011080196122655484308!
 6412235546729226422767959423452702054597977355516428694804012339568047096054601744718617961272654803045344800148409244092365835593756582618058270667693150678293001228696219199475110901660856120745524460319660049599652727127564456358146144458395412084670796867303779872370675387161141716369767208059869048536534094676360992602394132581581948967575588155530717234247447474581627030606710354795798668055980497813148322846117827087239749484119765462972968937542698503818745901501873652706159192526267871360663561592451519092451781265569797032179771216880619902853585948155317461168098829223377919572318862333926928978658528751274699449426903374170299632701260338547366132552679394199627649960924017938578538955503408097503609205195447601992677675542077596590554832820963852849039583704799467707657084953915473265402625356377483414904031836084115447784189407772144982551049822237849453690191128048950355480367314571769134694870017278306954515276452436986312072199869609710139236455411028056107!
 9155251842819599156116590904470522658144801426938672353536451877502055
10327220382001062523189146833295791019155324418060462215818212506347713803093133633864155770528023867616013022927398134381055723762206417196178423284530914350570765597243044996092566770473972966392598998569241112767954695553637036843962206993472528743611054840664917600559522746872940138728791835864927032592243083318008443302024961215200826562486732329900034476913746495498907066092286160665695382729213426816516408107596007638671364316869179181154745774142267655820419695963688931090200478963765870115535096364468637599635466489025643219349081427066704211948064540320240524456030277582134958934216485856394517214863946530274439936634836459591070353798633069082438853942468898791142743142390200542486405467400184515648074915520082168460146763266227792379463343248128384856495107645995308136588576521762122890808466966180344047061483621491571583332697637608918735752416924412152519315859195487969368466624605917749126193171198669612352852419028673592073830173125953301575707281787225493147!
 2477425179365119920537278938599849926156301806273302151083888487127845353028285911587883981881338328026974617370734977746615463059504051635225637571023512568020813005955781474349651551058528901445025929711121251892471803421921818412044450719247505753539052110467662568761655834199720321933737615538780559203643472485298147541764493057207785740853737968077312368119640220509137587261006574978934238722659468930252601247166022704656788937233239341822312507298979611523929215340960199136765462131716789870349112261853118957350223456257132667585785093774098097360413201869939514229102440605545408447578671004739157070356709043568276645486971604039350319050780232527315477609675648839434497926254344891913230483509820345921242834373887135128327307646296533106686016968529255211549881192315472998560250427244303284638331323266310513454672427142843502158841523890364748447209982099573659966867358801455705378265174185447327594934960199367472673585255411367172097586570806068026999214806379279414!
 0783093216724494604959863079624723241433939677477184584309173751969944
92203112293168369038275493673369964804989204273959645664845991808571449601428595261259618859069969488535002091392299480553649338600897424708790111083692073633558104451660131909136052761692275533243955420253920515238223344363741440197300558631293982826912773336301688690189099453118187324882148760653029752304532807217206092064782193218296116835229736841894805194892304938063808977399443764361797896098447385568464619586549200044891855792874740105715615087997133269815437885958665401210998240352719818737760595068774838315163730744935354696932248034588714110869379219766275621279520520331632742405297728511375929591597775572553206656704217798924720017653735046293174276462582433863602324056007543342741265720160928885144432651270236457372897722122097897250811389937044196761349755877654486833080839629867801418351626799806965242150310350417281714302673339070828757473355082177950850461525726003569142630498100522033080287102224496554433214742163464040344782288052016411985870415946556176626!
 4822156022716052728165971754848591189725913102298600951690887540153961405016156136563186426742872126635760501538091218634944985913887450543043077494554257191913645101182877585230136055293375607706091052357066297245935422560032381861354892715693640232579562092040855895367732326355577465704737172244692285566635829325083397177563779887782391243956827871830874298864179718317756491301436151372785909740982365179505835518177522730881886854989174247464328760817249457509699524085353442163239641999654168861337249012641778376002633342421779072655676567360008573928969749328632970332108360951277308150121000138822039484256104965312205175108058282892798992257819575990804405520473597672537172888733308117983568748006504538093300173753568627994385530990011655836268711143384541283654704527798204716107529007960333211065926336759711625935920323172145606740930166612829043301502453410379865284131803828293294637439125673507813347937513259487990321039060583608846469219014594802899647156343606058320!
 7026459606234579082882015647525977940849081070739013975160611373498447
753
86738643753509181683464085141912728106715355274217865395536226217866433826392687458894042925118977887717564852345048403943552217840103868386400248656612327650599119696934487598233734526677137496808026035654695736164820295293133172696414399312726699426187708787343086357262075117071256645385492697612119058054237128302386991140572432094455733643421286887230202319150298907235583959393171537551536912562705277836652666640385052903129155618521540464353058847723789919377850135809544766254497177297235822042592719430491578928620522503079048533825523282180042575913866071615432512504410278252442608893062190203660660612018793429171076421466158979777368574338912331188808081008140624740085628521989565694150444526778339170793756935933890409990587473652784597171076979144190547885057896264183533868184626062304388237996647885527129168334982730385766825103603138880548209407943000476753678294544231953030938696094452102534547008210857954444058300430763066552349855252130170633310694369659895100303!
 4404176487682594846334384314370901241140131185134553838499193714292078718315132259677009798913381521651749037349218358560379163147582411010595971031428813392698432608175194818334837496438114924422330259592783684960793101437035450782665208237856322915233100386152290685029836301234849321494349552434823454730079301951628547856375045333120096133395372565391547166426313147851089122086306413412304894214611182155502081236928050517799929198612373761906962691456609517215308559942733346002878166623441729282679699150223219121954844780519047498217895569436382808771476616061986780750717663328177631603398579610352231939965965737216226474272959068616319468562837789643752451934931184449342389879554286070618902005071839131615211363637686537860106233122881977023355206129095969310825309518133886897984958723558427309104858694333575425640684117633527559333094490876639931384452361660640019749304276958240122785981263428498562079485980639176818402831826563895103138572000219154273398565613636244989!
 1305888401372777401929410745290116046581389019326706013494614700555918
45516347891658422935544480417556363737389437842007985578447359242606422219174179285266898179721444057165135350215310769727521997586559733613613575648497329743007962535317875467648165032398189755276257744097556192242497065795252319731250355179172329010109404957744724990098639672509595887332573055285657515447218581351568219637103908150120573358960294379565990775988987678656943622073496533241733927783707044970059966998895703808452155526478282919015056195755519668243915022670012852907063466277813173386510714993958808983076657774060864145239479535335736435037264714892314671014800176584338502979274515976812363943601996384903585914759832614824113868755068819916804784295648055192358213066488011694548123239581650368765629177002940504050914712740857142852734863328394877857274947557600130331447953703292268634872039226091680488261457342398870799801221080384290306942092228371876165720714303717244068174629645955187237178379128686819376641651452229370190048543920967872692420981735578211850!
 1182188097139909657215291298054865515704699717009743379967204690955880711789743498992297844707699866068472673003233584134916480643105318230453571310043309843617028667102469936482977234823435701693364861783973477270516934984905081677871215451156346456992621903163201046566375451872320755013843786319704408947170995884471643325602733543906042211351795397343681647319797365596770945373567131593987967404639771662614752317280023612108857291075242303870329225393553938063721083872945971828135147856346542412061804783189647036614994838352347771157622748334721110302593867271727175548495208726239722421488574584036462468027358168288477823957171345494952035455765611801862021180672197277029350280620687468913078493940454563271010489276422981933803055814140422487871339301375844040925700360602118984219102911567486235692641181503163424745852846178565067325046500195523548368331002286581484007034715019461135093995215293801686704041195719032635692176391137361346358097438000408060836469307313893159!
 0180471894735761733877018359324154313286320993006296534834843070743513
86776211400791176716441861587900163399731445769109269622493611275648564075297648685289553773577336619364612842038289951670023613945066694579688382549056048556146340507132093163917273286049658418043144768703848885821241602581098400949836266009963493378592260290910650996204262029622632031156208728349599995553057928241830931084379568107500178976528559191596890183025868772008665956969885965846221327205284270446619070839708414334794407768693824783847563440561656736450661171235578724727734111068999570451999047812914519056242527872682451284942034479257238913948390810508457957418628664062316668619103008954767286445021280258432403296854226011423156370984474001275502559343803226662072669529027521034055424668670493148883222013006678026570777488293401985724593852386253819240823905897080054869797246362319936639820998083005782166127367239184025766599306376358095601074475461301118886277826410676488605098425125513790399978698986701798252223432265551742741302503583585861923565321080641707022!
 6885579442255274427904499185549060940000815843520524348212189808559788978648394466385328420274931913444746733025681356994068427666089221132420428663901227153319321441009349791150379543354760827833371395955265830216427239655547771935750148097256021312589335830788077237898780858681985045703883966577705045932632814792158680833513398787004284182172285718470588978378875446161988829563749297802889551889650988364867819023260649915029168939354591046843202842192123366150622089349988648556735865745708474136842502871220601299873080415147782673296218573215016035047539339789679835847073540126887096990816910830764090399812020188851008063481084894973687733752543734956948651105889006580905325405326602283272832655542392321189704025839925561906995552306052174904517103972993339424856902151805280353750833186450203843089363180935464210611023650611829010294590421351624437525192259555100595636997619274560875323713589139006082760142197255049653758173408741263460457696833091093163574800122612330514!
 5759406397262304942711543513790811297045275192408124876665243466852253
61358975213528416781617636451840559384638942181863084998210569454733751148995143509309414118115782364795761357372057072828528825052432625054921715550763691376217682160714164854432118325616741751972636837358835646531484667070446386541295258412727523071768623882008016502664223842114396003893191146743302299680046145559628502704255778198413659967512872934902728862683353676718912154917807913610813802931424157848820520382854207529174389291327592433556376821441906222688046578471202157196704017875350052988772206785734246520564789739030117268594501139417859736752975571427531725932185882227187322100966021027140007990130097476950108319087481629679103862110342790671699078177472956169194106054741743701107530639433251467261790529071219884307947998865835774989461501374332021905781449492389223382754302099600285344841808594945467536557195306610966355034709177986157010890582639564027040800984512542495863685721762486984593319229924336116555282886591631956023486191980921575786937110057290718083!
 9353295291093886216693125081916761968524809200075836682269617063324995392544154275588861699989905746622206554551895231122610392869343979030674235124448435112471183217573154477290265766437574247403228363446026495367446722103055784631933204271022028130243219877988271232535694594370845709278475921115736439047669238879422747419297647326050918415627859707269335398055289965425637640951596120440795747385758719408086486360605857526375333895867384999204342848641781999334019609073788232907858459795639462414463560704234631654474405996465776935731047274826971203220432699011637120035825726386188382668913006773820625883225781560820531955172522032571169709917967843901759716220243353094022202876979738237987942449627899460321043514337371071663965673925046070794882056994531916696265400370294689069022118040400948923164035777657351545208232298719255295771048794828166901888855486304183548236648766419781675742329350664626867505562482452727858280734811414798186196772107609461741959177805025952735!
 7374363442118187729222264312349408177845455286097473597730012687343021
743
19636664502209205313359803102374451219486472265440361782905194351307628687538302958985332278618181790459582973679166398914363203616355137786545178102136960445785459655220526495806436347204433240494670572097590777592505849614095090556622734469934013721958502350772647468852555526072022024116234582647962572053756660529033404976707235257044702805496867557597764944260336495405656587202179480542643627503891209005661884772619918093235318892888158762434429176382358945679793866963880687586606802016587889229681283085035035216056538239732308400874020859043261723348219921534934264308036331967334396179980184377163619059588369403955598592267965383830587602696304399555099948415473755732920998086271159631386728248307704950661165458735116445790358018640595970330350980086440818542055477946353253223441442729975375760919389793168805488831090743720534020388450037087559794805926167365013828823357665861758015016298218512465940149459412928961848126407116778973666373747624226131906702173494833940557!
 3172502081370461224297388356489621298641816999349204379933517795065891664696426722372159545152260857946821390594376772978917434263826896028339256222412799924589727174286629633407310836543971610418746873397355917160805114328986557532918102787051930548718343269764969494101432445720776554079139784244279976780298791741835577629017398207570853778796523516188310099883154359484188188733570334337129624313086387273063770816020455956994743777786783505760370882888383116578182995463069995269074160570188359503699700023844758526448557816898638491077745588972922588258706726777246455569439856604184727559469730241119829058300701903537184961043276512463724353783028089069075637638951732873844963453409950094235474507304182973972356283742408785948434558543771046829867498965932645143633985865109385592762009883853343025652984349360396872316279148469094400199185814225054076178152469587484290691051012056725507379813056353382815261046829623807417944694511182599150266722051832017839573133563594106519!
 3160913192465037524782344674683762774492039300479496487867995239898316
16683224322296208006376624435459080310934272054077303636675663276320840467889420111063331914542297005067458533366254059342478986965440803315220164069869731996225378752723895448541331318397732258515960670059266408508660733617220829169567452270646884853536959600716634057158020881050065439445464329876157186995572107513118300872454197058843772003964693911358964307907830179277469008976799816318857572911549326052563930355403884565554646247737326859320475087889673573678543089698076625468929213561688004483137500350108301373199954844805495172883836581751821280379845314211329070022160941698007733593137528706110527517686676518094227458931851351344411972487635126106084072175499413785288101525790326811851223175515710526880798288719620042681439787124207284438459677296478677808234442741136583733099252371532321303358550718469842864817641214402199870239637568920122897642941730298100306656064324816150210650112049720951597701949418462906290935722171982417556784683093047467382555246358881379822!
 2331858317993980208945644926842300011230251982693977065350623653761931811273083755636898942901826787525230731991432106483352054749151731239611424397719966501710080989792701692086585598699045378893626219623075074880480730726663108778433671389125646239754785347676331304963592312916639264259506587360837859292378130850011642579328567228226210089492092730137415911887107699493906433086103641322895127324922467008088012473097328486480412983742033755133043510214714589961710263315149198371865630446170844078028459903887069194383877565718374009006311937275956904626223341757844435553814353268048891828614195989557292429870693011770161386331892345941096948386406655596811340281114404945285470021010625342585443741772344868677967334763256941939176124476633438024895957027264759405829873895197146412085987993835317302440860951871835491197088273070463022731128698240177245714470863217418452117515636622874481015193255725737615494308577973430483704760055787535984114904474855700075451845056614779121!
 9344096890920791092433715270509281193715411678020759120296410699031818
09660009657621068153659050178029171301790902367271573386445498802486785602019336477971882498645377026987286628372743127754362571964630722485740525517289058872857177443894875103009713436364294248266060177654661591561948887536444167480950348466595737196894543059214678446804856222564617343622604498982817073672142602400163240776347533263463344682026090283793947205662741010605602382721903343143675644578463443961289816424408195427109967424006565602709483076335032581771411772841839856018192840789578641411408185631485731989437488928297189556696581619698960728998552803180124247862367135454462986652032959055388239020767003963452939420129162638365808047934885327817095220256226917607858195257091521421091588084262827833298488877756730931311488842934113664810692255981690542289026792902703916389094481072538283853895919168242404707501469882212986318033914866788558676503353956698279880967846848002312411518025739372490586124581414615339336337641688824656714217179510175436259892914755750070737!
 8004338266703673466216525916308381648699193392396990465090174432170009919392345089971037859735884367033859865940262350135177215197748550842772639140887506390243718674474245505279253985125334886856690825523616023794300200283995953919995858546358622546625230251991617278149384725437311053332724876140022750076261433926961670731458436884841853347115279233027944408776353219261302428853324091407561214141896083709618062719108154613369207892497194159599331955571585125843928686056229974010661676022190549193796876520986104514719539960988338997296043071099370471221438402135098054941645248665441040860063520186030758237581049514986390888826055751059611089849418815484468908383420547919979653840822428338385031073657163825039153130900345889201275505752525696573330691944112371121935762890056620872935261822361177634064208325031513663473877270765019974258995968728631218540458349506745348146342853376873679695780841251415286930970272497322395876702612950360180703887381080775935883881569333672692!
 9860568560296404549520245054074398158187225752154976506378184828750098
12939410997112984447528296112451930121917389903145386484623041746198605391487797879224770253661608234237525980622134864890368323760026577281360131557383854619402708097384010801567786452524172261995357789240987861893947077171143229809764860250162325871538972569337318681653797664001831831590534397181008418815333140461305035267111772861849343618408162000607125849901915600457937038816669903599726618796692194411564247380655540938528590142993259571337901803667510276339316188865014404228242530935775025320684904153990150316865025242637049857005124383826438310399466675161879680014398009754809302361952170705174649103843785128111300732930803890056854312972159016337533477695179384648778843135738032609919569952365439493705698393806436194008242057818044757186450752710246303585417180500720661590978791196834118749179537900454903832262138389435732048280831078802473075633762525905477370183588326076873386250993922119140059239279015588263694769617316881385319569790242320359308337228598666031857!
 3770008056826775903625605380538896995129123011986480107053360238711635297995008625048288438664113938909206411805449911560687993879405495514738334540620252556956932289370503476188092251048491847403046450775482853725708915636821674402945424749855298413343860695213318521863412722724472077509922196294248728668492352312679014213734381831197844836030235737269641549421481033664804730079228225390731533024634759696076476613043918824565108659236309241236219035309224281676861866465535659500640604478963397965476412059860221170906706231596506609326294819398901733630447924772350427304657757666001207030826029789867768366178688420737775698434038547817815362122178827808697663218281584397613165200468312148959880880477341603710113070636591100130579500976747144984841353805094954681391994276031655961117182734863023270893362166028866849384296013393741194072246772462205249403665772882127701556208823854089906036151833424627788761512810971475371364818657362227819460397156394828761962921068562186776!
 4133532099674153268714662672875295867999338226505859045409586161546049
151
27191086214460757811468759698699951517477929049108659686022047766142074933070084118029418588406959655809144148187095035142598375053288105075737533230950892016044523132169089461873139031619081451324904846140596484463913542050318315997129525777216389273849173863146814155983913779801451505580223051497265127005763225485104367438726492089868794713829687613110772349431926565124223788534144190160501835054831340116675515083317350344302470360944257201111324687135060491748674064800037211633959388263866422248874868958104113780990135191814618397212108779335136750681430957574006756315041007261754491035728057080351790235741613290628000393349945809235203865609328146551175215111692310963992014751250755858349997495824133971413176810863650723654652886343877776564415005785079091264490170574183674463204658226721520435785362033821249505211369413845780871888869852412738484348050860240327126098769275392466772605064204549533567569647736323766907763903033765462187800520887005456904298679138254402416!
 1449696781260722078099958988491402065817740540550569480949724837502070945292565620166688732538430479326936607401119829762485428155563043940143897193469462354698328871962432868086822686693081778794434124768557426136701652939746830267691856840689486912559948116085568135788731281590649179404974429203958505321661702104733430127818184232648215223651300921944163690060583165546225813363963366618227518194813697357421118127556674878974416724803092492215048679741125993195393526639641668719806922611976638438341626862013454883459735208361932016942453732196186441454754258888568789487089659918385995440876924623521361548599943799922903539761127734974482934254809771853376013401279043259052272614039188424226187621158473166130378556276507050955522122158478051444196244338986338976484675227481902822284450303463016968648697527463469196067383886360036469747276989020209103758438775677833667726235950363682873427677408378998843803074231262653078504755921635439100093058907513253969814795436711635594!
 3341206314575105558187714829405315453055359286323474007009606490136000
76100025775932784123027202396798420255547554129925803084918081778470992241452547648335862308309976870477843173651575089722934116493786799449179729892581045762303555880564246621381993924006695668887864632184970360519028221907499914418149511049355471439511327363665468017677253464891795212697588416291299054463291797494389202975508993676321462460179353356593969350247449567805738741749711281040541814588513704782183242460996854360449080319504022303486901288980440273937672046715483739323648004271202466442605645627234125903710991353418020138573022660168615095410400862346234324494478313097473011540966087541953873255736516256344967260546960018500920579371911533753723635331530726239310222700048893153530248920859635554787661349659965287996261843720008496406755042676812049371794723333822248777063802654978265103800821232692329013044190478816138058783239057151859130338110598460811159886594426638904667953107453632712811017182583860908740174878480884686298416852299206798323980841692728628205!
 2835149322921294206602252818171780951460940463107368080266411705764557862829611217389656401968005758482091386268819798279575126953511604288846368860676191750206813003730953390232957017964959671104748006161986368762781860030865568246682368991843065619941085944290033978408278678481538656565936209696495230379637689746044696289558583989463812549748325707095685447636360550836091936996766726359916069450113636088118651682405652763246660960319833101790477439173373768086418578561196639723474644227868262366071259679887848953322096761740679266842415391059263974515761294813052931577569757135396397458088161200382042429237974691397399929157153454460508004416215541064654077472553726237380283871958967064479332526638732074071248643776690087749132945314520351740760865766301234673060636172619147429867335261039105039489989782137251331437656113001539900314279142121544530585246689420438523264909180205622146067526630306882634153612216277616968141383887695822197363566611525614923062817986901221144!
 4338054170124397777356423792373019606747681645573226218640111373410804
51847388930628630258532452762578074461693991721087516164654698880536181278995089373522438653425974023571534342412812823994193285161390856765228178187923022408266828523984293375647124772328176384139194605151987496249853877662852147049007227227246644078165761554031883930096420892303499454418281591218481754333851435762268676488434936094625195339355811147631724390148757324981058797417278695397653541332778063534608914861899932339476083491428304363795405694593852705107973895696287828347882283828188847523067413429462763655584775066878354207443383959239068180177649218366929877954163290407532267714522500794648593556516303282603498433263613872241758610760113415202058215177815430728994688498629720454662225614866642794659661068650641354604363356496004446727132859906357968691697887312567959792708172579218363157386407633574387383545030976667075753876488399409713950549347233499050037488883142274699995980633384060338751255944009685325656361359247948103140039482437068158359286040788473635064!
 3864394845250022688699260012678914473912733382270994674512116239783181177893564106936614906942211070349060111901361043072762613977337796634036058181500391717633805216126790248634982214628843849464339000157490832169942799342643766493689203840821733963314732744847568049682659697668098542887969937956354682819526259731413547226354863683127942834947090458353210790325256320464802683700339736761054534807968534901881822415305173439361063549816396657772804555468766579848726950256324195140854806469943699831032476209394305377309309225007573347855424809405626309473160665416309682971405633131978199500254221679850878760736905450571806359607486569210667909668589586832628465967818088269516000651762077947589483819141455088989976553150984329180415694210342434832237319838711944258696676830730542566467128106904300279542096363867124550712051882321742588235150162460938213606863999961848715675295147902054455625893623738851362497616875261726246905970939056244395431106368282029017193476530231828587!
 9544017774935207033253046757627351437288070792982761038566376084006384
88321787032359683210036713013184246117528363718603017027936509256467841613604229318406191880823740043087607955196544129842853900180508697115812763271432911484430942262261304420346247515061438005461195056235831733230940387105387417689272022475104760409823334559757671373665822138740871881490784704812293070146218796536376686660731387732728238778091643439746339707945505123413115234153564344315380134782773057460489585175994755373722378467388693729426473095339397494094774829096525878957691788254818887215194141531341395118676304422624217313563782296966028854557818824285211618431066628242943856221294475232971911295744580581916348559697929389083783106983894970781058443928556365078128822263925986571497866600718911069381231080001793004756090156954356185363971496875973738406703434518191550148242018491958662476069461605981251834310484923703277218704060803718195668760053018976187283873116726763843701928061530235959244133178396242500398583595798870108073469068287036702510826452556391450818!
 0875317045363034031915561742581616067979747812900524054012253495531751184476596207258812204930596132661291068320758448206350926242211362862489692409426271152019989525225316602745845308557298303363054006844980964808106187533768251316416467323109659364470575990177811754363651699289948265668015793509988707587541829866657600691905140123678904838305125792332115920622957851196700865496895398850306906957647596163424766885918708434432548975320355447382041865884137290535742953768265356086108585596467324867447713258284998394788251653229792496542572838193570454277704856372723040073352784395914510205477565960287223391710009062587272238437928794791297237846778818863677429320019174487569823188272303824876969235847177186539880210164254736204178615780378813948372148433816770918902204180754535397370892644847156554983500638475686520157841098669748280256665833067590342510003114227074513946240720529910300064540685968328030048669521680826607303032061478250634515385958053605263935845219135496476!
 7771070826413455837362242942940064483176822023266236952125667581763914
330
36352202589562716457882034212494406073647674814642998262403312605085785083221697900549510103048786594227235786586806452351753774869360908203131391797050788898011907163086756970404203117966424983001558824790975996289898554566665248914468374975106716409177511048946041211980855507290709435102186040131862938321360731018843924256143085050824552904496451802708331571547102319368899253575520625899162691873087954252872437060409060188576396042069941777618071529572697963695966398292767849542845885039243309580019596865506572179588781796655605876927858949428420298859942598039608612287188319832580322480125613436169807987909702028278697588964191572199986876394491851411234677841093691895062196760376162093156320870062140208894186157119842925194104164168083590486123620207385065386457416594917629326294245616307400809263007986560029323624493609795905029721274933804647696404221501271698225202237713457144447240234145997214960090238620549632194098740652288723455076060927940722232362197318175450923!
 1019042644485700297094575024141257160019278401951287239680983968053691263267391939064989811000885331720732599861950297936144741912545935798971511445627693509430162696999279588290181331928155517015760625186311701491240320163294551063722403539399984792019728003625207320535195780342860170272416673997284722521389550390616461470307124371454234529126279156511354291556169076580767385614972709732818770090711698841001017818412692955863983781713152914046630880448874457979195573087352970141792021189667302693846414403784247248278080708769562038734773040037731234150633407321913558871649917651162295577238338528390403718463904269610741521954370121547781490655542577321640749740368895515091143645469727929585554267480534286271104253537780552902795594429466282539509222414322840055059154586127553472245275426736939658454169751750700755494524451318806112506439756970290011161951183757247660240096092295945867256862138312821643595543246607437239830056394871086013826467111211760110774583557470453321!
 2988255385227130846570971386190008750345899692933259773328810126455976
13930921198834845594215327972694703396883178060189068873892158474222295215709830218736802684278436341415500906283264687928175881120163282531721093336697005635667491151669021198400263771552120846317487883699038600299612835466690143894979510039716499562443298766303578836122733059161992407511427316331091852120945733791566792851253032593767901157787681368514468539708466217540744598106145127417787374469048624066016350678816185326629084256252026805447318525915647245955097167514296506338522639943649742827881321726444847843639637606385628343467955504707625916652775022277484058679386712072197412460039959242213780452878387992166903794263140514302572533073257763818909555207863346933278814907241476689659953305185564105663744825618784989526052578077307770303331851861591560640005895655068564018010344103224499367549718925721828652167188928583616661458580628338388618460177895302865554183617440488462060773947845038371552113771092820123378000928105665951805422419627983533127752022527406836338!
 4102577798652759626159510172943551892876174443754274032901417487310634365589648500078910333931501178342837022328467081189958687994437147780724412562797115740705497559300847947704388599270117257840128709836972104697138614991421732790493864468255770854784088114890775494496803932568576036299711370129868827282259174971295455378145509932163095898922197545212461613927925357590614537700575556238858161268578928649046361535276067145976112145207615083251329384932814752848436473551213501942807964475821903896260295962784012198571992298973497024800794839492702539986077961618397154529438285520531261457951483444346835453565693772402752201231650391456233318401870446592866163495860154228198896170904181503103989579641096457525489060442164912125280327433832622898019713882960633141329700507853603568310181314741987622989299352907295577360917110740644466673931535370069854450959589624368599067969310983951580638589751246756928397227008707557816082637135710141620527187025581843139113217265840790175!
 7055879444769790558157169286859668656410389708048499385764759065155269
69260373008701250026915803498505012963943264342465432627070746095126858814712801304944984291587509620372728984859396498329280968670665920307199459506755503076323211568755442053552875743149173159184184722949561044254023177345205057815063382905998133985407178537397015569061156513367692588566672762525357298269904876679690210038474359003030387652269867935010317223025994297602823416183230918890861199115056415942829662793240267134552050296770372047882252617911649377179193101540800247589482472784740462793755129106097452266118461653696785781568739854443524271200060279726903441964388691418496839785176830282412871964841507993872932338781143204497894655662149680747468678646378382111885431773973151124922389120161588941913872007212377850352317853167080760529697875158911580895167176776942115691386094156088169356373995579388759459621717398587873621848386328922228708781636584092371117702125907883463881007010301571811570385955840365491261117203092852516483684389698971031223192981906452881602!
 3023038421171155507434233458020155181737742488394508198159171757535515550531956022344755613025418204023053105178789397278326705537378037059893073282927800724812515252723382229944696704814357841231762945110790203076360378552648329850793839866165955441303687273739843216700499001874164219707791154926982345767103279358866830830256509372757049637350274400564447780044975426639497812489612162090862790803434164395546631810979913030312851168306393512999260415864312537620390615721918003000874613161501910241457294142313462341293430685158521482753926450481454280911404763525971280352772006931123017163459544107841639196089295295413205370999305388947751936393070613586161879127820357722603193874202897495819823109886160480045317705016802365119229259725226524941557716940111611043595824901999683678854570791161491530656497270870365502182583019791654364007727889321560827497251215604300110487319476225203751838298833853296073154024777982638669447957100904442054238031095546986671907243426995369566!
 1264523404739898805915087859152269256570076796883825419123562787754629
91067545385095710196714324385727206593722798925679069033471559773916754571422123864646539210934457287483185138798604916012330798462072310595668710544390256247206639951787206673712932210278197694519812459040584859563728622959677531276099732945256741626140522992119635011613188179774655736906493785149021316130480076901017619605874879722022324100750564752073533039096467516360603636427462526599418448724193860077717070845790207362942693284308419926376227802315127393603535942879638095953648036789584084811393176482158567553663591814114865261577245002814434094867320130469685906298003844273873094760491763117902500536607555379825420612885853483550447359409624378258711923692258995492181655701402043966349905111032958037947003175355085482016689287925889346860669768240612141469461928192988490663653138365394424937933156235319854920479321055987640015274150662198192700514754614773732662333063599699769364340649342647740012801473804782025256111194523927630796081321264524642068060586310632272291!
 5226703049455410593537754865023541705590233521818547043512971228223847790268204410188289402026261522257588302673323926838722645622832561469548114199420434418175270808854253885401114449765797626631393404573657619936020037826552792916635879386014601721143854983261458113726045888410594017856981403808339498419312204640277106391800428241928181898199629186473168907927538618449244596379059247194486694015138629424743801215990872062883724386954975356410354283637680838582155150546250105546032244361412540373464060259612866330010037801300962311352318446138505354192706377016277593014388698986974766891471717659900390063416199924172125111617835398662238585401111615833584016690190263877202120893201575140206727311755101047269627523559137675159058862837842749245349697437735526225700696180920809804832169391906054603210522768126437064334368493387859654835656229329911316037173024033312319435345526290501423132124905165422406031537514646516277136768365245890215147990499656595183005051417745928211!
 6119349977208016971907884261745153512953909439437438449163400558311886
799
97002124780884650777662087118177112076237548226635739045072318398585959292891197554128477645121392705441849786229816388062858088133802425633103140160192316323927584838341077805303653484451648472543257209580980591970169999214904942281037149345014126021369260792623587912934097545409060937955344576595449039810057560128308056511043451923465661666279039946923466149266049941622668151436763927973379090822216209575045586867367163916003389628596948820012821902101039864133206208280411082410256590872996813407410795026503215157111277572632402364520114065948617811942125909165410582918283679629006236303959356207445221758107290910717756774740696072104462187097146129130515480619790918007044246071044947281592128852735341205788104451092985879534828034773246030728191368780338268294641708992748148484856516789878424716465274005827792061460285275974408482380631173701408938134179178804363374825116908216059824680740334181829826448830724692628620135995766899205850035825817008304942003705272742043229!
 7778261865862847219023989946163625814146897669863100923543579901907223473906181349893424525851549866253525976651290969787843018778516278363539254197740598522776484909895759151077330789089468650652788320704889140933020527664420535579102144398644635016542915996539378933630954387449396516880708664884953632044026598961095219854033077188199855040339621817088659295000190546534056130659357976859384577626572916389503385555843488014583401158448762081271211255412829674125907234694330263045785821090436081887739595220814823956248045625804974887461678795284352789669175351435797276926882593675046382605618240428971004461979944270051342586658239053288803087568504123238949175799820958017039912363603519538723140524702321013048386223707353695810896946919168566793790844672042719036442775660767905050191097935038339404073519768380794185014045109294321196819264029567261321995073595715871698184336867768789964785330753662930642869898727001993194236959734185807843157345795199329700359018629893714584!
 1023115191478788490382435431544133994476335293649333806206306043980760
85242976349789144162704304081247737529416790337353899094313813945442565186615364854927319832971224020052143519147485279078600331450360703831668134244521002732028113083308873917622029800140883561896733849819319045844361171688894222063806433188378016943853142929308256022398034032695153579582402099941019280394779519076159960710809030328335255540327452627474534175135528783734182121823355148075524311754155899364800071640074132234858009428799819530818862264090034887362446299961519154609053257692068481832735413284351724552556973846135355352858627605539817502493689973841852013413823105002231036466657281844122852065504764549398561120327784093425021953701078503010196176951065298746307020742443333188662922082548482352448817754124699792865271034215667406020842949604350774579659469267249092811313609762177896633681833790632520606262266958535479684694499875577597806215361679874973910347157299485824320374286285796990091571485300639564069643380478132244609151833462847615374945437251469425631!
 7285160528849480363574769951666459188044673355267421482606303891121155434158207039781661991195486290503462752029914066628016442170664565337969927215811085805041595298733153798694031434444273317181557023168359262278198208506359963368195737058682310423901666723179609497291162918144068171258245696583702950153305073986183516060047266272818822598347507699062737675904745001723093340055505996677518077065553962941320987982565633755787734442782204356195208554239092887211933081995051013142249240357675946807853777200482934267370104747635545839945887957730143543669188041680905290249804342216967635948358762457403822440774911365974932727510970362714556062407919096891288848893531907966099856472401820036554203785246568043414204829491319975631817941377309550962647987136645184443519087415745868060361280151568146411651382042724111493393985292046720123669065559878060994501840319930626644571299841861073963544812560219621120059066377275869131285016897294538652426232034768271093636333111847484500!
 4506866730714828661999222421170195840876324929527214090765399821741641
75563978305708934866113218430057933870247186806242072997102017218583396209903776733686128316755027696445865890262420481245894271004298987957233329017297187519632270389813390730935161144086510589387271203433573493438753960204060149118537072102994426817761534195711853587440088531185125686891398372820078678357538216971317923270632517890167487804766615251867285298010111787921626716599805746066021571752254152813281664095544469619809736014135022105274378086206913755151606616994864621397203122324092351553539413050342230510419984490405522117023264912103881135521480274212385845727668008773989530501134133433084139739707188548630387336675671057778592416016655675319432230006508438808895448701057695303588738843817272153404599876058233675968883733170449146280347997426481940941780959398423258785500568377543000035530005722232465154843531886210432311790550216797330215201870440915385435876194766365628017061139469420676454590024391953616299823845025582811996605116216513212242869356961986003052!
 3002622184254126637686798407468280270632018446989592214152325487293237189132462123379691051476572089468592558614510187307158667825106219007043952263553172793081672486071949375951777651484049388462480437622280179932662184980778277047697222342378674147524872070949440134960882550158258864581443692395013838951258023008613532805472758525466292739288808640206908967265931600500175313725599166873824613626595012437192379002716107822373705522831336461344018395473673258260657398837538254407365178321745741172221407210748327894990452358797219545985505923653173973420797392320167366150892012457641213041200026098519141672808387803621275228196152589550261281740193688981784185519311666534127061180608874178662655889141599050278131547470791291335312537867975816194898167875784524805687836972677174514263817282923005870893683170775017540433694515163182092514016055464572570436242182199974340709078008079942674000436555984251669389812775184157736166870159125795779768131543657897875868578377794434499!
 1817656042163684765683892231435153281880397989123148913099463552596405
98536604813578608616191313252785264630463423889665714031649011687975168322165299706822960010173573651896699454683338390221245151458932751484920758168495039410753983121184557845188091200028692808683339075330100156336983518506673162022820120151353287951792734374199263741343671032056542929620887050409805885769684574001596091585945369325317260969330085342070008515688190989999030076143382935702955577886750717438748508062300510212098310709551608754741757113929397679595876405970890994014630463640079977999178006668812860945428730991933547787803412656007337820450299268827747661137127497077956060931374628027938424303432184913457690579664732241492431496852882339289769332477597961127441450140091355083729724701813294764235262821988048143533948167770415704265100270624172545729506046250904826345143196400640211714955865853280386464550449487247180416558063114954994987788329735842373226102677620144571311879716711866405323035098666466091945408218955646983940887023439439180519141773007884641478!
 5345672178061891182978807361491828374705099584399427589032425121357253338587307232592074860618110930553281215146427511312447586703856206416061622504460124877279640423362932272095184018029573468799377209417287889834460266166603289637872321045762319705792909759347254660315557731369407869778542957417824489613313794232161428466151042714722309906905197873631900620776642653683932226178545006681287945851434471904922793968009667067350779522631226589265389732806346758721073840397057658719345527067554855011540238134628540589960974452465759617435767441547341111812452400918731212422345370815022253429520149725861732195237897625564098076091247093509507133339633857696538537742837236493923185979521105724860464061173053317829150252242189533067665975392366590482348491198160895420323331156619653223232165514205805827817063967574381177553481746391328255723959356953809502599148505591048561829469716728585610127118203490611969328277691337802406498225788816364595555950903983179473034151452313124073!
 0136111613930895316105171274305844877201217866055892650806416862325863
274
96954841007660771167679916669103531299342453181449874305680213095459707460916019743266566000122017488371015166718302102680101909242764815227069999511645393478562361262390866854869621913087436329238221058224140219391134214413443235902912712000064254014715036376217577490393220458825476251960058846742857536920385638687138938873505754185939220034988740849465381079691251047179387398786665635841139544785520678683073205155548255500434668804172896937580225105430821932628771005364142673416260864106403970965865474766791736917045170776247671564510384081285202056197973835528476043099410336975480972704968119676042180814067482499843965549031540360790162423063907407169371658179473871256936781860635690903722236560106698667896295161779019714721675636546964556583595517307284880156870529986232718898876482448296074849257245203652578421084180417418104169451742009115495724502462559606804164540422275706017275568166017790468719072814552432199348271986555499239409519677794657455615499582572107807646!
 7321279154376236126446780228924851597705193667914537162486404583793566096053165925985647491504029496625016056284330421990650304861380330673936141015436245217714844329768684263390087252392538429103269852857889000238797543598849879026631932712736445279644828356237037892825439839515202597147683304155198763123346949816259560431302113950664747978388293792348588296702094571590860050254908008975578932222713875071944419089775376202575284418716870488132844308541339590976910758671019649779960200106487430240446144986017717664056020820460492469158263620654781041810211424377333721345974407283895920409232320011398300746710190727906330248215165572013272245911648719773563615502204437739383345519178430376847620024935765225127003119183129607331891163115087491671514394211882519512956076729638859787607127586221304700472205576568790219352268618797336505258282561617663203315009485836734719078382336268638079153772818024619075273067819907141863384515144561083732340298366097614502369716883961744647!
 3204193604056215417132052961834344376794054384008879099476135923393145
54942969106840155667364935156289596666993072105074727850459742814840247380094010574732905335221476932609595028218292770985253137329010367205618176435672482418527541555568624080589284787884084507747738848826906014545340749235028352857288725102850163064931572035247785934770716706553465822997336913815576676554102466137458918141968768726869410457160342355335026324350720953909280661347063086023547496058076534894693847987439717400839651795968826362024584195279848423902926475040982500348031522128978479489230260075837557137166939189743775387510452141111987077668629253314824470295453777850101303537120867926284747293713918239568444836745327415418731484715909069379825960128457197132061070855205706228276644844845835716364926746416831731424495660433443663913980301403207712349049305168080617711287951854539937905470376347709648316114943867134959472342364657350943573636682465765622359017026475418670087586930911305377722171363619805357439147931122795591025674941108909091318629407873954185525!
 6939913103050550481420876031484768318466686193569926091940580337570104639250083715397703990522376391696989866702632554002157929052081350517558735942580925568355123926735642673604571043813238915065227632302638660996740481458423725980212302240063144650681086102605340158021874979179692276785479931975851509140794219533144401760883797781755460693756715462781791366992649059301340438039804137639992870037883136130229381823792792467528914601184124973610284954076578314291346319726748426780011273064772891633720488322330089462162016409564400867128073223926420669975721397243136732173091431059301975032468523971077656605998385864398680001625511921951418366374197191262069806019606892654291833689893967647241116180873589245257718525996839403272287914897738445174907786867037870353404286312576994998749262388607126285952574191087971747671042173304375198734192493680241274070249417561368351033022051719106324757608783958027451362825387184114979636480751886343980487622547417226460503048241251913659!
 3550765710532742487088846962726735584037868633430095108647596064870967
52136849088128964006669946376168198721845503461784910173895740129082282510855289721233356296970075990632648369523185426444113787323411016364452412383695681496774387549595194101938960180729623757296300706363028544869792322241868662018381783300330764985504989806038094213273045135138287482012852457645619716638733523764276951941733896958625678531832498062828634882127806241300415774286319779140707690321006122210391617605221588884381839476843253207306931811774984764890566116769668217157539577351198616655476887566064225041468552110370312897042611372314908253542384259982071920794332052650342305771879579748118090813194350858005311648214188081062775463085589754013032207822910091828796660363177929101956472901002029686818828401612506080064737965177945774999495526766140023385048924142547967727678224964003994482001315920656560921573527942749970856066954923222384381370665228923384687010713775146415944106041800164426565103092422025378547129785731481505126244260772643318893379255028873788469!
 2899538813291716960827022244337281908827069419479339914497138587715527938194187626728828609693937732190328576410729050388892720958053208347153519180588620794941225107542385328191202589921788736911887451666443234800867422692586353824722599948116189694849754474859105650991766597814464347190222912762422345849953724343802501294198881724328388156443496224817437612125807820171377177594052015422709542404913570046160022064583388647318980562210803129846457762411257209451685355500174024658506252462524654886618540275864115862854058484108215051766599937717058271583985579370362757031136476303801603394662150259830383267457227869091407793033709425779010605544174764583410311401976091238862512851110580899391830812263597887805394611813860222386738241125888199077874393579102502803781243954979785816774087668515075793607205615245921049892043503847330306718779996274692868745663575767447112407509207093073786386123173023366807141393139536104611922086502477017924523124036851275462587545468715293008!
 2947817974607088659520579596088286678684962199441027716058091629792506
98973435110402904776729912292468765838563556981234544410668439555428070542914442275361781721582211853524679403431778232841481544497406723796344971377664772176818356432792259431334416541954698064204004645927368377957815310174575561134260901395519888543535140299200424922663757195607739088939425465341319070247772529790586342918171022353960880824753627727758422731292423909957719032518406058147863333898055559368402118045030457508374388430737834962866412387283070632634340901022679858160861129047175157385870326784231924026426064680758193815083508165805046131756630956037676786176977905302568959841187586594298741989168055226107495716858393424900968994610556718325683046769929476114646503766810926689032428663588419906377443934431972075756960070776365138084048766533186803569173998772059554947471467416357064706066173775091180063754119961841307960582055704104200343066088763735311405245591111767259401576187834668141617814882282353990046129512282369266398021366274772581658537678436791713092!
 6235311794046971817017162803319182525353147195891876089817065388613160496235160314494896705382674082927135190361061366032497200771337395303820075622995186378298700287585760303575704242424809801517793049021383664769465497378850744881942289414498873338050940124677911271706804900329914040860871122436813318076091829937643004839350792754615320046201630972340056535614347425846218683288551828415536624875683971610033144815477383815442834639434782406373328406632929652555724096593401218738452582280584658911776036890893616145931938284756424922405387084277021708854974056056963619295239900927255351363406489434268509603318385726983549868839244728594430715724762323499116715988162320318002240090974338748586308791500896781885062490303350076798701425275864263251787032198334994948786009185845582236120519545084015527133893015223597254675885797864279929541215106314848898173549208071158700673001688993906093183441177396115314360881664331799579402407699160405199220431090095342074993937673878865259!
 7671324451205899148902370717350802086101359353710342824913926836972250
495
24998755281397171367730072890405955448874267818293744876363177735239345096990460269218194388347212490939360226545059830136517435278138732679763776673205284393699470075381234209123536786266227042828724385497432179397250725033957628798734701667082202224943138796463993814070914485851553117305661612471635319569061584184044433576572173115227436141762630252650179678060603565367330409344407241935312877974856718853180060023378429772451629431530730044383529212494272975673310688089647251111983715286089864812193300943331976561118419041398276663156428742000680901686201135011687821578568317151432775840809952826571138054649200415548032445471180948818736526584666858119539270794636390209954413832615867222764608704119003689167633202829903751351730145049983814318329993079481559867125700976793312117912484257958370769366904799407840468758797265541540957479785525442398382209962172692920544768344708194374937067194532975460987756704610808546149876427762024043454302663836378775527863359557962084337!
 1029083022188930262045028440666975066794166950096017225676763502356524817472851197450770026618101838734014338853849719662127282581095103694919891612155417922828256998965409293519462346448683427301102197965321810516954579539948133589361238262904216099455771358325814305333370226430125273717913112106950721543090588247388498567252708363791399986181021722153219775635227199451134733408911631655075399313114688930226401706711379025502599334603100267976345554207587504475698599850249862510495034464126833396756359290300237052834859367717404608747306515023123360191849971550545808300904824520684847166934443545464709690427273807483359497898086586286446244796519860981854033456592417518720042661067712454059687667921167411215606845549714235750007456225081943588875147268720824977783190091527477939529700514153624551743161886418199417314483522756020493792491592526785326163856094105804325181209718765445179259888485915281795652026383136351275231463355136514456948259024227218412262185764907659861!
 1242169854755115670173322493626240077581614003716380507172537099927457
90792274400424230023825094189009629634109660466974810619421168099659186718587887484050881186944920853144170175543809231914128701323623913106280519747279914291228326008910911097228697606349789252509468647791530515360048427682969303955616284237610110767750356949659549051865533384679084659253914285474541554174451382755671658974059436209582009355244582587477986672891457039327605646336955634108760309176604346585149079315279375225392245078262524925683230069688406441491427216802343226901655446745397996993971182366785738894788242088825770458385780441890397792382117540625277447832547951121038127956155325607490687303112464240741978502958295243627912400058073344822204072571137382814776457559474491125266247655592344705995872352896566303011848124217416305134654028290381941048941474343372538282971100730758959649883644711274562493222363920194976697321340474229743208614487584595257052941060369340616218982462571075550337889790711597837022626987064332327689834956368084644260861062307926450112!
 0922250489429910599890512870053972123900035613001640067817243793777426342719453424706790572350558865628115452579401550435290676463317108891589830763465747760750222206093771463822851930125827058575067147745693869731259601052163001411397577295771144409513409262209556970531797669427459009680092398799102812204264592796935878014052044881715296480011599019940284481170816111963013706823244535349278660600264214398492185095423316932814899377088862355730990508162233021552153955441708149881369666054711019118626497512140501150327297111994856591801982577199139005237817187845197697889293942634322061255992023274804754991738823375315068523149320880311199040312672375583868685503103708476465883854930065450244891611668593592109689706433219556155706340190807299502245532296425036088838450311586792817747443025326927217071839047420678832927544266669140999850645025325710168459960236859985075311261277813121356706069590521452972256308662567816697521903227252028453747066227218182730797281826697206638!
 5839001328013470504402640821505050569645733796637452946200615427840569
04028343136124040521475907683523164317480599500910836632397623878419238150078614524106014556802779424902707933724021043977777134983678858736838426535808719398713343235741997144636196288996567678163610782446466921714937586307060858116036773398629768752431158784325991730828774535569327104347648877205982984797680711565631948047491509999022123383413716465323322998124722799095772002272854420701439411880101953228187336004589622399919562641462195545789954126907714046018861697841861686445857592158347613581095750246502585359521435371040193101368805573722692426061853436372269510931540822009972591082236260355302566823096083200612671754590004056785362742541413935522197263649433071759953030234163984986626925724889848087048590096841495242362690450591418551583719857336149886351629491417267546947460571048612646404591921602359961989153464650266974381988610099181078017671849254097931727283242865680387742924477973169492181846119333050470391619973723469367176973801814771478720281428423050921884!
 6339650964372058271876907124606681660930580893688052819908897708562256645810668199078752630915099983823531748063257156433700842535954868620619929826580708109223460667632523557361551923047791145685169585908942872386216128547968371425335991687680644991439407395389457473853322791932902190435573078792387288436572912978712992740013795801308822788491092884144408941953841957571720196735881134278823506742472581161287753829434503702848497576244232704109412403108880777738501397267526809839891896120331380184824451751885677145995387665482218696075740389627423186512493613154189702980514585832674384187244507584771244016368867946759944349137374807260007315092912124824533347202649303623627371085455484677795332675276948996383077636554550938969108339728817148857424441932532501267245615244456260626877846954874013095553631078850095509101445706410750875712397803194824351064447454522032462254225779866312589455550987140306538005051533446591012328687610001934733102587678650369472478432039417333435!
 2264775484071472186382957847046865128393690639710697570497014917284177
31806889009684979045690410229359063050098203940905270522719514092554734133516004351087412047814903267602337479131116138969385365208756570714483424656365790376811935277531011381450170645359132976738524812367418675467874723149416468463448575079150888504019516058300904846336468790278671298324244029192980633878539380208505074600214402376074431149886949040880396922063209258129335981700051903705060010674016987740450870772599687302804737879478081952234383310014626525119075926254816777929935928900489303534910963351054653157037427098184086786175718990544153356084227860125176468996588648584350954355870271839631332850178679286119120217594891414295706590660577083983470394849166255670293573027019019178418764908723523550139706907437637070272325725964389200234813530610527910559613801574267013084065164604073021891180268756662327997663379126618146657715345985016686105788862376199437521562336904328136657191109331488439124279304009243501496682186688439246770743776728527433842962164826216614056!
 7897999255780527436599538328198186934308173366442306430881497831635319102458331130235746882244111868189887311409231392152371721894896772284699398127983292400905748422812078174068247382320057497665641928049657496674686328670534579345522593547195721399138431952656144471559419653402376588333554591715055513136881500027740202967237091112504519458897321294716156126288436057568578083434197771588713621092637905100798715314006263526400313342497892401851338813028260118045754343841974561447129972570047936642627604367389003555090995210216897456231642850379162287895895540741627619666176803649009790739317484902727695408934975070414044493137616444149887530325528356722970577235234915087336519563563103388232091229662110366070680187099623155215762017739444073011903712468095142423724742958537488558589685681881092396332229031906336063522067280408615817600220753200080997604549044325437649852602641265602986834867711459194730704470646323958795334367909909964231429541918418036595387910929327082784!
 1366698804827336626567613598386911506725900893630121383711060112384113
865
16195544221867846903639221637700303953656151393412975746558464225687887830046054481060923519130855883169084346068080440340366062976255424660145893296614558504440055393465651637220059621770957024718636959505446021886096168186065622576522682568221529784981077909375165449647404413928388103766219464949956600112280917496358286475522306568742457662886317655838830384115373739814814285582612375674788305829590013126968635954168649379476987806467546737797754861772097627033452529695775075463674931980969229455573582773448471254118826053759764821394228296203027755468614998456611054665493713105375597496029643265283728918111361474762386025358719567510140914937093123074426540043085845713232735996388927326454770296412025849208179686231553832496233128687131190682554497603167994294394055585970601893125290426170685138232393167600753472046848432387579274315438879287469481575873861794634012077489076145748720379172285793199430912980756229438760258518395843261841207698678925403851368927170140536759!
 3597810424773304854312923155751562967355777962044479902435589108633094140183374410711824766983330243256728624752497267581699130333526333424669049947709101872908137865484442190197364981342492840956394075952895865581507395851896535215924745088937898325873867805128179515643378884983931552354026809754521883644714010808947249744253756265756058207424429711937122651304387336902947524312335458511593629053926220724085795186844422473119372279293112456797711665775203249713624695354896490254043143602402558917067432615163168784885858946965639089826944893968484453073029948594166465819680943921668201215996111129654708170469709468624385137390168699557951985036591697662307840186071666305419986900441224357417867234082416850599572456098404148760659772561948979692073210154559509173844284107720363103490428298756079717321921690000915764869281156796190041556693062064953883512182877843974910631436160291243817642767299181187889103190893211284364544086317702869954306891720946981413880382838945344404!
 2817758945627974799641246591429563447283812178258421487455800856751387
23057346640170816103869108570392464724584565890513771552912053702111174006982370540334593254139978076644419075238445128146073650597483890280921840868423014500983306928747967830004870918270403770079593594817874142237678977281723466434430810108473863717234535942789238288172952869820427806333202219023852646116866331145075040417147665521774833049146651189941057312761489617194433144909822685096607668662650828693999862430132566621938074740603119242830739023853953604667381285034373778614911935619593239996958055830399457598348202700485742101612253153663641369446360654051592589224995075670211123830235033819449145045746581464951325286077688953231033947347737083018673840022768007539242511189625110957264830634473479956810363187400073944014593665326405323533841114217772139217702451444744559353099410453326217562522548310535141154568444822696201060210456648607700488506696088591498141758314574483573574058679503598798243666347001912878608723808601206463509010242139809772227438945220878136140!
 9796158903623228309083597480483660215238321837790911378352515349617265399806367331685748218505450393872681284362628065680655267817552790196211020099283914666838496392238076738830907330556091367750194871724931733278567622177441233218786556726721241066888886763821525342491550537071395599699716301864005340218553360309934411031924358931645523744037429422279132364957868632692704206832496914596702247564029091392996847262402418040796793191942794395756246943646979891704744902494582160784323594991285583568311563760181255674070110623902594747038561516858928119970899603348225603532099719155042908165864647808091156119963511116674817423575591179274269088504729542367492786491247881416065145466714557101188446659086187988596640972758313823230346808093357794399464249624132097691180166473548786428910924588539162988813964945759557624518453065133757712781648570790677812357981002084544696043481451712883415590883246835506237327912093721212135183665831840656080647792234047839878013761277154185833!
 6550278789218598249549266967349371507666594965414569331739952171914870
17977896701455008934043577139942019326506875362119867450034619232268680196001615553315061027882828328598498194999845776813454078465305423725562372551123202687443862337136954572963971532283273391349187648720425828728864261986337058332811830083620021529606506314902363762493920373710936597425242758010726589835614487515976184517418903394343641037781518217895675177256938567463505354925374623414856757325641606080574082283476758136953803489119549417063673878236186146030071762900076291979783486545762217648297350970577681192673178239917863732910804296728256219364800283368819907593988648577754413208276258942107981482558175904329881938916147081721576285817554769551571317001361164649545945217594211546098359522253786049059056060987607203055465307898313271911583818307176566931726958090019707831379973259590314560532360460574860613899945918742471130455054706601724910475130779885660237675463774931657143740614017218034387014456835626988340206743289774399979121710175206692140647753906453712909!
 0059313703490542943538240856192848812231273701503515273550005431335928765923867119212494960846463896515292089774381487502864410997521133090497814134591614728576441733492940732524681422295272625529177289749358951756468548138744191084639852835986940698988973983041246300656178452020430120215927627139261805704216494776315398119083842439244218529046501799434029922216499669649387977027056173877791010671949804395927811905314846200741559674739965084638210084641103488757394671637882458298480390843758942405800771522895924079117046486544905630714597283787223716928768910084506568850760696913029213545695459529965205006488742106098421059632872871105057502038221168738291226843369318053879170727685829876418141723838663215493611717625344958023101520133773990038781741806655382478028651377798939944769058077824257815396789114268267541713347500844761842700083368871020345920367989058219778028705586762379557490658740577016294473584524574686695320581800902640996890001952377338995006506522639821415!
 1665385308361147341530294604052544245878233892096606418908903648537082
25693200320842239703574282836850466719825626847722877437398611401098279947672824766990992898767949547556302950701763974155613923394571093431678272511712205786730828346881141093267449264497387802054187768986498424780771445820526731195569463566455753491340726485574077823754842596357267261986829523210730313162568766537890968459497824591025232792917084497159344242158034611282676189389770534483954000961739759127486274370349762202492069713797205075712140582855384615723475137748112894339804382132647165822040531524318438051420585523777412124596486454899806473508424464458894209798028722772743386454433126916834456116265378229144872541696877443908087958735702182826215443675722117518547701324483507127341340972662418002665029340611180820425198402815473590342998791976250058421025298266456373140085925854699512896319851753234918398313337938103729962330342326438331489136078655540240795792564209553037526802119257999976571462165870326858025193210541871938319839028928526445333953042914152327405!
 6851354993803501866248156591086966231752447769090807776750034260965866470804509492394960145031718837916776596538176438739152104049867941259947153517917256310132311285409547988355435979663938808442659980658295680736168080677571703028915800471109869777724060987764831870663164966199750479888284003867899873703735095167495764987250350412496436019880314173598633283581055471895435650665360665341626666110034044303313116636459152438121335778293735077343056952365317427946209911942666191432143551455028238711725564096677281158936695533142369250681885343673543730635675617678601055941305755880663974450413052109315386531337342205136874726987904948034746392732888958766645295114250845562599483331704129840572346961430889146464181201536467470275108852387707556892642821382431764144382906088643809546216001334359769992147229673713208386144190555915771129494810667875629853149473632435710050705886742714268575247565506019684803668929410218221965225500166846669558828397905638852821112442936264195058!
 9763408734285997569660194531564917868271372578585613613768058608372685
722
47251396874663332415189071689269512824109382072246628610068578400860268236496022229069793861167853089169461061052506274547175267924720976493604570583967461429060294784290842411410850978890801061923852936544375375758301258964939820474527000939371513774909948418819185810966344304390795053171526639361559073043415046811069012394285872701011912911204830233104447948871984103486955763890914806202717031106565351363262778239470471958936941387607543310397426154357610391773124973040284396855178504177489060799974810120808078761709292369834475589144597157295630544980503371365863126566644639273867248865887529327526453029301498034375452878724604556877961734518507909431657640297175118041088119680501855625738763375771742297122252608135236972838127253296209096915371772246001011639336556923756002254039307028590512836006065991050975227017306481070725764677337258224085478336694419278427617445007463542211817735950321904294057868301920728710298060895870462075891510535890539470637957482996193845527!
 3467192662960020615311081516388348137191849261181052546128079628710330402720959649104677328632665071276543381309017431407355987453127747678952912437860584619809657998417742527510472105764463275898366547378980816416007853660710008408566444589476211457712731634549812118247013341826622701007326826346101883193714050877140607697807274283389167128446095271052905403797779308107292005829404253727842521121981888058357783062054731729195876433710814252824116450329962112556193553246570707974859539818744768815309510993022800712331904396400622859107477399271758960421919998022397950370002243126549844007649487232519922027304235511793491854068707218943745713608668173121334444543732426438973834519278005830227175314379734872272902864424279342356997242849847977616560143324038861722554907226186053659952669773419813509668369685940026642098325832197279969409968015108429452290029705078203601011229988665302555233110110126924237824158835916395883970163564545394036147496870402726168164337479593745012!
 7510656501148227234356387015231483516560543551047809050937579793424436
48404081330782761101774374146180660525162736900639773869629487952439986685005178331290640437343343279459028348446767740979805913206208045304146658385350918513280555275994701521087701746169881938544160523463387219293691880061003446618055313667309742350567939164471684088792465969166290034254924307458570777128934509962389625635835817896551468168955634630052815732171322992830906985879463824060528491667449965416524130482421188463125696109308830364899148280330447101099339518925090138748944345733313103939511980768735673098911230945598380048617783784420286818674162678116611805642186728752513493549715996275928821004652888212568050978544991389691102210378409164290442629845547230880398350631217768441831329548605068203748790971152157585549255608088118835076056142948760796081688077641619711999372527798244321693779765387814846458649071125035414134335229635190528456859223840391381510832260619464475537643620640050569854100405689142551834469151479434223208928056094889084923195349898057988311!
 3168770003314115659156692510261882766687686439999902423538380345602662095763199523316840994112714472333974298999439679042272180549621955494944926930531047332562443902827105281826410834912453013945385525942404754174001332086593607624050025536766103675635332755368700931013904669837572334725539084714399839649178342418090707134245310578856231665634949169465577781699270374074068835537463196013403191254110742318390726664932911645139646362499633565100620792776500908196857616544800205448265657230671475772066979629070611020683220887611501232147432640043341829017191094849715959792610152882867020345608356931171786891366680406303664137015688454538363546624325102293342750529640746655107474173141377383438955997748057941951764433824290136655815906018273081780058247096240428214746161025821952145115487110086856577398995940055000214607690275025766958911701836450784238385887985247329940036113932561670501040777930466517031635190551953669250743207624490820194878552728357127939009442748579161019!
 1335590564507164571062794987341990955615793827896996321235315150881270
21035675033883166257676484179112822682563959001420036664300201771455541161715762516777973883402792418996264665252508390600104792923458532092950693775366163364371646942479978312379951460406943796686448388278779291872491133048142487151784376212280938651539235356122531356408312637276179554923368713540265085654472405379089190886069443324215082363779391033762252773547527846658277677483567942633208601234924751090654073051142264500813238744424155345149223990152307492591357961029793486075540011775965623559968557546518221889068180915648366184950020448538215259397347837249077884431020446758092618477218271385146049795708669477618957648152124759915883647243853112608997734196161555480536829378317469585569150794311183675029686997702212928115454807976993315379518330017322715156662493163864338831064993506467180832757848790409108697440103474085324109253467338804452176599696547194620296332030506637552425204647663235379068221799164395255943588705022611538208497505494000535310732919743349628725!
 4427116156405462477245577670407493074994106635877126927222370450685334814918469304447237696095436003092916223615572449661234879464146363504765656289720045041143344437863594390518894780655452294238789852127153385500792666974256593915845389684031297917315224181261187940130554345469638648486370836848747751516863393945806498547646583182272034954840837989350031469512112899839924599753225767888538988426497596518678883401514704505160815205405158621162638158587839483248636736125157894997551156542389618993699923354786707856413075285646001508707002653843948375981303838642603903577749851705397315499243975953099869093843093438954800041126111351694541771119729095816210488230292680648765015399219532991648834902694097971829009983696668071187057069551372517537249772579249468634634415816384994341271794512860418143324304552581183910670008296979219549389051403237603962062103331472437265069628607326263919677204017368973490882546592417699669385913290020368089818457789670419174971492710704182904!
 0000969820421756534436340063160757565800568905292656708635871068450287
35374027771967736981929757094073536367624722645569883936013603513790848767170435256021793434339141557845415735829328884652629841935769229218244099820798768196382338042566329852598513250650810441565339408412152759350535482807786854822934695157506302502172267120236579500681165454594882866428784768985830688562938681570763933631188503257854449649347855430727121890956787838833055542501663995194084699039155505224544549345705453652386279791185227445603172901105857169197816957808695087565195590939434118178553351871412093897992963734063368692681138955118249743399612407525857874760176612867900854257703624010403615401936932140762749444373648415496029729542608017678565804100553205798282686278291040325433019442247660231941267254939352342745690689725171856538847562117519745292231968667732090099303394505615712618567167129047381245193413166776787279862480471897772076480419452977549718165889559087733401630138987114650950695540326481695236323361549561833956059469593330062828756226357768381005!
 1265147442161102408254937850549651183572080922650410064974604252024186890316027363165097954436527105175657443411241283724349531023859403794077419910125247588961217669702874388422254885877036020133586689831545946344184052028908155961848163073952109579425022604775143849066341637856545455693618510797154839836872740562323301829021449220966098535990000800013014147048275234890529597393568024555421796347704444872764515163599961375663451483395527559759540935852177900862868292195991136189237583370517761715739715191479697817438074930198845818431328803862949237584783510317337000036429668336208003382982723971958098415364162497310596011328046593440916518862223224442080486042507942182006972436424715206816446522737955077723080425785614155650073990822027015283814038627816038494709162580411480830406720317403924763645060543465624065896558369050723344436071810159888042522134705342298935493205783734093934523570461372848116791296563216293409414171135620835701495750098792649414263148151213723686!
 2713780011788678263422204218057227321689152885154941577318484278112881
442
13058922866530597070546374203609243861757912319731671447087740005178062567392239651393284439010928622647590030713319236354645619346633654606904602159813026170330106059048874200619578438595868887658121375249965941321889256590215956445145285397956159554902807189421143951604604457770220617013235057016182347068681756227161740871605573590798578372240193194662314925537086711969212593692976174021034914334313173480630863608698830246294131559156666836061074093037813003369788967202292634904572155907539760230255401670561934372789388504124977652630791324568455805742901346150881023011774286854270860655814422359386667446000284926811950295531833030406312732508326225567788832192606807390408813300814414372219015345276256934341328555020842412671566240575863038037165982179914139883262360339078595935024414649759385117503862639429121930146908789530138732973611852083065733779274163380906792910433988532813033891933999593057726222839575755124048594233252289623850944918838484293274341625714511659570!
 9462605563753368789684523903019581365423905898755555153572628517783781778211824972509942461864063247065176131338420739432284831263144258546034556567635680778412533877484942247337945710901674675520292122171191404735030101010571320390600212320047839919714014304986646612230926978098516017899031595543892828792543479939094068250817693323156922152307303124180765389793801927596258528523446650121809833521626024610411566515054627126117352948314592557320625191687492639374222305992451792550638093048659749561403976586849121214898843416006937430811886664836513167229363897113318192317322609188963236233997861211427156495807069255224058861850830789434218396152227655162266190545782876915181767142565733853766026901605505960842053926814926778325158732418426245082144853385161222016492948611528285343944865108647757195538832182506012184096634095870242032551806147313669033256413728200568010736289120530022901989703131110585885920963751857280074443919780723371038856439964052253881996577080852785247!
 8000632799045543967055107183602075514995206085377850813074187303084597
60848263910484967220998049622374185806174877534413953507586713477557006095799105329499565763869721164004066127670337528874574346706656906394775960306831085708253224808056422955592479540662379024346322847377982721970073319058058317073445317809650242431110496112567592290151566104391580551080792452431667179195364802002873024490320501041026751012594827092505516530525937469987118855976414713009794497245463432520118908559534150637360848194821109266962329926025890080940178940667581035691667069878948991068404095746524837810266844385691388343407292554949875671584779078667351091001287809619843501041513690863968999483389651228238419142663914532348496727975823740237071210547141725902450659465838362706801814738510520989755512795601478906423475383368046081277737713618246160977738187077284195980189334298773076658697354986665962759944018647932301822676382472457742556513709568030511653225463238132033584140376630997231486822362264041895851780674012912599947908314874119591304454057378200030044!
 5613065285450199874972547088222477692022826088396862243553292315258325435012756986875414666129412071702056771967706418497959397907305077794813012166597772640348384809393822762422308126856355707408597144237260233050453324828910343568106035817994775675807784025171899605602082142313020034282040219168641765247743481890567182149397369643556527751180527372436727097083235057775675157711519143386840046768164355482370299956296663730542115496633313523180267711785587664082620054122656919239041538227893699788067339838375834324798662646207787111885382521641677599380182202322293053463972930247832481968042441125222947842412672010522705420125002416520810544621925366614321943232954128807631495524591590880230773688345843977888966560639732343227018975452055573105517983062503401054074551959388407117868460914942821942538028804727934228869124430420780155980304344001744435237457129428823503397651353976715278202370815361260980871540882608964111140865902588632909321379705992927090555961807648586921!
 4312106444604282484376717310545236732383211646324149028550747501661216
42378120669538544778494629560128901770940898108428228861989244463472679334942285382438401101128422766576900176038225144044722795683968185622667799873365875589534091837831070353119354058100268103238635377947128843741563986795006677183799641144416696759259236682544560482419577633657271339175986636953507599500145546821423682883955777866515158982420111190928879121528584683938459131584478316829596322627895566929972101464511941219469022408754818285835959183283156040226559759002484304104685291305096741410988924945754632402284212963024947425057003888442208696104958674344156163902117840246696946873238769016338405409851940947748880234399721336599859896147446357136668762444940659629110093852410327305029713149697120847364955773924601375645775161629213732922008813918256824678296042286006033389862473616673030622993454342431712175150330725479304450744780504555471324650891076649185792532475435716920132062403514729147337397592061359625116010445666966299891648057454085078874534369471459474545!
 7906935965893532814301285497650904438298414593356674091655487881946903138349778134399300022992877523611186607893918206539449539940105281812574855688429896666874883334364358157492116850716097676949307396121486909677177335773802655526819495309666716393689287250200389717107775361751108277222256248745591071425080804435924729412097365016576249119835787180554961928434480402806968572895447687786482392963525266976887464490034367500888833367042585690792908621922953917994331010432419067732809790355818101867902034834440473202509091716364229014528648859772625593014902813836285404368275759216387095987748577336769600707727949921640509277219887397211205579966564768267261051368785918412915596441969633448096389461078738471813053915534266017214847268401110647592790868086933777840063423311430503911853097301120846184540817371152643212472737349624793284763282166332788890886069907570153170026236670259702236863537894589748089211806421123198238583711033875164580293930779320818664116130533709124023!
 3309610299047454027116968579720835210163436807332973719749961987818788
46552196033741919963619882126582350939310648047670998346487685784538531066798942351556228602156240442382929349787387696668051687764735577864069593096560568625240751746864292216475640463314234516472769041034797519219545680231749468784188574508474098313911015664188905780540991232788377327281246399058329718054640458554538220260425564353445738713787751852721486530938264883345932132561948813736331920852929147745813034105173423208251513183967988186943563109304658435595054520709372051243198821400072527773453532493243472233875907631938873540165682252355047893198253323011533384865750748305957187953820513354931209580860587195429222835760880745660317467481864737144433149437864562787375013467993532842634890153763217861927492832781048341315335425446491555759592338570329318526286665117916679887489150369788525442064120563164711020344840828606099255588522866681489005432021345923255330311527343667145285029296909401090399667545886405510384877955296935934440344537975947135687168620811643940124!
 2237516381717738427435128757939576157360608278495200955705066779405094752226044959994007564297214410348046204845885925293565717881777739721663732914035872728487461466133533274090663507653224192164433599976126146534635891842441614881485968001341743161445651041402580790012536981104496235498083340633978913459078881282036900738589192810582411846114309052209838210424328388156552259836605533717959536909687900008157880770100290476914416050789053893880929360129631890641152527344920900506208113890492691674165736255792255132858522214221548727974494084178075059477929747351034661543649771057560986240941550989241258806661173005219475562183409474346637181227265879137017800068602427046859529926488463106766967754346825326291736143398685241031649050657165191270861611187632695380019648483504340044380652395796474048383402023544488100941816945967848960652773924239663026774273106075245043975065320764688308081499715805536566775810063512391088370122734709572587918635808621170248941963563661408010!
 8718209410552068934777857954848935842620330901884401269744320705200300
125
19604780842074746557525688326729185148641145266933588382970634404283985966671964212525192833375037089107943332468860226302433365226389828656052199594499215610259885280295593964071340026615834583946397276160799852326097934215016183536375542124381267896108520729948753933305574974150680823479551833413322872682522338513241942707309759264072494082735884091316794284743130485165447775196067960214797385443370557059534713035482515142586606687312033090949511228107651467502521264619413600383713233995276789080784065780087710286045585172065720857194126185616356042823668549841107214580261071532163070972675930412886687210438045187164077690388611541746738807896285876257245281549036548263467521639691155571400312564493970365447349382033967305031926793951464350705968913130093238268088845094106068232371481993790561370721276885648294849519811007318784016660565660554457767190038573486383544746698533882525190553869300974970572695307813404999590775037946895778269004422651057276637974154520948508660!
 3895976854382647964018501895784154000697118593246998004058714499342131399665494398905585795110849962661605335771847971796822031899846843427879045639194017241270220588879006325430207895259213828823674829624242135111007621918725860360718834066435034917295869309746631058472018397189272575006114368538028589714726732340896728007338801170798112670234912580935399199623071174214611027534381732304306022213637139510986282279901035076449342598237109430233596856784217142145427267546241166408646169520749157208378915727552455596936731460691126070603837263877735676713130249645171169164894964753710117008386327997359470716599632684631796818868132326581381226228814861924945561632221119287384878624668220051865949910654421749756680736880647427299085891922740193139742310215552974602278653489832450713852866825942355508585802362418297863967183140669366276872340528128033357575860358876830163778521715971468406770923864438754831468516635084109918283446749890272772555084191587235651632961215298356217!
 2551506221579411035970089378970560339935039747081984111459123704268870
95286933577183052034838410949357057599996015869539836652007755037365304138353696427767716580030808507701442953484136668521606219844053834914320966180110290997153160555519249733743122461164414794450560826799378098356803409191286656345829613362109666723439918427135408692443452924413571785445422124033814377053139679541907825050956024919627460864743984415045140182590390051653539227446215439301557188373476545439602883808806561831922800667844073503249528282380299519718190546656734367500532076525413327405183659317736758230745973517428672006972554917184051252404577974198177166258209793210261947842149665886170378109187050121825615889065126347377310931650880224827690434503853910775419849862018807777318662967195339560175536413931626133395490699494309908182978993532518830384013543308609756129771564448495549520387380648359880644366946640366861753610031825422425609078179064849054290319227936594541714473594204773507203660004082824216076247320443060139762539330554210613270323421530574230286!
 5740467704541397631963670417258575969486615956355740025676792657889889136022288836905148864041981840932684297326106531716516460173952836910931894965226543487932807047894574271956638665580492942497175942437897854973474033670195717933231175718071812621825104123012869396889584065742988188270427689467699280108629237513395390949153364965392939118228584093734629352024346332678004694838112922296547333860699790986203268285829813896529301292578843357217431754841382322947724681813205641206345466921175559335347614483147513195969208121393678550939850290449266914138440846103782900338663422070061392427433256707533089694702575012303329418466538978932001645720338317619843096879385152574420187602045053347390272506534721590036295672922093887402870664606424613119082466260020741225692012438564710043826608878437175501034629931668766854716115735160208254189575467352120847748621973372004551204601627020360314270591371343467568307881674884912604389087939380005104966428557544527307361950228598253395!
 0225520069120989198900327348245096476857836621855264768500244472609459
00169439776850705475131804858483520776892188989728100496111152686750985259524174004705080604888070488483278324831097663132825401350173598311611965161142682453349434460858261260932882434459782393312006050914191574087648177567401201101657740165219069138598454779939790229277852332487125295182656238298515756994705424158576760684120769250425768549994920714758335413038597599065547100157647117465189958011154855514164736746246997389150070935516808903629676563221089630281110017403350697892160636003110072911869900383757816425057991834301450152481415735681800124220473886435839372353428127954646755208085620596936298416816791481151857228821340170390975156278836778993883263864465282784166364439840835168646438004886343274879725980349824103623890738063010591127237542004662255747980709505382826106872954297680114318547161831028846461034574391426609043516568970366626679590696065128572612656193543260958269080748668925784995286944815588376672725980039066623551242637057155291454990159810778130300!
 7383270358195098172811018732415654833689612407801742326635585293523096282515967296365066791300167268893530259802434560524946625600673996559775964185802235319027951442762123200362670189592399603569337111470300423977136518671860319355322218128649563504796582692390613920850184572048884965445983255460898940930893643719872652492074811522927605294005416294087625292266642630178246773366141097780398222236607938190855801262263917134379662986761003131377344319203255929703494142318986262787402685284548883374982474981014391215316918636284789541194952847720856087837846133613947558468835935386415519468942932505870483134128800242505834717947397659424496594137281632806549296780002409173945000095771772160116270470704183871575785594856476028954699166838647364677021952032293877795526277662274496786389383076757416805624072472060062296536653890381248578892097906696655223282859642053719839048301276897662488432957064052575370161949578867441982608041089131237251177449897571190458477402655125970138!
 7803070349147937363623198507532004516193362494424624208150945037273306
38627194195583665237355781116359861820948578252841214153382836048319226185779635960457486977539282995087954828134753166575630387647244895044423188649933362347709695908654843695096370151174045461172194153672955708617971892430276627502647978998170999667741276908030394788116353845702702008470455604436212579716069672440335712832554471291422271957664743190288919062394903054166778828700392812205911099357677256255760463347226027519824839928553751095989217657761926400510553737138534520931986764804154390382233378269130588061663717603088899205507821440980805571652671149214678449203281669024781500710259967910944421156164523892070629425514557328595223559430304567299586697818894014228918440461977440257915090946832102207714035405890410084726395078931429347767180276550009724590428779177935211017163831338092222512283956918342889570338397740202668169241207674630277051128398432270407463336391324150094986304097080094948745492075769688405511525652140736206166297318769180162794770039880724371770!
 0827126878969016894727437788205785723813086114718542941320741301038350302768279780610335257389280174214793004850389216884430199074606901698761126231411702900410884531307919875866841507926112026902549444800735303382745847402799839277565615844208250550923795673423219740756987210952298179140879201723380068377193085653785962340269141395545065115034656208216890274392878078315346131821948199598014765822498509461644647444574156006126848623804721655267324234659894814202317361480903951922967860433611697024537771840701972311580471862027739151984675079558028974133894536141587438514868823489807142500281312354523959865056941892853542601572614560650320007702910678411680009990221220271743677788698326567538518497642240803413653624251317776623548487385174460128645556645561710550012867699720541784762667765238932649428435397367055976828368754039529589851077827985826945865633446785478612013618487469899055806386433226591078192988517050186954009100577590503005066461596624345948070450389876673837!
 9821560166916926753560800278205210796231380512118877847300716802782828
325
50785564230064446597680785476305039739544505243407389639455232723023666741071383323934664896557685537660709141681437151736825085625729314534888684301641892498315860384904083967582035816210364429470800507528201894527860029001614983373149693344155656862425644897147683887712404497551089262517397838375225123016537555113008994567690898112342778013467571327836259073395703545031246819322721711649168005486962720989755030785966043113001722553255018013154405799988553148688771771205523561144207051671423628300887788799693867685342298369197442809856112233518089020788756184482941388396965253526587090053071857283848850188040746609277887880294982880831748468832778941567806338639048788720737886524144414501329713621587642461410994460277511918875960814163819597348621725262188178481744358304258025936552208835847473817411265494983277639118453855877047683090813739270475941830637616192800903713562505022832620599413494280140802373161426015075188166463838828507049771680221078756356817023898471969316!
 3940017717587023355863250266872077440783996271976397774468121238347871221107296736233427849458892604422956104389809973058941152116188913235515833746541481274768904181271855546125254457915507523816241571676173198041058215954142066332971706771468994785622388636495310536701051097447013146225984365743728027806413838418984638854647948003409761754621424120462971227535923432406901998188947742026328996514998806858924665791319343450585037821466330592307250574483498523604108903600789206525238977956647936391234293267613287689135809188548248137633760634128057945181359169903329279621194390408649810594357231149124146538915361562526338480217528859001271855655962546140496508918830184638954841821533409571325466051810517635345287039896213509579608940845304565656501465542951250155763089485167797724693554575394934045525701714271544400706486711597036151299879544348629213472563051558786783819432480356919751868670655817952382986226116635723479664799847173463740306504605884063059423600978479086677!
 1005046653831336874289820831935286614733468257668950698766220015254772
20500723265840996723232648525232093386240639070171127382225744122736030350429614729988201262524172651131510563563343956103045432669349957522561660652597102862202091298215894508531266763693515992443351798010125105302238847513733745483760924241605242017765481013359830052551934036839082162134726697341456266789753080350825349333476091088834492367010880111925050093270653824254288094785670910698281054484753691344996738516543496559691971109068914277725156726943392543976125419272473287841657182884941804001781553513146095337611475903007657073380974787295140493303521680594987252031506871979827142117639141883695043131472433109988309959012535071000169001296346881037641652002235099990331047811856065042118714644534132341770850135216494146579537488197333513776671948568008673883937756186120785845885028872319354115946646851625733564619117961396747207234625558445893548103079776795115891891442698702601619231455083744982101267861381221542749771510816051226907242862459560286813318401669549808224!
 6780858063783875574393781488538091627670184155799005121878632244457266296664055514698542228479163133904856177448507637558720422508109686600072422125519413902352976817168758146568668835928004380099989213256973639810850220300933622743096847039578395935782963402957484101866938929540376330840458862831943934502859076791578733719680847320131957902798551418194413799272016580797051678376240165088053193226586337929562273764902433763140688614912924854599093630142015216919246588923452680875243198500948771333564617158963858163445867940093109739413566735872446943074375581552249182266351187999132460879279766229826909777519575492020715601190884680607187900975497478332231697929349287582182465912162734816834491481577029874058063484866802202378945418190291912010984568423581377112168106425201112571360923333311915778152786498129224593935388951399755402411429935019096790452494415552341926470006813493455852758999310810957602102634546144314973094549310644350541632460098047088816435189762718658284!
 4452042940768530454730559385126072963441355006025775071490605581408121
20287241638325729644153344178465829705866355667403062708030070536723059064983695264515031286408288654405308243557602893188089800526591442523298717104176767755845898813610716677521114054970337111902872572727884786840069553135127637681428664683158515275507300795379749995958623080798763366078118743609644738218112273106745378307110051268585251208953287975549209712338792414716224186329096630441981546985790289440742690942745365310334463770170676860635595964805940155845967758227715358271595058463204919680524497278125539172167751838719801485090109929216203156030610666038053106925684695374990694418114995980596610045395478589461936133154998962732985927492877825212348447936264440875742956858446784150239610675028786211216217244883351083215565072592123619245137172315695790838662481320627330380398186742618601388330614904582239727659498178731208553776160331465456415177928786859590550709269584528803997392908213511049792470361494443093922773978518192972819250302993638955821594574904326993410!
 0429766363970465599158095520699720593386160866642849585922672739623070667528456238290845515054383851002014209379205206390449053228223397856915758668573750979474429065530785009555813096942505778720531044371827844232780180599445032002185808938544929170202610483108371313844293044583409963485517714110719470109023067443200575285536193217940065116788446931828636794443145080658050186065447073362759624528356902207859413334936418081832636585235496971578514910809866779949630516257473094761041182138965093741920499919830180830654970782988683480002982397071384863061981277563833585502630258113651347324660414063821496941308310080641629822123368943573376155661021797936165736092170352955265637767703428638982609027479668159354994357733523838618745540975360902368096685289717492155860576260948625411417771972438318766432958383191851365570073232141659213259333834565795132740190645612248364085118249099270149322381773970447941711105710697703389415274812689630484822690266667591611188821097819129961!
 4326227540765096697193743159271263599531669334303438771074257616231109
25757975032022982949359106393515741441086894731918298407955641087753397301302794166716736943437279335322040000264369366149058801260737861715235319296088094892987992662601293907041196436148689960577771802267234624716197530560941695962279215901879873970116410730859465395543646424110109676106573191644418007273858828606773386575695058254237879773827804983561514304167617265914499335093320578661999171709026122017250860559397578488716273628323927055650599203164413883011430679495881682859450229662190697971861070536251052919547499650873467087904635013238774517775389407185723709373285549954574518500572628689795290712514429714679256744594306543042213128197574188480274457397427698129250571593689924425407133398984928113927647143283399741634143792662300788237913404882774660117563255052393369971038187092080577077000473535052647122775539001156746005742617309510271550287298961169140340737266130712932316873922999134371472422824112643705496220725780943461497902645828593783300457633776407271150!
 6107067692948625543166673229990851480849605006689848034868009291556641140070078752409490387620032639382020973976420653619052136755803738176704008690947003692821806232158544413348816570617978833042105332815100097986317559224050538776706949633355505761087195018838589714132845691164432522828126689090232871727782734291649584189682193529345539756377933111582598624154707006970088511414440675445902775004108728874691787100357777770384677640128304577831927526296649630107754166365203741085580317747077988252126226284821559990608848771335594114284713493785260561856845918115154726087855032668174149463983991742851182825280903982128071080690104884321819590381300532755901235724267991533862253880452766888220286181461517271458132862536621838964726139039173215383943918781264729804681731298351255981859925624389678395845249929333907728167572414297488404982213372089282677622878104359647774185035361961023911165060952090788999198242740890190600697850448600105703005807069193629652469853413183254889!
 8273525742950811959746872588437871674449331411689376364852306864935238
296
83345454779463915128602168772888953107491399643426666447649117151491406875220873931534165147007773461336020498138708585009163565036158958297780039047970295518165912905274439794409099580930707496539296538088148634244629764337319146254738707061266521367707686368958693754906693779813025769419970735195534759941881119467615711841615976612221967737078331528426313962107152366204700693129912115731160588733659805078094733841701451481676723563076633483042680103260301853305841860177483607749310528056020936702410393713135508310622515726694143660578113327912107992423374501958866391944594470106221109926406641974034993547313380470907820398876207984099934333047279922339957686240101075573095568958200373180109853697030986727227271095973052789381188541326552314560342426427412714064612120742995677088333783070129303456573608542003209968710570651111688118591167441381814128768483405805519830421976496873277608816694168781367241018838776580375122824671942927652566175459760014171701440716510207330923!
 7728441243259744171440445705144057358481462264296156968238668730176074735007632108564639371929292252877442841316705652054533158456766424846945090564493527930838356905309246693964022507634503998182944631508442568549951400278632272535263860401791254392077359400147945367482792237985953540006848795255088458603418833805815222063876591382857874786582463162392878410835015686760244323692757580792975507492786129992716776536755214043597177899317901056716650516831976150849498513316417068930362423605340723929787415795580779403886558344785428682540524775117061041608804687929909358429932167901401283593300434820308316254663661075933274282028992530061484459086305317381517658959685941930393580194899894091481514371829600003477903935682741424952570292076146640549601259877617825326959747642551507784647980578478529895225590870116778607558930090763181913589452066465989166449535452211479251177238197837969428146777078795205211280141810632076972495564401817502367279181162996998929518077616228784835!
 0300399106999503242812838815251952830386259731726366524240037296515289
69505162518785725905019236814947704221268496383005191027916607403970235443938598549107461155839282671564180380724252723450440297774668274897523244576693030955589289757723747201518238136973063641650296813520993695971291714884467079915918027478791052574821445739424763400441329762889430575052815223522153728099766585750487264470947488409225949657015613337781819168656066993200300330124104141310493330533459381866020745142794730408821082258799835206858311925409100458007635189891304089784395855924156011819837225336186092767276595839921482429287005311395348825468301550994321054657006864384721658883181295910452144237585799996439893520068066418208236310569819963718215473845960204404902819523129778526630805867694754011293779686211292955598650445357145965057225378352573803344948870413957529287549608480834998337387427110368091282161383471079882265006728138569872513030680881933166703841111278458925335017605069352918799044190080359728868223363627199636666170888267024347789571850930269423712!
 3481704432226685875302800207110655431634879570671889284476476436819645653438856987682319437269035153421555832375007622990301954599296076731220435622594560281242577695303230116088003136063225239634001033250663230287509006829919013203646899883974900110400293560735677387238460230472664962789080202290047042117356572832438472761642038846477199201884496758197866890315718118680745149947946043111978416315248629056423283107632400192985185456855311441536937520608136817420330646454604445432963439275461545119242737630583525257857885694127226991414534248419781422729082324086732939617111961457047066418216916226624084019773987632702911550209450601573525672539868177999788787344190608829676638752972705271518678411577991327352704275026739263940983416455549015188186912354532081344145448908271059922070515746638664444271634397843616987851897174479086278164117692806623058578232459678256204269980782389910537097005563998722588474515802698137907085297389303495249118026935490672904150830451595463360!
 6827342022641045213484268592798495070893293959453177702566689348813365
97331063849394644174784177376062855805542115848469088051244300549262801085429812605202381456122101579909948527067950606705045301644393437776154579058863972501988207855738040677692458619007767071664220390102749217099993601892901340155803208337502088142867800463600095970552107708704458498472432751151033501209709960384026629686968552505331328791233666783958876273326158712280942963684339459807800804479996561755341659287264173515907203783679787013253571869601772368455017055935359850436701051348088392859601285520473455104634499583523701970338438558723891544758988697727429016669533867731123376003061005627309271657157647073898944295521232023115474004018219544957571911340714233942694917054245683909577978026883239112245986455459555684232090656803617134481954271899209320940655363051655769210841576549117740026285557670937195589213685831234465028123539946767138922653033431535003304347076873088842242375401406801692961037149988590817183514310393145546457045053615176694416523969223549564140!
 2542213449618970810567009122575515930730255690605964126462441324699148550291342264235024045507774792801451798262707403866446541737722281730041649395239791247033789013513616709281614450311032398622118779160283480074834342130682718531475355442243127003032609149484753460598635487047982667853928497459017377818574836819410946479608272131344708611546378020643552723826822432035710289386898515434626047263547030854667597790633318302380694246980463612110265206565340851410986046838089087002704528764195677645025580174645728375917666041331997586285734912542454638006073127196628880989801021142501497944274974560339801661706242709717952410146277133344701976129106696474687232220664460445942277399302976623997093323947083926467128217673228497779795271492228809040521828485651634931902003643357952190026273918925549452660772216239498247158505592197713494096424277177336218320444992524806422089543704367875957367555368837465140852419616190445647765710707301498161603223001611060144841847030403094658!
 5250533153956941189402721317650733178936135746170981850995468910413970
13433026640688464510895683137527798092096696942636078208453426131871398638733280520181080527408877167164469802611750667635027456018272044527217592263636756217018522975359202856102361473130325154183095456792430024581758620632042909076709120685861730780964858085108072004432090350065955643822868420559235297041521252528757859593293660577776097329804385468263915256363387352169286073912928313226817767097135182951346115307728287813790673367335933606707098169487916479477367653923286100144218265364093066097049602889131205535927615037378111128953958747454004831187361470444158082483075750358960556790161218848313177740232169547255389561867330234746230551208188153539504863815561544568146006330900599027607169509018861813941237438949848233386233545039183123966022981485000051199765477626611702184032628933645005129547646009136679091733412438381007476905906068426351307214534429896605739064405063182925216925104089405132233995974159465974921058775004036861740623668506441375673495841117779667535!
 2918794512624413498335554070050745301552057605149818641757011396205656886003561736962651593262632678668138387824629388841471032676698444049847573287721455136847428613137916820604197606021499772631500948638130950606738040025865131470509237277092389810732398853979863778546318197959835594111194455160971251873366258587348975173818830631166018833708288831680069938207233059069620875859105556265227174269864945898770300339037834742655044895323213587068611256211660251887687243939544122463273755893935893228071367272829756999708079564672158127293783602271026180299140099212609532936867566796925587407141293937222917283897387595762788757643497620416798564781931215438772069872236375821485852939308915017506851037041537176886247648957651906375722100286560570773402593184572823567887565962817641820967740290593625585456872902158312620534647640165087471076410522302927540347177177425067738484549300055471277409619138383424387269843184001793601057604175676864509580342722096399482354335859839618823!
 1826149066084832378320526153113411179807193761168504788403732709916138
790
25999633418135096474325585859953651459573079486085835806017517740647324679723666971935170701539094606762972382794507385353223614255779955777600004001312453503902398828674986595303909526366242696286044586956445095508063855928797824810987914438418815656381843951019009741530176450646911257822195601856351744745650971183408513330574126061045632025627670478485471139285622751200777016729872351207467091862039106041088660691504099677151562861534901565427450021854230078635071989828655594803101422617172406964421638265045489007293483849531882210436180041599814120347737228040352887555526150101671899997456598196497189837854805342854093287823987682628116622920994779881987944138316128468452024307251535236485155324475292260550168585162923106627584016099515583982246322227554420306973455909340776716862547102359805630569090022145696047741666633426397016880883328209401313956208084881048684139282134136897022665155506247346218626589034250177441950793697510197499836918569835882443473332448479472678!
 3691052195377150845485709628895571893541756655197262139775278726873839595389199335513795441118673716618134463928783112929606147195390359223911144114023563953487689099931586700617521283518249974708768196975621405027576338019495142729352673214809384095170462076019543217061541592402197838223892047663367995174623585534542134234235474699058765840221998063433342994095651113403790811470897410037222588802425242570156708622282870451651536789927962725929466990941455775148883488170229828402019008832623983834359119007934559212156391814221976534182391334588508528539124936366424953743758305757811594303060340099240251906294143884434678227408830136606446208378223580709031428879648992939403604117370216541332392161978446817970633188814679738390075410317904471195151603831862453283951072715466089527099287439935921182069135892346293336987739237634691150925960927726591635206467082955283700659744712481386798106177108330157095011700139392489513903127737878897041300733844663890283345763088579087642!
 9437481780563725677378876572874235860232938956711537814606139269087692
10572346753810469934772961464573655763392462797854120215043810100728639996874702168813647194919189390226369715760167115726095790080458544467813297984273535049453329529635562953900529729129287876585269051034860083552608045851604266894726575227951016706363339146313135002654386807148057264437431115510027788141374017924397169142911230528400493727305196617811230166815173391158222341395162803804390717508945392451156480728555070780823224190030094820557944121369255568621354786731535290843080369422043567249076335573878819540584453121556058916484897756550114297211251140182284303468974728872522572180570509568558793605926584250323849024428480760441961449268924875946664509841427020002395647835312737399715426636686449006421795709320404354741761424067208095568481044920607760734962562553041914748175602511548898547486772754984214089939607287788366477405137840020343435048652096113277848343978909389696436734024215300296073475629031831692218151345333231324256054592335172198411322874590619972518!
 2225668514215643473870295430556820296429289029095941241574976646987109498868874310401017251705965654341587945247265779840101446745275481712420735612893202820211661575781375123170834842530249079670555120744527065902782182757522262750114395406158529547379722730191949149848921092014161846829119278266018383786280068295519459623073639370993933624011705731285263065325918580841459287951174706018952953214576197788843077736491937270659385023555190720188478831560030282730460667897470064102562544432461317643167210197897972021000349108799932538353296904372621559206375795710419891029150207469580822883896932335182251807819593444041404209129438210931680687916670462796126127098238904297256954388725712245747070681483661708129291517661000356339447135576753265536179202995533781238264142095401945995595186706170215741056981832980722697352395591021170036395095571774674480312408430609093688289100709775844380690666198488547809523718650416472579390424855258677130980764356699046266033305676081522879!
 3260029669631207928043210435896339994320840389524876513393131419698153
92123117782312575973286365253619233571930755251490315447072029357648285584586146093646238702473527038820382399959544538692640273356719164992022538444588913159103500459145607532963348562531740100698431395256043262077642202488537391983376130943889713069374061608748305493506108000234341645388564540158452967493740348615877842084393746112050339688376092197264142362250940712821364802316765854652679862269951178906886481320022950977870634894266442649453228687730349688442558901337007487462789324088290591501517759194976300846960868820209016068519047586358892688871859729159677901438118480336271065334924294840860145238010125715361536514352447798249150560716355729033134445012742996522325790220195495983489627734298814721080619759424380455399609715889803475885409777168064945364485131252333956627594957256497064796135659916095161530261579797728060553870561097909113904009669007660834095893377799249920561342435026832059730300786408667109505209537451126764477995203505234173972035175452450267228!
 5798552062377941348643417156567505529390278219737345719120028982282070520035891256594849649353809474287051778911730177051995403676797851969186081806925062543135468040958014915510779091659291367631135710021025376737830989389262803410308340547165861936593397807927829429603050328398286844071461110937541649703295500235162958995250903051754425694250618031419225980749266690458427492730307772862168605095192950627406415765361847704361588173344987426449380786202035222932963673444250177807649135202528178727690439619834915801787216507572979954403927232776241706692322794066326694897008486721024008109086838589281681169547416494049452846191255356873054167231924084375101795038034118569643828574650590737989096671923649961944069634147034128774986441279570982493027670741796306371738518584576534202161015247353534381451228914793667456603407335676421689192524018603104208818168160817634941138455620480178332179904764964099831214588660895990236386063051760360801185432475840403160870450131397260356!
 1382812152068642660350278277523318083048695665375552079638286706601046
67998053817434492793926905834053281927338392723333165645274081315355682910096324763996162613796970473342831872192150677770475576389967889965062034132782890149344385500434086378980828952124762699201175119424456275807751147613802857122698394186362869095160269244414320458504491545747020595385621286813573641148041497779695356267687228709865014357035428812669678162157192468177376416505849296622696673646733370129695714419101123041622338922492443293388188746898441846312365932199770154617081851912141071034075461334717002840482675226330219239454880732465569024546071673215658756338544716894659954090393526179565813157729512194126957710435151900730062078873208903879361098417876232961160761672768487856865177872080465673513535615726577618965896677662988231405886872283417197414523568257760947224123889203829807642133369450110306722344661172334097642461829034726193640989796176599971163750915326451813714507787437495866921650350916116363082393282404118188699453186622684617136841031168193100313!
 6060922077546844124391775847456754797255210295969517083730606614080004504751859220061956381415414806430223173492624807939169178803780083403474348662003492184949084696899798762694341238569491975074518645672286954388385286613494905627451893101015771976662386130679957557982660748886441320087751655776609145003180961756622185953897765622414649719928426829275954802973450592172124315708242170161012177750763916240189920737189405401702734019851604455199209079936892939937464951337878562273416925131426707573155230657412840398853033309502942232612027085110411206866669784368596002536954426648694812631066895075557116414931780138697563022812140079775431664747247483958464434258151585803879435339597913974645643138676621480516363270859940279940787638958739906399056562280060720965276516885284222403581670153160114142733486270079190133229004224237359115417385255872817104896102478888375097546961038511501468348846110381000677304727141175577002736427609939079994085370513724791407365492750702969425!
 8126759756507445525602642661098258571155196147112613463960647461349093
822
96049947214635570373548085217390013650160265860694599362856540336394349693175104087694568978317816150760236236712997134602680482767195715404236737828101018961149673434220458230839482967294164593728070927870115115227226695039646109983966883185969214792891875512981253584493807961851533517978233547602463399454444770113778883603169091043623745002028189031800306968832912856109102084002235145597165619138571335299960929764535369998670338280043863916226926809936301660652969284854150236007874992359341562745936454545937635727278097417581941254897059207443448463675470969296231988811230273528644694652384129678749632216803655801329869336199532730973794931263072719749646100313614893190604223459052281620380146024053638540439071390009975442430374675547371275750009722421147832569991230910242914992135870714876620273579420472507505721440853941733909941503238054486448791888281841934080951015131257640705793931954843783747335948179331888580958704197414047985928252055384971720995214548767102343082!
 1262449642789905794586057928652283984635147104579661614788711227218605182594311968853032863957100874102824729343963861355708240952439827771011838505408469965551667657214902941691064039143441360050245787502330449073685865183449736190478494561056880304478779637111775084179793044538082937856062226846556204306786222428095715584660744697862074702446794468869906164359056713108362327228017555554410156800435484961414134612089566731447065107176420195700627879444162551130698910179546092716965460234860755438990698081226567713333222192462471322345270038055943589476600703332916422188876991300062496562949844749949463868959363501740580071768057222151186055378242511177111046392786061395341518658944998766638690808842322284548671395333471004020190052441060242313573295711404480563092269977161940574930767167137807789480220161424136648026642704116189619112855570050883469516939832186387370274820747828329654170312749437035737611523206764211577488449281490349731101905763846302331493895883526977040!
 5665056280676588047442978938899607503199725954594219042213175570069110
72433652381727778145939448777950596741065777433063893878315756625269097058718175618699100352491487732303815710232760710023733411093996435812796786945221450745857551912230491344975878212924016358572836952706109704569837045825771112711936914788039006134776995212024136056432055846586711229965838113229377915867555301154498824892568648035914548777216979682159172307759092018911489747817427661558985000117554802014406250666390210223714765808590880676614326314513968721785776083070112533672634627778300000082208924963479642788135058199354778075276537159523647945715304415431941621760469165265349730935244602750789700821332509438854102298639376705953402639999031054962391905331338078177502801571036713713597158800546716034006945412350665106032599205751708779951545040100985770371773181618980942157688289966063932024692195235511912539157976649473850431910848094837555912910363042816401589509596483703320576835169900389054989095804955361548139248266645361671951554531117469895106275140665089034152!
 9370032649756497260830241470133986313746557579959015059590174414523785313484299991365995155059771521314576491304327118167524902413841836477586560177560757712820861279848291423445110099931046569516559119861340341192569199728469563249821867774750245812424956070410829388143148873375334638064656410382519337399829444377461080337721344813073467453123296942752772091611531515983063591809229385892755410383242230222025689617795009786732906692483627753330421979300625988528413597631873126032986544764239859361980554371426711532270087374310833959370617155453776301483914920935634020734145065330237888787770751208454676611451886833815056481440452259758989080000505227059617061570799116845828648005109209940500734774340873337029029500343425307834094094087032067852828835231221117080820344861930163299284806764956662073935989010590244863389040147121618736513417989706000931214443817418642427699435396127089822900388030128213838826566232240018687472000525221551381174331124608154541742665174668957424!
 3398697138852311297501497807356796369405285821308772541824331019601220
04079606809239052571117120538746894951953919036414648066026813565282678198112113079830762301824924343585193649437267488854174867442746996304055703453382287126199544019912181262474059247109039857462075047462106797176802308836861147054189183352348126050517480005344569756326387889007116258087881415589910575002815471388975307288505275923897758049111136696187372910825839220248554374603944363713638437626035004673014295185339849887135265843241513184677239637556147278844903041610271234532438399131756110735901280384552632135784015030649136598034349637096945986695778459108769492076474530959438983657119844060382597515074322129085219620797353502774994620627780738421163361709298695969179822579296018802985465424793637883629442971016114904192555233490081974082618033955219075973983798681941245431995003000640244081819278725725858358770679938439825305687481510573534284772831261545826608013729184959663738190328147759722107966614759315110311108858373842944079112612010338134251304800711082984805!
 2377613336741135304684115566655814172067979250850467370587129733260572829956855876656289110820439496432557802072421783039653630539336559110972884008747534485278272488318419675860969634656020583012783537171489487866291947015540311611856272558169602987123043417058732273311467110330798378233671705726274568808081257819821113100754287507916754050089026644429174246396418663999467775199083101506947085783972946853132736696490462686425278575068551838008258148179110953650055493178436316158851851060872904523017550397900021700937829736779622129943949753848135251582253222583761897070611400142573778985847344926584351885694033460150814612792989473205929401209796408966304409515567991541881991533129403024949772714145203034479404742287964432306066000934658823047617908674921307306692770450170238377074858716371350437420718141873734099251760501988136578484937066021498626638400780935727433261913365764643053551345396090341211871322333786482712143407361391699941578369582274462379108021145168887845!
 3144429722227553964159754717517532753291750865641361085000143158801592
91372825354142946634837188165201205739293747868285304824083603498316413783550661616145288498087466336332804008275689642285825124803245853945890756838562962123677109022700933915172288250604089525463637910946936437505997088985087614142410852741204102448427027092446916833550628719827003836268601258214366623320115486783303134668074947509092703659682108279655338703284092244510593346482872509145891665993083688231754885260550719955622030694355883970418454841056499835127818132591798662055811843753270592362348593736179157718592504903197268770817203150220946489664166621538203575007520193300341801948722912396129312799435132242259639183787509410367179862566150157716540641085109678857083582056606840257176401302303853906049292920989009908548299578571033753564387199756681694835674398296495086438998217869036692025705875975920645131941559186195327270353800403942343072754891585899965821297642311087005481867341678902170666580650881056825502282340019554299882679032556646584123390726468185501479!
 2448071342560719666265290545785036156656372177702638285774321869692901865329434677989516221461318824234451757902697741163349845319140418413027029020492684479731456400642024938615518459931413606109643300923881667838409560558359768730489205780730673249952479742553650156829295508086694406252013509439116644641385892394007535991404317382551486564230909558572189281705124498828680631940086952073020218649087245675190617274754106567616229565344513241813054479832020652347978881644651517171252732847082757389280748456868390308858261598115211752918697523212851957097084985440872692515834319453846603000549431433922129450270683254002719406793619758194514584967356777232517355707369873737081594518562193852747784046203792347237020575835300685147955353775940300683352876450609421648484777015049838512149986777642375115055299889193911252332334688855036899727198266193888291819261597917195334364439151186983203552444822898512733535444345631926003968767276643234758717081296279717922305343869651359952!
 5369038382627053993691183869839784245098391396555271791890076190135492
838
87532917615502108602782207033233680190179142277006662725075802000909400947683102451968200174307731371703387310473470514743683947532315012078691065971925230232107044989847655668076492757375385169439476142092010640574058333245863397700430587993627514306166590396335407546820064429201634689437354460464899336152741165775509664527875125442909621948510876650944854594625975943776775129338295315668402999280352462086759648822373956438255121072563981134850768857214234177388143207930784936747462187552590016115078440939959809044383568854642701381378178554376460374918740005804385337700275650921330250471763976198257444290004342547484056948750653800089109216062057048439181528819500274181316657653957485409349933597908599910880169225271562206430177873503155995388776359804128140395615395202153210576503378997886194086679814848265577139128612658025707951927066706018907247590890974112482055434161631749912116666916973149130904389067839956133340303890622893241662300474689193493120653901144474690073!
 5919234935807632308721875682670280852541111846225759798118753414358247053022788481870173123777918713517695663350119798416035460640604561365154607796956658970374896526989172064054519024343984593977752480440209451474765788518666497089130311097977248092261859431486665559675246731947924922054662350555413882102500947022006550119454502824752052335345711176270544139937130940110274903078486835511070120345179072325383565874625185007136821325164417201361108129914316225104199840067974289162272270055459254288483177409727464383869126051230774425951187684935049288978924250936037554697928416121721129978125717084688871085669816684021513274326844162324219617651365544048615335558377536157649158289595632176084648796913660044660271248963717811534726451823820056544864923025314845357088249924716592782172784266282552924099585316844207364838223303005049846720096361294163415306399581215232003196416599967865046595603320534901270870240567639156688243145228700009784754425239139052595781791229626689360!
 9758259233409319438664981643976383491351708684192484246169998275938229
87935772414019983705947387222268893358520363078402800465005276126207218566641022311698257455364854588562909336765484676656734086897149470865868338551303198149881981387578056692397286927503676349737492472044848455389528234629166815875265434001460322249106600454837969636315637633756573054806162058828113426968494410541864621882290374461297979112514664597684886371211183612655637703196106888230173087591989700097472004337999047299525095546508576872896462290487599941585172474814379300137367960853761917962841980927620770266679847385617546235958041126448424041391555785707223718162648796162803806886913425477181441954618316197313197887276499543307537289968434438493323920406195297561937917394808522486418806144648714815897692383802096048841036414993094925261498760571885864559714861203441052970095776148153401804272531831026686527501591877246732308306070097483903716191163191482930052485277984492758893011656809872472992859163811569363076137787633228574496551283515625437340364309704247177821!
 8199609743069558503156522997345643959211141469462432731657025711501932962405723744603119083996919998923976392240140439638841680060575336327738679088563414091679950283113991973833702080282612028580732692313890767003605617921290420246424100732179363737670986821273303897282766916654307081033709431389898849996972658614002050609517857792672248235310817420523148556694610407261334192712407054208563194562997908434856112167405664168297605333437054457943321717467310922649814780078838508424168206222600280219980454081025611354547465030859457261091112619052164343856304186050609323961355460472199688790004863869614518439150969255034725761284494125993760450074600200745115065177693884018345376235145189718100378762384968380523747720201468574083020886392342948523391560423941664498198717029833312307112590473636977277619061192760530361075148195523188514382450547015033831098417997283063532660334033730138209781442104916734831907317457079941373317769874001687611124932926543453330244353070310106123!
 4316248794052541258814328705627084013077349855162792319995677468544170
19352641521125789229577782475287653756844075517048965953427316966075529971338088657525702565763849482581600362068398745724918778900721765467974621187186924692518386941962354133113741158157974344900112744085947536122322896680391304962540199186229676899151571136469571962672360214883566742889276983193181662038158309420239057765705810536322462168297371695390397828296278103587294543744122738436289473355761520694057432968108972809586030274372246094341106339247197809977495146625574935629367545703711776845247786489477787449745566188050435714978269847506983776443837536270024819005458756420635523424907481520254017689753875125852009040519711241938046311949137481175443727278924357877121076342306691992463520015802559134106443576304300041521292491618117932361700358584830181083923032626166813228417270410203361148100771272325624048979020154002718192818532808204125203051382970130554673196037941175240433783815630301211685909352877386456941098121091998251835152239999521291389584509771468991617!
 4150677663636093701656516659863203770343694293352505534901533222017174428624836189896424784144762661026068211223440328320293768053591551033270049178685712518961724318726521790542224600634062671361475501830946872307215944875964000135763176612302612126936546838650757588777501932361699027596352588321377392829710191372924706177166080739922992372518045253181026779098624536093417013862262539632051319844568458231465949531272084030015683948853020927120745249396348910485414255841439421332666215154812297988455294322235840932739777165826527745181609489617944452602553038487108912178899375500037874138384269206166961261441849355627418396959000479619157880023462201333319776943400145227546977511204792800438119106064305793283216185813987769534879672986746488099408091026230224806804449778816013139439805458785683093519053980213373048611379733391995757580930732801221781885967055309015986130651645634246514545620145774574297732987552508158291123409497897219755627263049856992872345687915604099195!
 3112300539717523123820341999977772219557048281396161564960469212484511
86397602796511275516168280052427435700718988834389398038039450545522492149942778592587043574381344518741600259955087678105563977090739894317023299168004756481053176802606057638373916113002675259388908346300751539855357625403789930371217730163341267085955727051179082530492077652833157682292363912889496016747275138797252373446453382233055890565978159607815703599543944283359873617292759932009053604827157688714595406619417759351403373979379531916856903326804769708432336370362730918051298587131704516463502669645285486720128435660534822781859409466067773155321362866150057928612147010413506802654760635994242451371537904036945467138229846508141843583296492819609584539607983970751117842407384582667131404255197468457907518064861208622696994444488349143731993429287216865532036887111267878551065593961531227906851043632481664437352698327951511733744065566063265035758037603069751754212950727920031980981171110770066625957716286360838219375589696686179650421553297356515700161472142012761540!
 0792880429430656843300234294741517219483674830893670218063306159950137100211840595499970873727362363112612208628809969703085677176855553669695498218301874603974470401059350501726636732947214162905007542460438703370464204864469417542061747601341577105935301853703540271912406023167843808696540448643463533941141067889042496027552180952968457867104082204130528639507538389808770786137589101651529541398278194094198151134308791104694616220935236770862587590450637912216714304535322466527448939541758337167192071884153608816747144094279688014468266765995259077387773139484535581206081785882349751293188890278030655103546693719342554266622630473202562337627631479995278752382566872479529908111278173128331815582495033155362156222729919756542462504718375587837370388465973126061026446291971614661914773695601223699446210006529770715767292363021721949641886522851752035754028224346739938069049710198361684647073363636170719829179694041093677123968191458584406213603089606643156165059339969884521!
 4585217965183706120953377076550684317323207646110840483870329647705915
096
73061764830403603856433723430114158096341377800262047751187899508265879524640409896141980570564938113779608887165941005949113451151719901530024916822555258148499149922104158082580397185143365892927083750433291330354577634783969653682666400809231638889634567353257185173898589964271152317643492522814446411884259671762581948949164148337530608843488815435023931414141834416510277202520644672984909202903157057850535574835226905659640179992401137934870492414697598655457366951861491243956795066375347503192260790220949151391610291923398818945350063220052332694217127040892664058251432042720278036315514504277634468173860245155723180651908698771778148715733467413184289840550560740715283901467500091951729865064655776114475811569976406234765117967560541148542284380301339075136623594824360421643769972700468414697438404706513530050765049337106410962949677190931796178424187851993862279024986296312371904598932722494284386091951122735662003741940075740264628743517859753631920266212400177899013!
 4951879665310483584177373717621770810161636193521344925259468244652701811887865845895282748774290526778809851432957321932778618480746161458075368926872024120389651385415794165913611445071262407887549755082653314380670583520700365722232771874873727528764942029230358603825084515522871955562906928202966662420994862619412933839236624964031817437814936565939212770630382787224613724400779675075645834589677350512062576999560531293731191974494979883216296065119297119611313343727090496084277157112968778033352834526815472180423423029252540136457117422532453570424392687796638474980221401261719235394225330621372986406239960682629770157764415808327666265030649096335350387545178839385296837326109661305029513530540759068273808784034267648734487517184361377013473006837016383259609974229816367025511685557337607033785984583245512866168185790510596760270994022805844079842495371144252212503408326281289678869942910826207469235807047138190875638325923818536485489965667269053728757120108690565070!
 1108530926575372530373509597316417010758225088369615811791186596053383
38420142020887260979253301768164018810553950839204447704830123339349396166332896712110517891591825595965747273130040003604179071309171270619203513711248496152779983825226762231953386875194668849237235348334786361380068016596864314584099979506486974785552946486650490252053903908035148004911343149714312800807734184647798513947190204579291961136708558332978060223865715556213842196545421367159701719462628635268497316187616357449170725067469424979420480375596533684587090950083197359963370560140774938709802980191745448092949766796556929427545523966161238375146946303188149056343039306828944938770639659760699414267685699465735150415383050960276650747109681593051382987689058744818499106809195294394703470628657775156564635847407836277427692844425520603089962067112408348096747667041781548227215696996856502349322672647175634184621223996535405496410319913444030713138305301701168663256561383367785752345154124960763244877048172604087228016689219887596449368202442007764178096546472626454905!
 5952491287091126352510388417788306355034546195224083229727079472572531351395155641069201846680082320214621299838375351488708297248666645980359215302120413586839486682363112112242378537791597208069750830116771647113148065854747570405480346606518378474648753038519120962074952859401140975627847263168928485296302893159748533430055357086272038816744505316999802967371188665129761174804798194433949706170205939944641526485607492825153735299855495019867697172351325799545892407639734206292948995712829634754576710500337803134309190041044509552652079915180386704557167333670820665313325189454690160916863302237976822795333393253507444023422007078427880944807197015810635475993624657996723191765228617699345536002050697492514453458410296120948173201393021738626342263093355434508968700602880642380608455821575676329848717940107165688402989870341294362780202494595909347036470699385710771456738314961956435178293037629522614782721381050041074077601871065743665895531466859762012084768203845722148!
 7958328486623821663939434725800994020640695549583416942279109137328630
49890700498183530255247711274257563981100699972996065084473885413874191686828977517509278356197951319134818171752938224261666755221521961518844234856452520791024913211916606301040597306304269122911529570647099178318222576142678844410028330513580055056640333764066547497699364263005602544837095879786038398888124289097364621107835495785725157303183020408942926399075269557738047872363774560710766269792495273840747364209357900148126842866608916709615034358425092153761425892661273256124668246293022835256565609509227870352439070388442470889052089597443703000166504200657638359420377170606430790243027411426153129361850779362217510849024239798219479633332465075270720357698681726567471543388042454887015319661052421214519563236518304435434526859300372158840865762959670645073103458421131395306823522434060714546226221962980670451062459322067121753261554314872812579967229206031177738122386004385811932035522914176113837773117725812692492749737360553993439545412782801959761680012374554173642!
 5127484835994975046952076754286433689407714424818554341548198941447149854081578970732642562763517950326147929618458518995161450155183734741523769117749045042402801527553128464538543207234898850905514757151349902842192326021168515845717962388507092244309765780121477675629749379861061002705895958015692479614134640084529112035473705485021336605020659804905087046863742349558688815970275360266507168840453224365596631272573365829240901528221672018572727401401817229328762111398210623943319526718444660182716671621031256065912299426255559013043483098308996526446652270503244832038363694590127093514735758743496662228956566937661610879467082739855253798544279562963817386236992377780644189251681583769767166836015551799662509992251286648572413280713716941422475566781400107084557315022448594664362003123334841209572434903441104055488319730349939902628361103532754644868209906702150563913597753190111282747425084634481406753590448852369616578117979144682593946636889348434208462562344107546843!
 0312084575218877276454974954887805157694332763446464511433846953085992
17258231745591011564832882122595163388368981031625197112440543859567862486242482354981102129126626052842148649750837232057869857578888318643721068964591262512863811645542471332584570860724072759362713650157537870451097394135462723651736554403823267110623093441163155971435685762157000877717921456528982869816230801542215524021996519333988772909420991990395979341446159925540851693006550004057714964852898908663687868575638724213543712631841035069506299614563163210073876618067363976972016585331162316051674195974634124297294795438455206502318454777568659453414690224269713544374871935879664345460135527002772725086572412788278554294032046018549208043069736016496698558414028424977970013605488250039253572043157903122276856288580651159540664685596814705103871262265288985513350486883058018153024860619416308031316043916339671001814144232710860196932885900048827477497181042615941620542032603362895516306928374424777442524815252167442749563341788097668276282532836957423198491822297536942368!
 6668164035616704140844425412518578598283482184886369157577545773159036733371973797697918513589990881363910897360602036955170079440040664359009366836890234400399789550610702039603350653973864415753855574801894079191876056541986153244047595754875598780070926498239778550531859564861567090381608281757428088993125490718092514129777929947243829792293530472053072535592705048603971737004591989336445022139464439797779150521654380077789993153602416412475634687917996447792466482838263280486082705968268479093393042247470132488522423417173409266047188911612618085021957933593302378084631798785613093209339321109792552787592585552632317039112000937825202433446169874221980553862249467459562509694696714608464129004059991715280805432646781023222066832093775326279741632220158391948709272048621792529867264681118756607142767589141937067473923233343592077110447742894502433760243467756504033624463721292472783563028477334814167271498235543668049998859566239352349229458147602934752306481312358150039!
 3508396013162758663398515793825441873169869033536787971350899599396088
655
06804206677108303003457629465310613578721485960018596505033856172080414114117199274698354077001599113958074183850879282964847574642421594738732310670255607168894852838644146291820063633177977255719843481390160820845190537035187645568725936128122251339170515428966627854443978687070827528995227954748724390863048691189091854147198678094445009727671218939825007670194727725587326711756521003792770817464624096406975942117937649459204577906596794844666700223866625395698785724682578739805247812527084166430014205548065414750852989542287699868188988806688237151093339047689783801959329958123107011262832780084805659469474504523298621893617269430364093922187185534203398221225709158808153475324649480174462104742751887962579139453857094318834118579484312031431361390749002739448820346099303889660567112003792135724812412130454027649648826439448969226591147771120273319693797582644939060834995931459332893712433915801486185719958905026801355714697218905496643285530672189193439636533579374477441!
 7804416250670513608972546489772699473051823734232683428183097493746289114372243601919958075148085118827884568966857104152264461025338304021186534439028758181257043109893612714226336248263209689955612322284289097535993374820604251850780451921751120422304400641810412961397705725299758929678807743625426347397921084752968894882252468678052229578668085806460034934862540791354132539825048760828250037854430492284467027825383631172130790746333722167013153517980191940864497913862841768003215539481904727209617734272335484211691759532331985492165138868794319861341348827320423333235533953638209609347389426653990340516239036067202783267323676284177542970070226074379720216868138668133264652393738999500329598841615667332822384649968594041372241393136845661596578363132696644058174711250882319132586400826463178849163795335107831690397063844036643001040016135835837146492784394783945461708813066846481157509178378949370240792816221580913198600673601983555164635037913850085566679958721031399674!
 6250500458677575040024892020604014589107224380842693279935776006695522
69683858448234407862615177284803954600876298927738665970446678197411059316186000677943983836172510332049959163315659416268838577193630182339979657301215806133382780630497987695489262008155604130612330352359983140989563125809511895584044485041231716215264165601974134608006052062117932006802789409049370259720285816532381382610492929137635794973060325434035157062443001597164077816577718972254794486224958138543999728320251531434444973563482461471964427305480314402872538769757528162065880265262884053720118589740141444204497563209759876620285303119111880768326328933818060849769936749763601141103020720456274973471680207669844414655396123773391595898907363375112019681911013629025490720772918815671034832488741811063663167297584476278073260611319347891259000409480383111021578935229251588785734376594545071858281281870876136078420975081046136858239132733023547199857346848659075192957601507667833889908128232044585168361466634082481210460605560382988192835479357358287835836234240991174728!
 6389699294398485137675067701215158933049047824907485291044318650346493283480448293699894610965178010174446342218230702634140782002364115950028151597661898524897119557416515842562541167261850420883714669608341998938236381267835661771438636230698208204371673325342012002486568865943795864713894069417827055665733891644058012302271354742693360081380290949950590081241684880019721541202414177274549768942026128453221698763980242146785124021631931031582359355448463842389592959054038899941479008615717957532966722629533890672705050717829840521109364000975571642378708154011264724304151859118008114928209957251133947771822679298007220196580716514585807771409692158600253736231341616680667742926504715096559117998552362381759942684109373943584387864907593196112942188570991701990342694278317412806963816071986168599646118845847764875531771125753430508129272863942028052051566511611097297846250872136925613268455282684895555637639840715874921290629955468580693197896233853104308567309982405613221!
 6901143238010455783525287842092530883092720706374497368116819697479268
46902595420172733925955958109303365153815355622114403795428075169606532055616865589901272934144528431354009741540810404612819072157603698647342793279513552445833122884631620640232222271299363065853598052667107716684053022351769904206045235962596879733382070472990592649546493473004055879261321689949698737207882968325880636166036903102321461730466957824131145348713895688053997894403407114332118612312486117000632019679945012680159413328854079057726923971856256720420865030199951938894067118965662338890640169512865703708223861809973525418404395161419994115007600246950623868878639455568723780028550376801738988066402739042217934308551496350639038242728148028012783532684284942855674069364532545425530866549535754891981101809017050064171427831684548053265295971317353699478124294662279517435764971444763965097691478800439121705662102349693466218961980443953538155006243001246061356553681883515853221620884495376766525983750916743977144461574589030137964227454727594968951316787682368545770!
 6480137493366845884839886472550955089879450678857216854177992802250845596439902169153309598059867096014001112505902439978096654475256137594559068573386804504091041102577621930139218057469135372949327609001550206588800752999402981175420715536591803360693205554572472109079817293010258373213424731139663216515906806021386384657422683609044318462453306889050396564875277192207419318454617793619622260530482544972223821850502288930916505362770475330728888850366621198125129490780666883804043619293865385775652504742081948412072186296725512487422302434152289490560529495158384787811153943129919486275546015226150802133774091723361784243054642488829426442522657696297384505402697151446198178680936411998812378980372339461720399148173912774067836268319298099941430001202945885178165189586192725740632908910914159090347072108379737388034148942142574975035945132042655309663934454227917865026865612671437117268186199672640585655134987906205914834566195330974205972057402719171244824121895600799819!
 0349185757824851627843279863911918880781029637205362133820224024431880
97149426921119516358062144830490557082317838866845568546099223954246221764161264824018757609187353166493165560945591304973861699118524293236610482256573592023469181354342721756716287501531066305834834035078345226163199106480071553809494846620824056811795779564340026846724943387385602583230091233925817459357736559880576288276032469082738817888900285426774879028804098604916385129216370247693047353390614065658046333782046544506323137537262183492807556107908842579299933248193508080635664208010606141287152367464821284263674095612799094950410785422414921544908721204933091024042502798588161395091622504497782560962994295096839698731706896738845079208711723806361483521460557519956391028283861296891209235538449693144275727033021623030246248457758708890896336579861804794222928375246664972817822219965475627837142987051107258998909167299324039450318274443838196594807406696260355157396824072740180368838447934220989925124662556411504153068472172767449797568133376390521187620204840834522599!
 2812285786354763587081558525864691492824663703820419501993463499731080350377830306511249004986540464406066178457100945134038029183356576479710538291392880885066720470053435543948162782352522944738907748329331253259169947118998954459431033768643689162230449528443402793746766364386550745160586570575408238725605873501562477742917725928490911919081320008805212089418934963132803170016837309963949300389105333482789785147148736268831013728836032856899508947883847620269453606923235212644345470838036736311676109745300792410725849120170660103155610900534565123303250598644537420234625867648813675986224283237424804754142723922552713829230321574174957920112262017228959217523783973156195383927584491332813750596293447415254669878869190053886485251414193035078245534079509009604726114738497463637297829231935103684943961900081259701020030200913558354344156814956737732925590941523910739074520645554327378583877047158645784939783566789412531759048070066081787484044686692920707147451709509395284!
 0882298853146021678759731214507504409374233874087926548578501606734919
821
38186494877983357907813524568425861762516471551238940477879697174403046638392021081362607610816387624673902566958200642942954155973422196663520147566449963442738557510600565938039561820192757197873951493749483475741810513211986760255799199319035236331029110442389945961305049203586517709681249598922058911104983999148134459847580337239109762409846179431718883682624589212511229207018257577700385100675370693844158710654937494341696989720298429450601359859233529489638940794200801207705486710679066922676517931832500746890474515150075104838000506856012340495853381606080337758305982343335782757509961977275022879091852565214988983933879582074165640099810988266625020267966070695376862996015232489608442693885969300214969882228946085688757886025702925118613380767178685965002778904886911724451803168313937148032293555791449717691859719686493167267636705258706329142362969024385132139737232106335846706606830260289015836328521330890862688988086808638006241520873701851315421642565444916428090!
 2683914455244664933533866805436809474106763314056220240276157172875181824924694501259450883590619821204356686672521915688073503142144492961566121696514073484973789578800757853265661380567008522854885394325927428418733787811759040316207348735499630923691551785194405737187491893185699730698865997046281391443904932383341283248703519998611017810119747405088533290606237309350445814844394343321914322368167834761768544867957965346206931809325356452728780472675174160522804787530193431929875316431394496726317236561494684994044999490148907956128829869396306236863245361646348776966432876533305393252258175605329365933837480872416114322559022884580131326160179223903463528263791161969157255072977283323463099301265555887087104645704354317380991996613731365171689612062461457138896652715773736861522299506532471357824673580288891911147111287569376204444169795083151247289962273695824710928247956663577593934017326033681860085410415559540107414787720865584793779955785206273843546559003181011843!
 2175870506154291543591350883070000565249225301342494132920995852561273
56930817308362898767855216146168833848980987788578622201565656480230797586053408671756406277784263330355763483054687638143566126551464064488631518459704142996766304963633384085640986252836487970330301959111982654964265677552129799713778575077714267442846367688946935844873296485171846181777638239862173801975172065173030722458667134004519146476041268095415727775047805349229522582974776725868756896931131334533315598892410350000851386722847520142501600575531930873032933646867338845984080584471783022433116784246828329617436800212614573802808363761183823519451146322416517740003518582948158262662239528478700256167750988399792791071866016241659263692313193357371369781391400092273357960165231108059012558231835736395610811788268813664135075968893287396954050038987886057191071062432847538213732043613632527526645446510534778364917465173749521594398705714030567861461190189660413278503109504897755597694773942884465389946835543168117003617307199266469031496586629127770118666763663971295269!
 4069569863690352107175006728020234931689082233093017715851766989578772274604936043760374763935351141169375685352080306316208623251339971400561492339654017618931091820560715563412565186009453700157156895795157478786510967178239889844134871457467970168653648277495041990741613928514308652824250818837147262882687219443344584669885039552429039284949600039929482816542150885997470294079678793442979035948272116378097494723761514575699701029150347464927549224636671374006420201634055529015050937172370374442308631908069541049418989739050699875354750783584069519765698198066340058495055341257743411948680537238340564447018631393088336995490271041038498995296206599097558451252514253879492973715015675268474047865015607877099001196818408083616497146565318075774738057709135260738789718081667681417924655201105782183535462139526820214228282518581217568927923510513188467053294767225731602295465478895777340062978965997656844682383000559615499912206734774349645695133093955651908403175708862091419!
 8324864614699747817072410529284148779310242244917224044405245964711951
11861507943093651451614503439998607560231043331366590844748297093899331241709328314417573308449616839430559656236390732153034548362254881962867626245121844396214278271179528850620149438469303657818295368472566021901320659673099941705090717254021614777296931248226615831471263580815796758433452250624385456278731009645699184312424534713275876342272577870322999427814012747256303041837645952775268088328113142659067941018261720743398998523258275214208384136010901561158766646769377885491523393622791839411710520371147210221513721440548507743743841417163381667948473122428263767532994624543574547713532520005590384205647284082742608970250216537099778542528959321518012110357614597782087504709700575932069662370233372824553538482744084267992961386598457374560311718637290305705896592680390265331844625471695672456178262029854631205215197692009967862996669012435434903133164656569667946440561971264459411906434662175369095421319213642674301460269222570861853414125485700108968707545567478676157!
 0627272417086862960134183652666286983271048107589686628074255981842786081234712455987691537185091825611590749691240280476915841056015783670503241923409538530301773971433848193243715929215398933216126279626815199696315568180936607402375830806933250358259792444035644094432606092538921562778657962076512197837287783187865041492642042557446938245242830693181933719954496360618735175671956723681108333409249245527549444644568937707359575558534166648442055738961624396062964872676432106415091784880091711437176493214341562679238074973646718231212621797495960065335670554833649854466133855913153205150917068283413479171543129263513958508251101917054401019540897175431541020472608714994354645502941366602020088717755134916561905139491091851935299609065479028064517435672100397305281937580534800763535080619484167347624261927555091096127021789058545470140797352785174067212145263637640878597503215748042922094694511656799375401057908687960051469671355847282246664517184921241939279369777983498009!
 2068036603259613098385395320660475935170963082803137718985679676188165
64717017282995559438657775009224643444902390283371174744812005629824154949473629223371556289096811631357293867875943748871680684312793620525865795979630633366176743850899940407458258959497297471365981831244108141497919702452072036474322551189657093723959542053782110000144020786118158955600263880325750823380301290270813529469317051732657422381091077060187835723035793745453106586550010080599372920902427764349098105620401435074199377987464436837640621184388434833262324576976252222870893497296379454534424922184071764619763804972141681315383152833632439661005459029410343513648452845938704563391978424638871302592422145613604718057089749212753292167740958741347375296865804804049123676149429307165799744172757918575575020415221485418115312886863733788349375414040927252919254684148538203019650961748643933783942410826538945664197863245470687475980212498183236412804802749669067668807684859844999383745855365102928395102008486109674696109801833568571411021557535590328993123312546597847379!
 7410147354075313042193587958408951867634272106502542588865660154647940545021242482641689429540718642784564719126933978954317362917150806244393723666143715857892583242675765678877759772545510189400448766367797998859159866562139852629707623718854198536446600307944315017743599059575658574207782524784116822700166395733542807071289111677144371636382230238251103525158532450508535338916572951287470232453136577263704466654050729304164339168500134778642824331326177350753450097670841701385774353365686215987526927544624955207198692398529186277582223736881818366444322626726281231563018515765506423007101723984022741072336147204906420548754303995637839731443168507835340013854897501736659000031431744181866944609777837977523090212635480400577757142174031674106592324199902037037072904378598299427452718941181594484946661472492410018732897677547397950626090271227290303405616547343956789879618642530016904668714231179615275554519879794515228186787684816949255737700884885326440572503968909917967!
 5959053728411880947107884113965992259745878052619123085670791353519392
700
16936311566882862966023118014256004735925768026453345270012641298800371261333539779018126663170326474114352140734241974750869772895720429805994467244384529698663587557871769288943588221957155180564678284321923339186531315861986198295702225672534955981082041393347736992859255573007932157863625721714787472899396638870603573114008912808485086266939966067125980981052650230302570209666746641071294055616202445550262144146365872555659779949388258875098980120682754605579633475156321693649667414385411746473208216347820063335460379102346923306914000447646408338209778213097749741814105137891342469910076659265397332253926123913809951401158553208327548872435237096808715007379005189804003182279292936508403509657825107240699933727894234368665043017251104475317393840577256449547214063342303601598090454235783452058168690911097784835337086104569130311455989577347571004324475934757955697606800312065627489969843535216244480669475779668464013029735012435918197649556728301283003982125362601501807!
 1341601165772222054265684569967400838132477878197329550106908545260164140457128809768353430623710786919795794634254456508642230031668849363466212341668009911408932097122118104454997366401469111965385357270655280430040176445000990148734582678677272157818679644005361443357912707436788456754230064015307390879794876096866278557908983656476579938883366483062695699756691102587362915967049183938015558640708917618954545821786168038672975285933955291233524645726330661039986080231015392641363114589106573698303657839320114935357578984679958377042249026650285435532329277056255075750711637274373793470937903840184692126416592647275921504327540413454759711483701374469059889961490253205389113013478135280647771895259093633620949463597353368501383609068722615994781385689644404261758049762958448964345967742767608799449099903347981093514532294563125616208272655622434068371348996792653098481532966661455307681637496519007334794606698561103345168575859664926478161424598356667299213590433566751569!
 4581993722213279625561771652704909871077050689201311470340836014024694
18221092123147034255563378662527358667470165066734189034565270919813875840053205028314847830391845689157921844527813899245674054542032998066055087303842835366579867463783451330543314083087054402830493670119521307433639268470398194145287247250349323252545673986573568252526864210948445750767695448095373676475160735175424771541668615978156001201803284427975896885971470800637769613656921079779613117339570624895566323840670820335345164017978916276288248119256134784928662721121658516914978836085152077624688177057558759692882081618749608344181268097619524966089527292501776439047617709448291746453297077586292820716367002359775096693122584078117881467251163565710879663444759130300860691021970069929437676497873629450864049657831891237412755564693274646180558112048074037322850615199179670851141539501491197089472251738351253878614197137916766970068285509333512022952429266464813703160198975055069885672478893442134029463627547914327412938689177754886333075126210927222089088760762930616444!
 8670571306956777529058856117814509774344430643317813451584710266453798649578931334236516364314055183248792983971302137266446151312233002054258654093413336479054712230719167115322907251014850211577069491704439667937742628961083495298778504431344866562517252171254817032336729996601852003205356994111066685557172821083067352348381693196623329518909745739322150272800140893140157267791571839279936920813904767914514159419534388791660207879322694454380277365823023871634797605603733065624619293026492132198729687358724925658077032101702544890068645823578103789454589429684293806997161926390425870692828762530186111726934823665893892033082319386882620135034800751505269641961979629309610268429626276941236370129496871101636852278668115070235095378392768096878094816334635984033771252929317903371384257881134234708584462782959809170475433587546801781695652456089822200711449372210139083507685027025487371214708124834618208518389754181408016920371790432930496439411410153596928911062837885014028!
 0928781080296081515982015766310377435479113286661135021040999459173099
21068759151349851182307835994393072818176555424361395079444166750822860342571808084216114539887334695419963868914065494842766947197951280944263542878104750798045378581854931402616868547924037733740555718963332413681991447389986195502960371696795231839878256154590990580888107759227769718949920689935039265025526316815736391896459732912973885003065381647537280703674348319276133984618097065884836425767126171077487142139108105217139156820741461586585054266068641688165205678580966040843010786703633282988765715611480328439045118083992524297987189901966629698420883833288155036921138421555477341037691202580825353405558767479504542197511278282166613224033795988297195725403433985999290973850505911880264835977237227689757688677304312448511618646874234185023690868802915421716721182075955756546076307078417701337041898418518560040520549766763642585369908854975828928522332086480046701352306188536042266400888053695528071275300599044017347492631534322716029218013604596148763628138544647835313!
 4217153444573953789489165848740433134029393429947971240356483213271447375964169026269495857282200394584438654920928048475600917436948437997789641358073667450826545127107038710307658539349239235527816307410795513619728327985151102209895782750307010081554495027495270127115373886628622465504068725160808699711035347843680700079259202826939557725374157264422835865848455459888295645992125237135103860588574869633261120906849329127961910664113290603836945546411066893715897350761560655668934592652905421583113967277474300317959481366505006773126241612751666607600442049315468546885450056700991196372700166885896532174025939022279263090869836859180431695412842066806728334513776689688751240803107571735206817376572557643156979572454803302715484059078208472072172943899464880545274750301869184522202098450412820000805369429028071924119592523835894612037050332633815826827427010925729666580396626263040486031718794258598776610787210077954135843726171249647414903127337221106138471098214308223516!
 1999780395224339306978807846108039245654394630491566916887451152528688
11936708924625177939663713871596291172686341022283513066931628511655097004470277450848590198603436624209647064819906031663232027541752968215258950582119963684463118526164545568993315187822021909870761769351578245880862308453255436662507964902727937901474164453496754747314174028127567616395637101557274559901119041041605421219669646482990967635157422786464535141498387921916552262123671079833675185509533900874868598545656251653108271196853876867372189118712733863094709223531616266462792691711394323268192096960315816148197299095010638323354942643498730782031106847332580480776362214719866761239957896565506014045054417431051818075652080980333015083690478665991650761862556857709281239800734087969915907100927572286943320007947833600030107647892366699978856811130272387648068503459385274377521313637586331688684717876900548043847950859630111168233450296211118891611177829439012230615187338328861006149798929788963020104681177215235292743607293377350384065248027329765186274630099468121256!
 9622276016808389195041436823128195416205508893736458680837982302358090440543055232034235802528599556654691126771387309494160055279624715379121719808763095941246314455329302630314922747188532130735746276727032655394308557646323569898630185754162061605473911233321463458097918363066646208202427570550961481579288540883229003353230396107050279318288952666698883837903976957501511674467368471330690991726520916643866016508845076344555099351215763173638377638384671141524836923730089420364716438366115331993390234044748790157229667813755863963557954398762958100074681938087926251816953804436273337543706116233844261430639846154736451519609309930009215132403083537412883044971441934166637821532468469796949706028062347882512418251668250865507220717796889102818487449477282643513909455140177723066322590085021397713104961511648711826140433455739913634938805742082959691249251764336152488154693494268907850779045109744752024565865034637099299883397261408273601451522254405630803207945991715339176!
 3422872170450878294794190343319691017023570218710383479717932954991157
920
92339515320469478294720920693690154406848230580917488911385886487500749131218870763271690977708083525257944435448601775191536597053523062734596805023235721898558905341039560089534098751018144337464185533845816255708876495855516923354730205910233632438005458586289506182752500904533960703127050019456975564538408178667116033439661987244396483768977367159770003163035617018806995740368362813134362719360281940192487470354960218536424043702202111733117737412123321554678247826599839854126309097754959678930503338498475495947787505307478566421355283869877606205561383579305695966254265928676638164920523930445725732028149708802095853438573135433757008651575697103031822569687589559648766550563740614950371022389445402609633480631034661417275174429449180331913638693984994799444635303292262133979499167433481139707401751939165720414590363962807386167829495062447066469164079713764974241802541012608438656652487074907968039025239279268702183883524147602018758540173804505268961169612392714160575!
 5106783551724779573272131753811071081123233553551833483087009947858767076256551572829870479793512646336078268130138893500339514875414839008119662097758940956546371717718351150260862513759513277777787803465894867343416745047920718658364983677862863379928221078227392130437431442697788345833904221730523201026563383597109690730254135746409564031025719861425015680114565121755893001918491369557914712018107601786943352840215992363371653332179602899998601172247870062338087662714514382471342237506551157916644792658391462096221779658298740262179721314214185252260835440818986146429018683704019257045212468074382671776205512804108453405735637242935965420218097716513545022740241253050019128129996439696296062196577403351313736872750250963862212509402468780029276461273821651234011319502071119404256251722239750411134624173343190541985573929785124556189304433324053021669569553304750916130106418942123023322707217627777252044610980596199837583265498171542526459327288285808793306202639875740800!
 9605599795009637899478045242332656787770890206409099838168496184063625
31634494238809577785127143997860574245313819854091473588174869058846885862429782287958293838171863536388145605460496226006026541185360282720812231076778628377651904791992958217669777517048648970173679920371571137875122373857226706325609794104763396763548789522194094485595043929700447875372509565703789558243128102410411494276944918356858815115270378453489968892134566636542098368231686269301012852898770516006352298814211037843043236100348775131548170378648361569105075301740717176881561026485745083462795278629201263463814245593404004568339781867888124605902889740727199771028810830736168052638406825732278384111571023586828946978006154229591214991500022649332816988329935092035136941492587950084063073017940591190865811282952875634186470563440267729089621593498294872506366739016196871520932865463375817206209146698650510521999245569441775841159876855113864387449887895506745783725220522504089001858708209087473690720292664452411827698334123294355138713308577480537202659586135345115273!
 5985099829499277833266897867089888507848314712249096379564394589567746188432603874583478716704857309677027326590082420988405776670610962894114682586195751002903987068949595208903746442444139716781376012146566765354499370037896873629472128268447183444477016589437252667821268231496966063348510338558561486104474323172024638426374131736341896093499073144171300464165913407349738536008434440822021319579467135132295978726686122349738442628827140550521495796306500689135196314072746449753020991970485415421538297843539935763418210649023321592222107038069334614347647376244846340264155243763095512307241433844674238383103198670346674892297986047566038092546426995534948209021128511210614464196709576943623265103461367259057383782647493783688530137370099762520522616257550856087862624630586183413884996822113842990363897295809072425679859918508991326587387738271675466911574216218900847013621578611750721390702009850512439360594237531199462767869131057653224042328574789457846914277146723207457!
 2970062947218956663202239035438146241787451861356093787650812550239238
00244583136512595829460753104319869716560904429826329663925486139172368452283523989002869427550319594790849517256563009797121211813792311242976583218736489865596208379035580601202624669661919994372557564683940274623007128842207174694131669564878667185565200283750745022738291289920787816737996595121749370368409020417180929779269033007726309294685436202527829207307423037215547247145023083922625638962472394195342634981584145624215661799358532837338503723436807851977408068181400696771003039829132568656689782531944123170290157277657420244440419362164003881858421736930709734426112364529093401222236544554803262505280885461213975554725591887606025630614794087082024620063931680692942541818356174308647947381817964635366290585381412092928795588498710211969237418332156696677652757745753882524418768958471642667809995569005221086708571304411399293814419458961405570022805562780038334358767674339942462177024811365442331318730696170107586694498861634805299609149274587913473835774644306159243!
 0822428894590581357744977472522813325278674123411115949404713448567161332679931224507226884025140430061450623693305348119149881133008900360477064903008940410850952413392083886916509974335646935507254785556684125135522580390380506388003824223673453415250993854780096814600705579252628117609299761065939543566444972207901834961376981430930317983005690612735320954502219552371071450743182838829247561579358916201817524586194994010514123620749830358915730367879907752279856340272443358772321312586478115940203109777824015947779684947823037363862771265731125975567309637615313168964087822678053039614109907442060780848435030291293713676696289706237620395661695044295623396543120306109740780609669080169811156312182513086865960170214204628451507342978278738720790736103262072909985598287755457490589533451491369696331794895481485393390241737606007976879072303463132349921891566574489839607760301333177444159163871351192354311592013756350285272728539269343253527499835243637463010683143307971808!
 9388818965729519274066362551127956430450348912679333056971321472326729
80173457687616327631671767865004664169779469119943276285017103650844869561881320295288549836367425464093250415731458726027175486244684754233549925592332325626760512372703771456873546835026722833351772912258222033005282557003411690502086870568457399716799279784463092897062481541539437191615032791353414215693444729940919460210079538858876812842757761404346152567384068362456614856935253522151100310383392382868894582696961160325264098197650059640465472429321270916179177392383557436732771786751818299894014435732132250589173499342705400068360227175365792753443363029395379104164754911948349460486666677649999194447304493045859577152033057434355950683260239456717477234766245569365521735025034936715365027631193556694670670644382753450048406333024252467596898544286556708538427723151919010945947111292574133069119420383093622609854209576113878236641051122358839381805939751701461097527015830075592834432919206770411845540535972580205474835200198994496379381890546952039251878875638444794738!
 9271691554082401765740539955215794984246525200549750993075639553744115411871085104171990845685506491590496512533234021721205306267329299112859654557419908183889006159746722321076048285789389751094631920137328718112681563468304897436506222390556077621158222441318807674442151897572848524296424989713694601427289265401506495812591573944064100358398927647550607490009755906499400779920240190813205087212543652054108869424736695064705660712696443742977299320418684475286932319670571771859889697178037360619636710186139249665876230772264543830827280634315643734040296077882298237364661994027402531438804447649052148625805313884768612878175100520523302261523162173497695529283081145103476498206564510474310308747038039661104850460226341597964736080397513493617160667862391559633650485356972646300075852990112524202675341648170418143507135034595080403704347482016741371795832253317102207258400625259120090306565319008606795721552639503527940095510149116294630721228497089810961891244866259917535!
 1910302322223360443982459377556181320008530297437003438777946304535396
015
37637872661853012708229523786749493620047893131973641569806171209164270582751572643080412088154475938240264385939857460091632983919806061234283463120895268151423026770184351961301932923717435902805794905551992040578179018793658282860150957399333366265435737730371077152763827895144035045908896099776592171256601847520562269879459265705850950814500565093581867789047062914964068089376558486886154097856100922174462220356594195803294419924506560100670319865840280591897146741439049294064579107485376199024850867147786403533194042009501923327413942090676309003156219378414609879299738501156241001716423147521165402375690870885980408685608135294906588378242535208291070349890204960586810140259907643015290013104761477953629582478730541750602337083504196406359320313052899912253828396892382862780268622966958324078394719564296582810185053134829873991528814582384916920139431534080174886212638321103465956901934619439388439658290766922644397395879928399467621727176582501867380831874212312932415!
 9325410213905838666050517397022243473992411656188494603333347703261277994913701924054362819039817740591118907385637599839867380409991808398238941496996187056739401360164642112522487488865378406742158279096553264550427855611191500662407925915891122749447107062058300153012971984447389674028486946979554488742868183613781633207384488115020544931915617482179522780602597909665531149550322933534187706744772032905624643611690946956740409509447955055210923708893196384012275892415612687848449469228354726027105048755132158098298480732793360461582425078009970497397885396691051252847893875536452020656565320220397610422646856942674644182991298649641912869232324502989907008143207503697274994029610901248207601175196733415570810138659897447759044833085742750623414981231927195949228444925223215715690488622873206219935210942773158233806785246501635039151275456546176884831715566534398962131460215310244411079574824571828120717404252622006882317548187951718659160644146504723873740283550707338095!
 2788001141518601692105706658148111505275678164771596083925571759377505
18955527410039744408345871577053428169146708997896593685523965233564079254654194165070613454111383740570243335930562967646153431972095236699410029884949569656931018333432107028039064372093196394468393597299068554268238181660979766885583178010136389067909166461462360631285845874248552942171168985134389963304078910193182053414524850007101336464846229375806750582962650838227441778860555096685362862005795574391852557430900484149533732132527460949743738743948311866086755873762977418890101852334656786718409176278252945970591898609132730610617144561141962594001850631158844714355333565736493219550286909538182010699843297240500579889900547367389402150736242535361616318091748098025209495086138705879647296004055640274899055437073791364943439147121425281036406028365370077639292046169277231410854826794667789740617031733688450735752579490647349054628477764417856900574868993965610362677442545781002148361697737537975528273687834125837458544582446641291866507665368665983967354092270674930739!
 4865499859721265656829937018818732831440333106234113645581927908937039603086263634365831114894982264341660540639372306861716368243685328320649695264827363750984799474689369490658972072540593314949030740952985514304096380510895384793620293759524757303242254856132644214873208619674524595971211178206882281810689038379767036301809564450849594219360465585440938796664929482001100341511788516305673384898351855073583206282893882980486122672921981407603322602665631478947746549984468161393062642467583325252770015329295212349164192166198949719673314513779567712238432099495486979020753112863797392420575765872673063622393886229831428066992840879822298278147535040784263993477704330850412879858611423677601827244370558908206462744515605517589469551797729387393532738874748126106281189181669080027976385634810127871152191982078490234376972176340914212846057174485555964756248720089027526905587994031324996768231326506150020021652810978510846519501349823867790794829901497968390267056073063708494!
 7001574734043900648911427376415152556163183846447622299810735540140182
25554171543221547040306196852417882104814535081156771434060052303254789265107709173598205295376990379775429181489822300116356395553246650145630552591776772666731016480885410747443225316457833576006172121569522079087666090869189947659387106298326665857262167538913071192770569429921603209999446204555843429557819380707754846957011819368639264634602990426580523170273109605267638190158173081134598904134124137623467061352584059265233194168331772285442245827808603144999589097811671498089062681936753664318151509370949366895445727620745240953117078428479797831082634335354766505231509494742420929881174586404115677668611215837572390402975651139768122183064361830327739821778766692844679540916059240862631394223015451520695211240721107060839283466273742436256439718535784793109572782232482786254743131020757266552209866885952888123362514938620725032797955091000723121684985805160464590416135517477872707284623095682998585004738080812428918128561336951779797563920079071355834348497538989543319!
 4625921361170605298330260518601695617406167207429364492295654613727629307289991679322366222568983152404033907396594107215569170124001047820557877924137801656377458614245866166804572226436017581051021307991950385761472625372542209141647178258666893182195644611111761210454104262963178806890398019129640818248783264939308810338984338257870344070240758033277738009878350633409665178477631855343207107475888030760442067235936631897230742750763580325273444484220524480908703347286707897812887894247202650351349247409512760034745598550534524619973821501437869539184179111601848714654887277483414206579058569825137239578211589638701660898144981958174427800690814530484907532600460235235501767203787413999027170354259729379538180307303979439476658350040373498410238283333471129010893330702304688094345251537854278914337937577996189060073556129023394902027117913829702992201838304603092931901462300477190965218702231566569100039331200571597082301655776549047858899333383527163603284052287086001233!
 5724715914971877997740640325046448960646600445631478469785931599555196
55818137783555856864714506929233556470150133714145251530882113310976129305100114992138119639903818606882437369514262772023098657433322270986128888938033408784518576129331892024214125887627220539195283697188292167576623792445011584202029988381570987635713611885664225966212777808217050944300826390393893826756956527025424631153932312071429962745572246359916538341593075090009281999660917522439965677900309161795626697382740724363921358711224844797225289158717052092469117596114866266663339850042811949163059075586684742832898898738621407274475717643527739012320836189550872941587276290850197337555624103774403428087998268489460853168900817027462541729354704661252777528875785628518881894638396045927178964122398910618203731869551996208109898012621294308893325844463439203691248391114469133041119428866630845767581088453885758091160436514954423870693251096358797737332668701707966881877220103755603237924513215288096877344479380497856534896975619148259867719633794542670704584342258877185064!
 1015044153910662066034510525797858922151674327996118914806486992620003233618148346626758295775987140537269511484362334464302140901811628542332931258643758507502045447436318517601438945864910824138203741952578341619377903459280026700195561701787883289141140316541268060501224059855117537633676379102151871253532168059571360576920804683148361791986966717075020667043335411663325853133287172950584570887532081713705160175676855750578783980776436711916062481059098290847322354611896234628750968629024843898202404080337929551079685150101009596112077763094218270347381405186858943754984868082770006232653268528365946336529663333415420660382346684980253201508370030004096197655032881327781243003125670712742180318106480348825305042841725672820276191023632639663326847285972862022711566627028097176524652953337016434943109472877109174915734446573506364615117542001003587850258543010917780585148537591411106502686275900883815430639850936311897769957285386987667019881622889245800917361273019383726!
 4355015271666446978222021417882874550574616265729918193168057007435784
773
43249624020509804522430354243172281328675323565432720931506779905887421223159207520397927582942042880162941454307381143036883777172756886242080126755527275770929218091355156827141694280652524171938782628149706952390312446011498364270200081211942469775065308155807202491842120836830028245805411202415836013971730106100931043330272523310602798853230942416165868323264734476876120366248257190781255102336621614387479125610122334410960152281438285824582024316320863161047499056435219560282771946232139122963550869975893742015015950750024842906529399094128941738589881903254191563073285414207779340756029307173947700535802674788120374957487572854814889142376344355784961325426676655237088409090414485832628651813544144326942640830538549683263233570719593299697927517513790996763238691878857073975719433954980256379478816246251790476002094685822950728296645109126891274428728484515753188901032701437619690225023444029276529856828920332171373430352136920147869923374741523958412714733589679083517!
 3981582526880293017189406207587156992575913001524311564513616648468170061809554791197170731484479135738370581676279024563054020101653074567181364132495275797984426597849546739868457097390902949192102171958160280712265587241498022593381040416773034519978423603935111948482538117199640389824671718319772155254329801351351436589358851027927452012868564369736153872423250974977873391075145921524977912388830541603608695211501458497076310113779598404926940276881330802266706784106685586133353299666219473637651974231198443682002881978180169259575221054561044008488232656295465381406698050582952006648081000002747991761659158818297649602748016891888839661909521976672000780214732902318544194334671358188543015376746531957584215566176488369329222376898544834031154482146935135685089410163378284336668716340556204726331160019287179505937260058455651291449025731157604721024028845853953814216338007980838638734320983960328743494143505220952233531845362131884662528390488593980039477684741129279997!
 5546436540243552382073582821366437693584553450417557125338332159090953
45620657578726242373160757399889849048843776360098959470661728814579444360276254366031866893751029766919244106569403643369252197444351025500641502831403949741272019825695031893143986192087495275245777302921976307189252205496934515058025014840904380438067698029012473774550938682233218579758341157855875824781102119352634390972520004436633303238385675838257821789344318395599421923614245243881233462994487926425712274491626206716951510804206064475760873684237741258153972548109226881859079510928321669243720836743184648002597325605107791188599292046745659387452024027578267278781342392856658892171022659944429166997958793664096158182585557221004858226708841925038174865635695412000207934331345631385191707071762059961810299279999168614085686538514074347407987196279327630788752480554440127224687508837337152004739201386005891396643836009211592761179217929233819711172090530527275683510080417771468802260796461260256013274901275909922718632120518456087782053137297648652243716629697243926452!
 7550019164974770664061780679124436312162197249357925865243145894296515533398030161699139288493830104280792072261400672744255106445731838512968755059014676606211018487740771770676979600092928345233764319581585212352896000617826075643071905902925710434401088703084918140280509318388442948418981896583553866135488785290152163668509318887935935449735002998054989251787149904222286849220731428078912946610029888550968834684408485859383663072314561916608843007492346671478431143216611907829176044328153342098210116756622773524101654183222102234808782433369558962506406110269547115181354239917334836292804122206106278247839018861929974991213616314419076693864810617546741160162428206450728778224309793071703961550261378054833375773488726697959871151096680112554502665986915543939110821199193516811643763444879848262491488414128911407525178054739021615042009530846154573925469214239494349823625874757806762703106391446807329546811401624970441544822231206718072840163577829810789109671353933607183!
 6283878422560082201009150694085627683502032329806355267130174521406653
28159680393954605085379344809132633062792560264663957935764649073343063033307171408418562261149129358917539158702179615366857065927866059895783476315735888206320628919693670004043926757247222455292740318793616061408034076955701510279974375455173377483009342423534820848698227441553855019907203265775589465822566540530545824289742253288881061185846839297075385074346500575262072954768846488064774104322544585183091144611157146533884688704055060070672590367343048142131931222619604766478065864593775971644059399163476059309744145308434344202582959818050037716730207290433067521842572135931630473890386724586215727793859145174481710000846457683712657968596013486002311619141746334259428500248496370749475876390397589457418595032993681767273181396572066203473635897098237040666837996461445746530087691787003448573332253422038923557435570728583008892566398304470547415686086454951959976578932115840984425514094996985733964673419393163413600227090579305439401167910320656220003591538039502120006!
 3330614153303060208143743449687340078475992772788461907287066269865946691801282531372316084629418245774625227382030376836876047473428576618851478626706149179572311008992401316143773236179283493591502665596691118407276260629380805818937040220214411402062761656988461918660485812628727048385901620573791828741074459516539735372552248643412380895914726470093839170902375322688084252480608218410974499111139395890979282861953159059299187069948359147992255034237081746296241295224633354086061314800436588631704537027912853948492484870080938403509597489984863538881239008525622871608073764057151056946829097835800079761319674503131222938146583055043972305026180159599364013914958466182459631838268657056939766453726378939950392673582698970239845382923790798704846575166191431012003137032076347982579060779553247982503614375432794177258760022714733961995060981941740705151562655212861263348693468096274444683376657386937082472014644195299896398880197653657066295225852464751031826879308579350719!
 6394590534627282908975479212027923826220847889791768900437895746414392
57995795020392122636441583620555310454754402471636618027156511752709872397260937206940048243084581305796204359494150568096949024720581758047836241075427150741232425965598939903294624473158146437633766018547484461912629634178289145314247065673837689317393963958160814018603551903022069909966744957017253435075413689612047158210978201097882778920641529160101727528744879455584596516301371207162607518159291345730852691203842926083318747526162182788221135930243184316807807494161279633968226723514266303657537770658940922447156431531195795617031579300931297757009604662200404494526092191838367191300908673964279614066964144898406137811176162995884491960898705096816159951517551665217707432281411799420996714788629900930943313206979691466020860373230528287739136757676488527862856329873381319607835754703179988459280274418727231970547098066077080649469164086352051264230747420637895032935546368010489586567884759805152020213318735225970368752928591271533489119675414949730910598080505186257428!
 4805843692840665524625517001987972234991515782188812451985773024400488634657425709580451586333020281894307200688417661100351054364117598878626536557881284586702952009773781118322832501714187914817316365408490556355443981498091823128796361688263809645622186162120868038061302719299062497163732314962938711511373961732781535235404877781501199007252695243984936785645640744697495501749661246187422164842778468430228231898351205259471319279446450846118658654557717177261335928815903906922895110390084627421191622445375915194644690108479950040835068913216675542416651830335552319430371706799200216547748115718451001015609015937373229488319045359636065541492822324431132899389352775240077414317077568765829329306740972481850817723038965475396414262864253091925599525603821179532411214964271164019447777106820692361388401138815382806430364287096296811272458610396228126091668006214143362266371824865215860103736099849422812885631549163823602585804363142717002051592227290475774548553442851011650!
 4765005458864963477053159336761220246111700727265918253647398327254434
207
60668453117809559651878151594134787882134987318458539075586992903931127852887951902649254149256481898867152060665282434315770126603860433841193895811371004453095576764609001364086388194898962911183014702511541454865154345260551658026189736647702729958880091386707772316458483617668490100417284102325599889431850076821659961889303912885134123762928344168940748569666949424394373759019699014412944054726494255133694915982976462784276054270794711394425474020115943031722033296351540289817308410016715649341499894422998206743816245753201696900736561120505727796908478791956501242314421055831480047271028707734391502969267952949285106972630320735046215831111335144182513605175449797186447882448540643029782878912568012701089469794215224188097455948435670772702173733955019696772711214834139477575415377274433136565578284683894119167889776772357785899190156433041613792900405482134022006469984185881366966561598981101384918741742117300560022459993601225630356492454514839031564026101238705571644!
 4525143996183940226841972111502611660135034810830647875409294416930458347841557381928248028209679895062935236913974914457649529339649447071928701761509253782562982762281821578714691627712191488909598629458238599131915536298306017758150149120125812604071920518802749264795973620484844364899011181532161489662805994304245846338096596013380888368317203515529536062010475684280756914868809453754392426522378323755073402664747496316803354480370816364004999766873337991215901319835207710056041227883497731191818193540270378132940335676180528095877331138693969682345065694203489779934775155578909364166105051365776855295990650202040257549711938751065572387948398808275651216664320939271981876816038854404158826409895780437552392765074858287873065266632182159028440872450036029386057465385768858626339902890119552688730048964699251684198376064024404705228601670445648990239476144855034387174782879340497330150894600110866687745012628083866555802888258797776830739174072649517531156660843125012964!
 3757918116189693649793162716875750254003794365752066259908212970511951
37896782128759370847960344341559535578015040991375055165361674961681327920821489243005852750164391268333185336352731842153392977795323185808469574611020150977108719430767343458642494114926854846217320954391339488357150435338021337207186084622143975781048740935749531161216816911469770204518864609419469370932251831847613397188935690455151336352730169315465523227405833529188918845146625603134890629593743640104222121463848789772440720707552970781301569908195111197053562212720734503020734405757584722312077884375589441796995219838070396895291219501098764633965692420892317224496488259898665917176490953449161822845833902059474106398240035413116076755132470548522773640285913667879234344229388456908874836805197214612242767247797880615483101904938892738713343059858462686548966779726848389809573985380338040525821290550851594671791185772107716851027904259504380539739970576871256403493542418752188688637543230076940036444198567916574300971144935611350041082423357391965958862309497359756269!
 8666872994680024783544002029404624256177781349244499322712043029955484101485688831934234498907828021105737005857912639653915462820043239952942005966946216551280327228899763788883008369386348826382478493915789040526886500442290147850009183951573477517046381728584803351550599138546830890742473966741471513202045486057237382232299505051283123515270978503377787636932423778589367768123815900373484308926930820342710625129407963297363020145454853879122450997756101990042567069536886154816994952560512203313702442478482273313808417910837483140786905981487179414901357578316766455280559899496186526204732951564148335594905704408749083460878363243006191603557846255957563750827443422946480115082143276274100314248512283384690922250349536456508416782556999657283849045976240985043318934499455673772974282169617080811865018792502063281383657025656577861239335854126380917787105455603333307829199318878716133154156333393837883250403534990486362307091045706071998365366070384930075846546069383258156!
 4002362619109503343559638158928510693539614167503977916319628876409243
92350317043326355481390280317691825738972677181039819527499606160256706002385622745764841200135989937252698927132551581266300248985135520600830994318108682816120196443894621605000743332535757455830281232854482341647918208374377858801189862054385226891103823462271182324820577528974151904126633211097620920373077351826894083029389949245405794882903586754070938472649735347503690976818635153646820138525614431433772454717648363130884730940202605878188084500401267037569435067472713906553078657066401883508648806252732544782528876561539815744044844106851416551080558019976510448009445347144217331135711651341964908940692355882429926308377169644009203541368543792808442014296950446176475259039988634534442469692519541270730070514499024976765634886804396685196391413997448756843434713683467684405191628302400411300444463543904105050551088502982716308576980991021240051192505245400533996852921477011645488697170458489815728942231323809045241271828309703146439947409610886060046468371658600727223!
 5805456936804620574533644773097430170124146808997957386846927287223622259068626339883533362027522068814992612062300651712785953466294558259466437724816267553729242003179829486391872102475648798536940050104963216074652924836773322749608074811497389986871400530682225384941913936309214071417048557483659634303788128488549391609827907308734756351595963482816652177833842592297034258538056695427640973043552986870607447878725392814833309881562997232554758428313327586252480978301260127370011490345603858089190632180191165987217371403695083897073053402945120948861596505449659844213406249175143183564091150896330302839637629459504365855990554060934916627752537104516849725739070078603851725980874661265852194203748856330341725047855407478392554706098690884638252336910387972543713660952941573123981923628128871677629644892742231652195578266169885604119131575024210589637570779428216812084564224917010541203952957120195204321577912713964732337477777194568853725026845133408658362420072196879656!
 6457407623463881814836892183367230421862258474003882381293939066463216
50327371607702547123190585232336833008300872371494795849051126477544251350772023720673832075963020247265998516742658677049842751862633308772020411931784831828432189447035934214479550387033141349613085162883583707743281052648872826234913493661834786585508900304036804863513677306279007717432024087739566821556383169010092954027606402474071439198732914043647161383551833645316119718126960533689073401603838944899473372068908494063306786301696626351098357307183749867588470716141876867617424277220353258026807488049625956064828461933524739242343320221459006746842946377469537895571555357271889083284593207426913285919229184986022981282280281156125065914095225763894205410569422758638265758500240734417103239316490890621423045319016769234987343720666309023286305016424464316764332849117137181149326945439605933232361316223858849988461618632042813841425101086069733490471207050366504931088204149899678978751518389407152971614017417997731332676393001100640420891220962391917227627520138974926434!
 8544292851132707631578257238153395909884503026960993179975122908152501855633482256305751077881659654074178292693088369878273697386124435630416863528486929607107487147655711458321927039813842577154591047981591782786270232361891518263643159551658580828189598847627137230847886884458304490627413686331191164409876379514998977598937544375701624699962326693809305971983447254938670482316631170493064618586535681535008208331582919261669967178290444923678645891047271039587162622282045844709076635914320617873453736936374475857719266070277135890465546417008132149489382398028535350436052476465036991751443769273302910770203811993043673912546782365571034199471647502602413124424663825461746689190024271551691903890302510641382436890421344025102077328766702293381965104843512724179155924195784561877156092044548849105075881591060116636880088261230040319509753165768303172966445381552456491347625164170865463539790286690287242620340186272842441562237015796952575997683711699430071758319046255895261!
 9754723448917973502767828477895006432768456340725827871590112454299038
108
18416077260809141532501146803557329977648018670792441749255391114249335839357171904132395352260973887966475244656380136935162480071656141327559895984363692263122188809770502094523033427763835717431788763588562805744616447897196609303957497899406020675271650926375959243699689973941438052553059663308193985331352493134957013215700116384513943609506587631577126792515484138916653002685178671178108765948267450526245086268886687163716323959518307751653569661279877033900058167919493730614030591636128781613090070320700150699892988543913511848723984889745471954236726007773118676558384958528648408387033478272153172143798151514128113738981894332849687132616043713178552940655159792184378068373073591761509725005860166881528072944041158694121739147017954111798100824035916585708191223061512917131718754857604707580889244221098310473984869444069855320325248412266707792032578595276792722443073305394491045461236411310832555489469892912920161387752008560279694070876504078130929334514297058017013!
 2134658310200357434897075366624514544509941012798691496751324903210958632697196631605449975802314459775784032010244743899259048302940761305779613662315563921437399925057232424877196276676394317978231467957658471921599365963487548545882900208591916437154187376875527090396317511549131898868248135422938927022043836507579898503521589421847131593164849035748387296131971482902137067805376975392977642476863224592043091472684156244840521672748492943799143765367706308232193622928138183236782600786776858618763207204749379536315132516278268903612880697303455181715018013034663854566908433427253567452976661317863687271235456031364870778019991012213857103620942961611296823591721942999833622754508572828855329885474248031898060380400777750812024489497267722049837964756397874382880258290868852974660688578989900148247029708075560299505974825476126442445575439596449777748652327206714123088803895183825974602853387968132310226978468356193973934814034637959085189798409609840842971576296868567341!
 0174612047175219369189883859160598412051385938893162459905826979458353
05887135834690356723062184042162292585152206116143542246258066159609444711466726431253598564251314976837580695657443027810831326179441740153671107898367742446773346858662144057072061236366007795337341804924072033375189369759924454815233318152147794793006419085545097514356768788706792256466475465507633818626209135560289182091446264389668633936893106357362701472698387527871760967633411796962502774055257795317023036570433731163265550103550067346594659421805123494820278628604458768705434374129521332906145651122170260002160708227294371215109422329295114982527803203253132621600457375800733907612056954988251696499242791988562689007817524899128601185869033480749183283753314165124616725633584467788869461997813990993178098045388438334724474114961861517576765342553521242044331430647875862613340658587467309015548095684914827268432827076411984453689371891505992504656749621929372552986031369750722050323039917031521458919237666201652995984040821607477163414541282040439443412111638873066768!
 7800461995384255915032137740016467159867416733549871750609664918535066031648270959290305318161399461412788626320715060147365596296107247519848562336531385342302462703391772981919769520230728462296561721021798602907223776131075992652643013597570633221960014468857278508784904691496142403665110004799805113772125683982499592285663571022460802993687355343008651039717555424036441723990813242728849140193894549337490278481223816268053211408005271764503032268352927760679475367153498594422757764560995043393276006019960205579910510861668942829176412066596042734768462071626155999856418946766148563377630758678278712220658123755988227390796635491556489329619622162402731098683064404601307368701352687249846020179910405881051225575753256758356449236957748930098045906576560148628017044559495967651038669342039817187964557077559436501961817857561370982728163928247575197524855404950587486077426524685741853543686715274619453295965248570780074049682185033016993755288796659247322387455074829411266!
 8135132862323888692659295449570817908458129972087423202142530840176653
24035708809992977278318772619329050145314236796427073119615503664873029534359238259898092488451215893291915131340528608263479897018468375567719475450120620702800191580467940095521663575769186087797782588367867876593117811543683748170704068419665476293298959391477099418267486986955642602555039582988634562870260348188090862166075536866096139990435875782595324954156901490356511601738598558136635924204718179238883568268168098512619402379097172549099755482010783211091530910356427824227758372138514847765583356939198025617866005035296123569299395357909511453717697197771520170647080502494300959375381571651531831363954064544629999399294748580103575533746994874032537017093990693404501818502132010343875345570571101629778606042890899871477382300521622170902404333476422134175883517846689066276154040179380274043664000917378952724076656046677917820408124305570151748319694890278493964588243015662037682440660440299195345523020849091973936365902525904154421987852278030284501992310947753956086!
 5786010745293015608621493558734312541128177290386800920643961617671484901726190139193265729457095771744852697749665896383861164006512623317738460383264001876581391325824902411073243739613678866567130179839767521655673715048832986729375929059821202410736365703000190557626420189206053484719031617174339850612182313159350216055471063502858085930639223306098859714574533181282387100474741885507015019714473651521416110533248264504370824533236059572994134558332170886187937499482104634279977984517297188066461693646723012264982418757470923382075981272696067391466345040337351037576990603597310589285606036164998393258145741737895610085677972557511342584377452462370536543744680465670683476934753627279442503424645478711323013566818307773828236930675812141127578442554951395153813211401968551346217757007734928010100904897575723439617360625652736664948094075744785009165554366646131069592090417864740185013742243576072425890279957389934327929688639586798596149349191580577880771505940661974112!
 0556503553326816420641765376193604609387346012013419541276783221471543
95093493904874846541116836524983953713625204812844880160786556739428922063385476938687318362428630360168497624075647402258456739702708485085639080183780634628879364198864122255741401647873747865826955614215900491449632619479429611199351255314730754593225035216962663168729289650819813022584481308208541285786915369515184246131753293037850360889464801400720431580524082480209138684835521263579142176901785249157219752443650556298844643369080634702193167750316149593719853789978493680179134298127954831312656377839122841582461481327953471803280754680054916559861869868384809727621105284044379617026912894204019834932079342623508637798001496566961798176788620080838329223058935651201323480102860333268838009911315696976872663690279652740971823115266730712097409658758036288652428795751355693004652280460199395103859199702409623916100252707018312145214245564784265332079129876675734012293486816263607189093643110766430174433502121952628446931254871938541022794255254267203200287918993197939166!
 2394918786492688150678542108702968509067296885037365986935797139352147989558901175451878384440661780286430102489312537612897879247783303292669838077533475818372691169898264286319031434615614063381614393400531400539106349150081161724216348790341311889086302609219815858090214432610651181200271864415680507928294337640775741936296973377630521223402687043716270027288157550263036280409034638778996868752973750607045751403864226966162907386676293447930618715794204923587835140536444631046249142858635151911762910587819963875291063114516163691196397941140535426248167293459567616720361035467053336729336690024661055361118184798944501766893102252306059224504034882879993418911857929085003501902387821437397429741283274927326875433023049596269629438299955062458333579147154807932811553806465524487170741466474169215421178614125602562377150475902046330548797414007996388792724725646139634362404802879681442546949856663518377649115897873987874384119562685909389349500618422634877934329199854376657!
 1416274226841775665303151598280220902274027409933265368017768433900833
179
30599030790777976702768236954768417259028760933375365220191404727664622924439951245712498121858976408381779641462410122106968916106798163478456522070855822557323942994714253314688131923576424463753120606394671951244572229377738913019137372235356127894547967382357576276761817897455611926738063122465061748913778794671873655623712132985831792273210956300934862654878690448176606630559003181904548280537279346424452210273751862150810970809878494385818802706501432931358719044011487797881875563058020716729237074325066762451110295224382214099840746078157351907676128042842944373574604542775114742139529775370728034696586884233918275733613243483872867233360189666374122966973732766459703670510676878668562340596359356001729843846773378616907303800277812163235346091939732358090937924274657304479127023728075164413616473305252380728539389550513350101530945449552951531204186102708114433639380088806567995371065281130016091142310770285901000827752113519514279938875882000016651425327190796378721!
 5223550145198489941851881672027197760234139890677687973820518977366272342192271117594384394264860253299246028936881102845824878941326960992868726501354874608658650618372512030789840018015845193496438803817510859264725994459776819985220452783678958662713213933220344785274314343167168140650621220479009216272536062027979859107980552496020523882657006239754509003972227570496045978527095711448908991988625307547608444359589950268879968119766263483463559410519007349784396959556764088183774753527606884491416302990347571119248895316180900732266559489925980655688594368560711635299107012015088271549349094666267928147989511361401665945414872362037233707493360030454533834809116542846786231074954643705182172561647605014770904492464016628836267016126942360352604344024186981110762254172483354332103186984065755036571698933077835603358054447441467543553280937324676270921648664975386223648138492289672247085914151406346654932728681239642085420969311164081409797686754935516787164991288363577040!
 5058614266201358401025309305594277243922937128012206973094580842830845
45212215892863949298865616658059824045360672887016085174390691074193859852654783450495045557825810112469150553093201461969996130623442700178382288888849689771905809240327941307390661982273025528640298367981185234035284460757506416060418936806446076040298147962252555119750984867837955696441930021065004304287227376292558635487942391688017135749826200055954541758062197529438197328373279105301776081843136855788217284337448012066489223020807525311076082769852863465031587048459205165740744698464682601212720547566189172175596680990327226043124707787030898467332924430476909747578120911871478369771246126669184966112891853836892952178024749876350284929971698344762094304720788071538043905267519199953210031734974101910903371975988601190927172131447034888199512151188164741029460640780639416406012501004672387397654225888513324582795117751788698034901144633075600164092651327792664252992641497341560332771687453786924053838668532122808854957747656504627855232945101807363189674679769848369819!
 0100264949279150417798825805700946425857469607383992135581518940567430137634512428010578589918131732392751244525964442331874008977715644473245639544174969582698370476192118661729792887103463597216053113911758442329867691868996209954747998270136767609002329705958383456023510904358980725549522974773267122002256098566280088334904816671072326553621803401345284363908467683230043590129072345748152944557194901726045677393821539728355674112378615585610190571301292134811933092541969175964888569017209194921011901295327933130279098803469329035183711652155799526438476579835631972888476037311387133835358995545733981974916710180855323795844824230238465119308386684365387062889675714224276475591750704378933194249886752524886935035070876613934733602458017481823244077609408718658106580089936081581358152746269680721398119467622020127829875176714996092843896453564042655825632638331787984695982213266733221944199579055182114173349642896186504047873810510246481806983850244292230082239462052302277!
 2308806618122790649491358828472886157667066699097712802606572481725721
19386305978018609285857962586378643803491442139855416453827736164243422903240391387234526453792360127096306117240007788380438450387558903723118832552445778530321034889754131859144764773586167123236242527681337327274888216387709172593550817415900869610809172631510429277780104369604158573083645199663652833124622316901836405240506330228591916097101358376439125562124301311544945869346196073970058239278554982325341514330278771009899045614090755159011291784850918535108636090068575401350834914330419334244614011055826728998313179246701856942708539220444239264641676722674321349630644522353878821802641833666752246235607495912661887192982842955175812974462260853107552449403960216914161290912040592282643225524554329121042558976265344118141853352787332696362103861750746729787093925472079445141794932218682651348767772843264297081948957283881204191716272407780514401429916683732777351279790733984389996729063490216326990287664352242462914108970237720847539345438975395455571244472335424099424!
 6683196449310097004382741801025418303206944679771183195261509660722352319528898860748979246277494125403624574800903017352657333308036043284200959580839279068174171953117574308105138974994192190974935660715431393111928056758554067230339903600644577424975571147018975393618249474027867931023547132397440203193138524886622037798062793337307260890656890900478755489229188963161572555057319018569760527896915128813465568536545424902509635810815536601146454512032434883803892093906544603416006020087373850185338696334103441740164508999343914644257672490309698834191052536132846449262315071313144258949196526555225915472365526706796412728571468729395155038234391083338277624882686293939370148170136995718582278225843767437235040232359571402894660474944330157962966559529789565571978791879551310171150761474616336731745775086922399869563913102875173483773458444825743097982731302655343917218273129387895324227912432915171442669193832292951215021085864975756435384553229221480052402730813504889618!
 9933943239192602147360098478385690578450921681394279577205732927440290
23772585211389053892419712098752210907082388778379646769959994601165867667030820066338735254037489398669650036613801500773124748794283726149712917197349801272610827445081458170586856163428707208085246027430242140949157795902335203211485095983532477635075735858544876692742753487974415624268913809885775537385465285695134471385326375899270347132257434276084845990775701338778594387108151485676492337296035810973009223322638141137869333885090049607044659316588626431722514099480275256111915191506673281026188265360609787228330656865031843030261778799523092945651123950608449274984002264672280618919800310054893228810637794783045725508040299928502451400096759976666446860395028333722874115629524547989439673758949881052033852596105490059792007467912930001811092633492500032753767011179132264470604792508898741857997419145791143251170379631919557799510808072652329091350401457626792193300227426902841286350546082328429696253317373289413637439313564286996104718353239703089271662494639048666504!
 0149343123405533358864499884011768652272507660666377261989598714765357905635930012303059258473123548673705465071813083257644900847203420260966288455500063169242771367561530247955704489679706611987354989675726368012102970844910896892506451621503740144032913860693685136462501789305309300247795106854126727948776866931217978400342280144281829012339502531084629470739057244305900847977605289832794993516168397001940195031994926173601010425818972539158957059600378930549489101575658474393440665345753448099433788189550884675053658174473186721285877609355025332507938742965232993796518569753681753409380560720087191547332663808681842853545665291358243731577916211126542673032359141900105088396064678359085142165790229037051688053796302757335676430204432330851427100097988649265906509571126998813110387385862713454605031307664991897786874440554465404681310720114521298246301214907378041245831513493680556441393130142540690606807281784085812969203753243321141629919613262533761343726065757902373!
 7827513191894688046362087722537413906131075495797693857831593056971248
766
32970081147530032570862621745663818307059335833474197989029250756148714540136869746453954494348678738492322190356989228420840090661791692193900487951915534678691617441166043925379284631911683636872398825274263788100460713323814975839238398895302599184672012734802313798818225742778042591602384814671448359331389373623432231091535314089695591641767391919135931771494685313190430218727444754505450927210896490189052094348933318021279901999796164741817578305650782726284675149936333577724288458247179298044422264562856449830146617572897733567820881147581954980104047002359853299703114254286518514919288567432439055921916270652584713998069571815666913670922433090566266146184338853922422377378700601014882802230046581657064516275371329156063556047028866283625952110905401936462058484716155413623948225339963135493274634495967354591627252843701570067362666172010101316318132000345334046962942585615542382866162762534161190605073617034034570689038207794059520227642912690781476327806994899109507!
 9210957306008018539103275705382715587310412985388605842786861269116551570167280045571764746469068032074507503862612734056925077874824994892697524044872642009702604509968021212971277557566341415837628080880034752515980600265036259571787264763712447171420304824097026602421533092278844762966875487610969218674177327712510156471524455317178325920540307340602557637604092404624275084841222008530980918888344062039277962272525431665468595985170106414390126996687960948514515235674068447591654244202047683646552125882636010135408525650459300798773198121626446824499843407959435748771776339873344708175733185333397040347830243028729976847490211175178229975481185835472540057777127534472092527231865296632869596411190225096618750634737557186205232028927507587911281728418742189589012860737690935741835804391758212078250411452292753755612199497758516396868129911268496664001228466151136236736625001069944801004835014866821116878380491055431885117007806534455959712037368331520054830767118702085477!
 9741277254364576902078144578215843718897721995681896009581900572601808
42027312338929041441545992641054172210366453456768414204655621748103699846094788054444888343443830500696783556186874665186266442675286766337466398909322136245041687654944733294761184307182663284472380078486394069270745295224757067480396674271527837329678280117693794290786443351333550924966601452962909087293179770781901676563211791342452286898549545598532504663440077502363815854264756739020350179397946951350867860407509566596261231132137236549783753759093262655342342504159563820211534927184789236142984042919442041817348649766746136583236110382722381895285582401939011458999580115982754785768219240671675282256002735407882524076776545600008466019820079986814063398053366648793553276470842568881976449485226592574484282729706538903706797330448209358286264340887802896529868652249690906312079678119657610907705550433118278405559904214994972367542558767669595604254318676878241763990484368190249267702282098038396008752027546652615271059599756343949904297302367346039677448781147107429629!
 0123854398326720980280913963821783328330313844701941902812820895771133016037148538230535557491983085321613138944475162402538524232417883742733403760863616851203725499493097730003019838815397283998267093259336987143100479368760300265869023760640879470930797273911949656042556449286376590288672806255448908059093463926770533435113218724829103383707512585723544322874903609967323788049584041227903411654529579786079992925839506861238202533936850620486550766042424837760749504455755853351406182798265489035079463939254598205090798083244048699731546386359847298314458023131171957959281397630246747176903610958144401129508189742786694626189482798537998476513542803715113674778145768289674412193730935095217063933826900263076750224954716788187869353047614977196798006554606710021055746829979223792950165781262960258408142261316047625365123273719297105819115806255357217937687262676895534827978555598180729969054841132982411165607612573107387226539629382786377336551670650420946567011571935444399!
 5402991655393083136039824395567723563456332690804106895185173160912766
36226655988657610924823462700356343032839374040587742186632688709724655223906114863740825835436689407221986752853297290853070798090434521236892946628873929304916621520140725465463874604581633439488833657211240370230090741928994057258787151006659573532538851016298546969712711484084900370814941503590875853053801307202439948911980028437887938679571187312227519327071685322072467303891039420962030528425210964571863645411074688186432094610302269358365882475596661794883154709232463071794058921487803551982572529440678301629945355518341525772553232567964564593781895351936503522653329024434522706309841016719829115090331262161819697188612489045640917449990119054740360811813914974137034509875491821606848149756810847650830770950989002143218993286832470935280384035692105723022814398264207705694764307866192628689108731874026455897089668448975151459586419517574034550363149711341631066086141704310608119646873394442728721055463475717242509543651996021570784121021773116895406987127415313241636!
 0685490511805425116638266409140293773516644452119948948752044776656315820074326646400145285927416751507938618179902868401219691671808917073504430670763204712112449534819259875517441307570306992057376957187590329389913717803193148207142915899703720319634097555602472331900849821121861015926446738482726628256077145848204974571022027287599811472177471491223201499787855865534273840629009281395933727157283820224025681800584568878193292806857853663073730387647356732473235605126303615956548501942007414266751670344552812356908231367962045685997358124563898542892973908022060725464357066321308454079485108786252394310319586739426343884787439749953813026923270016628902446942373581788657271118753862272091858245341486277663463173552777722972356253379927120653940333781418740097628130409986034234344783180287814563015129429936712425664396742492381214797397674863777620891367043077971721279615785510577504915564364197107497631437695321794706392756860799417920257784971866942374450378589007052905!
 8440481126967698788517180143456312930220765287879424779815528605620238
05635142147168805422067266745708393950220760452443308946012064772579115412233093138304760403860380876028860822276271385764064548398418739261009005178199413773103281836523536691145287692361173994764703666529124776488160168398143433100398154581945565125390955470289891349194347835271122417904157395210370057974281976008538699854879093140454025287815186752138913530264335027066590259060261144132604686285227868925022713956571596592848547788586103040745780995677337815281831891033705688879854546628331126177010639242773143220121239774440938531587839949115017919745360624361129332768483502229480852484614912052732159133208811659326257109816386366127601558467665180953496316273813921153988820866473636104004358280040309886527998745794389003405340799128325369384726181037778450011290225962489626086905224935299566498154035691094308614100027970758010668597651334019844987655358587339037532582374745872144450289467921741918618304985411913092291451231905038393388091631733951907678803926804462597334!
 6597993813151488273711088756638428783789021836105862252853146656698952319740020916540395043589509349547795872742364274833502071404167871303725299672017573976371320434749573028785639187444504426399632366745668238481764895874363607820231971003060657381967500749904415297526025846058581785060582425297799834349429918803737470728419504875647269963282429392101724641190111287759099914165818166519117344022868665757169509137514710658141547167711277560785296959516844908948641013867769619391493739754222893547942826930525236351615752486437155138144026504520101647848919291771639503201337997594185604822758479951624401310098633487756628403890190253514526654824523061409877356836076315347190244876542168600623388070312951828618977374475845369203389371254190743253424394141136180558052878827688437737691985174751242069681795340065500676947574720815893958056848804213729254249087984306912496896529225397767849342370691510219207197376852877021321957069885861306372933797678984946770483711509573548827!
 7480821722308210258774511265342650111912452703027108189542428735117027
847
82509361192300876940839088731030556432133841108433436843187629938639462967137777843376493865979064849433264568050686330886738700083596638516719964682771967361898559244730557048250068298394204772937919689556030225620342069748371595820741579478949221971186680434821832842393868228351602180212496883533586148342447724065601242378773760866628674654140558426740958919700632021420588627370835133458922210470580774391483168857037655326795821806533838589117621127043290881646783241756556278387784333488806522586549819826801370742382082291099534303272874557791470563308128795162816266371997521285820462637095131455411773456820941258986376048823452639353242457222259760447376944873166970369496710151126301267390634621974061861456435170882637700096481655180694280652109414955618490612727923592772679106408298143958449506630429444528597432158622899348509262898858119547506597191938378405405167014398355509512983488278738461872921367767802420491985846132057350073311035890701127539280987026935268355154!
 1236206636447519476986943140142936260190673677578311112830394126895128366119511565100455591903147689978267748127436554433422070245152465204128593276040380371015285474259152098942040719019240726594470673207879008339195352932298694339179449113785361547654850039141272022916581090690578596857424558281196542657833753386105844208618968540675765897371355988236566677668481823568370527300479871993384337855732443067820695532707184776762136703409217264513722805534912076510653328306061356269339268670511800497114881891622103433712054570077365025179816838826205436485425255179918088110512994793331434906101163167307794845287117397231786994798752957828636237059261627947055995777399338376637589115652049856934032924891246094020401557729735868172843882640074744217027263671608754770892176556755701139185793711175513783622247018705573508576784506944403176590751395197825516060704009308210529067035766433142823173407930386058703902038638695792524752332670989068519385394361185053146611286599734767751!
 8011355982094323131365672798765990644381693810749591472569967468933172
35786497563107097967710111021849582575728771459258885125906019960172294684549563006591207408507884719857197144843558247989089939133406908678615498825089728164207423064186720781405974167739475365257987092382104980108722331681332827844920948504624163665234063220348755662636734460900843878255498919186207893925418941745345570665082012517242443692658001041006725484566252271528624045617605638458565536177293568112509338989854629525483487546003176482345498093382106954578811818970845078814565435340999660679306310661629019093772195261596011216904737422645182198742472426069692778778920675686287033443819464276851952725876782048940763428514247568015402181083750522423686976611545971515514519787938972733774073996041964942018984292020873310828638635863478611730100733805210260454519663984082777093816458066457908266239066892212885440525952737317337852917977322740857783146138816187962684195249547505272344951124733838712123867354886084612993671210966441435481873857599277093446465212446972735692!
 9044635370156877491827357532724319091302188858144431939806351178366596823933638866947995798445628994475529273970598001966997197166712208372020577764239810106493860800546957269001182913030003026942521227386773570592791501227287243284058547820963480570439398504980947963013223758284834385407365113088938722087506661302212189799601899339299733201817011853716922744574831382346372365576592138772458911886251917664696832875229169233681517678820229950104030660973418451314984853435811504229836836472392487571555797570112348849761870767298073149718835316387478499833759581849315703856965207412348132798795635175636611097926868324151152705652022032340493220394882170496391217124898492172570972887764841208557756333130985872257143187706872456757725991615279817998402230784286601336169086449510047002533945477297554091858818843003697931224197706761721998705019750531758719873636067067130879116428975010490959005340093700421751248215324378108414959043952319911228095507217241083613279890882560058289!
 4879887232672838932605340496107227137024765114914236346184222557528740
67083794029027948573677575550980609932024734386862945974882782753779962747974477897812235189981054603998403359053786712627485969051384892967114007559112027188480801002157025041098391676446510046462671328123202289602526917447666433516724241156017805576156848741174122835430810283384663324775957981710442931572651356292004048873139697144914807399734528121679102507125351136466215425589952902191416059641310369569276843585943202182911878134951154722329863250609909362555987621958315200408442137211684639659545365975848635401549617573698855168351771729618726735788206941474382271096068401394736415758977627429485195399549265816148148509601719294877015037974107015028115839613622926734199837192945247499337401209376459647183777285064056422889261675065722978451161793486779829496971047673547593059585389078112262039543354916788103974391011883797379726660781105409946815567749575377125204610008694115929722724998667824398166036758377538169059904638210048770614526225577117817554829541370475216913!
 8231487227866260972637356923083446678497402353586160125469848530641729861463996342055586167379801656900934449935162129923412314481557590799630892394248200559959540761597903894089402846210590484515543006317474241837064058093780392149302349657815118636274575678441002253612022298024908273409044315364379233515064704927595557855430039435645956090435765134053703977374157740847542049875700965071400021424082996726244126726299831972550346983429538294114428663715822598581063764073866218663080655268427811779667851218105769609317603548128614997218756792333129990892857195027546937119971009384064349331075663852467342430412719980290752000011418759713333909831300264696767355460322420764058577393913170302940175941300807613930547302645326155193708585134691186798214801727701776526027707855506565177230012005542512485089273414122134575216571734853757799814309050679017773946036014395045446067624565762175349204077175678619152575937722867577530494240452332286872843916427013810686626344013573432893!
 8908076283835853796138997409670200556085899715441002991027681328734073
96364509085004548811639955561626609305438918622414435900095967926579441157319337923461218001960764552733916128229092128453505457111457043245695772937188232601179510494055969898645797030754491022621648939939764312298695933228220469872838834547835519397277534190385226898728414238406580421766617369688975224589377200634172423194183255847064010875621022917475606180957595267638458001114266862272115578839103705925153719416224497621709820115313099399743237695344350679959734614324100397970029683648452056039188450197552057505272730819148570364536169624700964728412570648472096738505511996842006873245451913495381714770189480279257711011917289388645321962056622640221517605471662693368483926317982495947928010362620966742512429429136305488849080419766071606628144049968747123852059916240333831187502404975118059459411123941833661623125628684915624508160893298610686607281091927323009852111555547084227720133215653676738172158378556376090267763540127229068046949957279219601603618644789703893468!
 7322749892359687614261611274500622926206734118262865594426136460245961484149567201364057691338425605054335349909703571581526040590175681537563664992860604984417691061817041445535378958147184780701780740118849481888668808622439023326035865493369324287770222375088221173181968412395043486171550329634498062097207613745204557111361867646793576865287618415534716928493668198942701130988801785362742766856903286367815033818232124854961868075971689356901502500840348694109366683308803827176912260496344455469737124673237381182029804944799468231123913604841199777326860575620508675418156831231385768534805013529583622839740559303641760409101815942895400368873650830667663054153262921229153623004786541152694145639607598641365288161039866955423823577078438673247372357094682936606888796247689729968346168202204346378242728000720637942116505877205167672358498380610544030607617079374253796457204573725088277558961935337556129880742333986030367284103940871288480596752852456219933722377829453340146!
 6947943932868497748014707531776047090122509354558387137995975414028649
672
26453841215493906757559034015243764241830133089001545097676539232564945346251114070655677905613876890263642105293483635072616321790015342613408013820025151117617050493499832591329119378042272627904121171133517501541561387503222440748795638549443389026384965821894172095970385699335861046851770379008529215465382837308606359584366903512131527654601529676357969865997023164579398764403794274102173976458805055856482536631723968818959136623631978029539782236976487328114721564132399056870803574998100783979501490296547952779319342379636408629832148328706180728232835502014780471819692095904926012845949261496610405831790844911278972002943546078100951391260959399267252456248944831295691153184809739245666100425440656704021685119056545632015216489134152979245583835720073487381904308214402732485084876074575573653641186675069556744705858452054313512327570856172620975722798963214023518795641457325778680146828000953912318324642937478202552952979641200116322531367730268536421950265290148618579!
 3070873316499479397615671972707813835904691852066916054311644910056413507290785057414909484206458592332327928328132228202541434041648522287498597151309151950191843042337969425920978317222983216448699027796120034260298536163231316752670319562195688650227444966670545493633975311059540568496326417396737893463651088562323023623417240377216658033526785740680753972416032596678913408773833065897936159744581074415695794997290774335360944197494548296206382739381100872524703074687814246349077451495224422683178652716478976011784315066438579935406677523084168481321008801242043357000803407681525214987393231999143616182212454982487725347873831205171533321316251466016146395066880801162209666448428675940253478810285317000460507288488660162248052746464415435133365798401652756951898674751317671054009674033616202948022071245287623999682244359795434141612591040442151490603015062501728782975537102392556630064560178893577926454585336929404606014844014534520423153770952738826861792516763654118246!
 3095642585327569778332451496441860364795783880610766655473418873865221
86153847498252593709209265589739683640673369786286150983820657696020620857975684905150715271760912626791468981279989798790496095377950384276448031146926241730684530784113985692829894408536075295769350229292247344538612604199534275345216532687888131389218147477019049757336008701301758138243797252255933155346017431156963720516201624312499447400117183946073678901739566654089836078061247388460726406259879332032578543191564622998337443653085561715436482034820133599121716427704668743234943492065884700163202272410802584626056738011687062190744719892497371666706346029430191899011314556394583304041999217213003521036182673789983054527438923791080663475049336649599059138360569456407129323250752558917050159765008250802860763438614160622952183219062654628158967934429903360028373174768734293758799318028774475559732559739070426428169501491337798153124425775972111334066895954735081714615647392234406923230635227008194316675803149694756865419757715999194305529893934794762016953304929753651635!
 3747242014485658462795280369368112309793458221260946904734857862143404777775608332513048150059130821210142722928213226037500559134046489438885308663375656769768462650271877951811998142294681547405430708485210758212096684404849941467845102199242587802763931226083898735764099175770307204197919517704438232113700223346724376893064337304697654225164717956335084958658294022311514115436648809902250325172529229052954067969509307249193593251923519015748819277065517980785002819223532891101047785669855281433297100729432436070879045304176320407042070954756300672617202035706406905568923131538361140383926295851225461362066129589748588580729928069757333697325104485382188601571193520802481027075078510200640130806075529463220640406394774684707604656202989489404596332439684119217871496580169685991024932791285462181594764102969632744899141386792687263154193729976022794898246569012359890063977095224814488672147777990200246510008687108528413967433382440477410331387423195125766366827290142794988!
 2958836416767381750969614245808282912159319336539354988779534598729094
37314946032193075465764466451482735246482137250018431767804233801204354538155767485050746062392939819471461358772559502664948534228358065692379433245480082426253743798948614113678163906942683785632227701433417346752791150314776041332637705647079785647791204267098748443002017421310571782462013024270022601453114402201181978014112610343483069469310515857061432987889589043073047447502171836004164621957790836003634475991175879335494178547592224370558794759449312007650644335701655295253881487415459516842011885917750317452288609125502439842570026030193621770363791946652483183750168668164219385095102256273072437700898052488298771244225840893765618381660334813873128660132195119319151289972314204118171694405543997945315947936592576252336689853909419539042950184734001885760534141046023545408930280248296636447649428743117625940234142037133875648434568400456812821976400646966642239993784397167904729715674682545595912642466637108954106982640953532443535512503488396003629429927624986856199!
 9333894081650820773553183993452788540555626683388878081332474793777284793686732468957543930041277157615332784014382967897777437010006666682835693619845204726293505195288843621243248630176505924017282931606956481049281112404018484177212169090338652454425137228112849986683741822457584531572940150427751089490029642414350641040920451887404773386087727477263773700927335003197538127413973511472195609953521010777302379992527423654186938732000718307165861587602869243122296217522182510601031934499867647743298295456249525204975059386039043694629022901439833091111306035561591141953868956768108807622149890044072363938873003846540678389648202859867488350948107179837018187137975553672708792757869849084777545612626527101277003585334612894144318039595069244031647255860526419141329260378380099510820986170741417584235088202977587008748067768964647267893583313141861579856084841300607263056214025820156378438969330843679753134375094401060586796676003452938056379902304698648355872559046175049618!
 8515759773906750771303121752320656282318958314622492633588931980423251
90930843453129018964946166891740429869294409957649414201513428649753134186550225525222954364839654693173429832732591020339379685567489527768916521799935357681211814117023632493004798248237514040356080425506731038077532330577645628365327355767835329223367485128890043600806871981591211884062374188628782212308699499568605845985242571586463003484469967180058666548722165630276436835377845764251840985727658464669452586823809323388398454550684138679134144111927949440225951706751458728448935578104603059277883417447633624074170370640416691900435431289267708111206301084320405698139451254212486123379906116245285450548170367579298460016103706243039870146762859250173533366077958624189876444116573010414824681680988657358850412774769287341619123626756299147789146577017490421296548421283145594254417753175492558954904180088680933730137925038846417962248289794690989625731064228131987451093982486440561727183255057556206658474437273650217716927216422278531043066416706824274020423067114588623690!
 6920039842977990849256458919231274633705795494050714646843796955076345078289198253875561076357666434645665492914642534654877403782559797876904359479054515417894580640308299315824724088722004790002638827051721410876521399384320318412764222120805969313974710515553816071125204687938505721658076929327866641398854882098556971230002771804663154196509475400841176050070303456260682400348878929467140608275626573187566222347806858902963909142705180323261168243157379346555793749314104572808636154502142448931391169823915913203120199545568138997163901532442657363164543746923069341318933970085193223739154608921192784255691863366175171728900850753256791410155589555881968281567602290234402736253530951144535179889059119914624016911166250894320733747781314851173758656994435137966068233734067995704875661586832917555610310096861668954952499338164138947689909251470434270065070052225859254986556751760382148907467517700025553324237816794963412644506960980515594270800220198785289747876913257528902!
 3663964798028902712946766932704207215316305695067478721372074168622141
713
46320691074925841696765992011581334185413477405943989617412629302566988212888998300440830283503331890650676054549195384283610126674967843634912613069075901520269474384113112217397152834976538574465108118690810120350565943093104172024609390132333174049234673007081238360873416166483038093597732649803350617018622903339030768154110402660261675197286635906994316585235502384576430997091079536537416787181006521079017754996622938632378025204120587683863794125844304292435696233631538724477760913099216135938828252141189226631556277302792365777295421344563197723791143887169329159750341945786904679248100613063988318925990077664897595867700214135807499182549568122278835714220544994574987130141909076191234443531079034915119945414331608540103649077411979442961230111103073718884111675177095111008147710538439796837863683337746820681169837580888903574135008723286204913064586130657933266085868527928178851106787853116653161700517743907691406716458296335825733957001666184770248302323416055962793!
 4439421419795534726850786220148324469026014328008601343902621003030209746729360632096170487879297397157791741193573419088549618500758288792778780461094935950851625975854383250741782620223870916679656116033108778101387098162075919452125386658202570267272628259911290278689292061588930537647089036924766805185384353520938023527748545158295643908082161874516844940762222747468800268389009988596538785339628958692318017098644638829944454216706186292535402269216598221397300032103124759858473389409212169301867072056195401612475673881721365372837267400002309308461881103347342473487920238593432899887047060276078235293656542954631603849917344938707798534936195540553690683426237347398214216821692063784643283462437503486976505525779891685910997835697241645329417421380234344909252635627598754479326015052750811390216185945253545361442360209197828714109318817765950387620517062383841807767170880271535019848386462107136257331599709640318886253090864666529905936575554883405103074002089813476405!
 5193854865184637541520319291930023633378472507191484297840476000373310
04137169943651277760174221459685182502047689778876796420761683790472292055770297212816662193766698871371678053355279750044239855137831953080546887050460237224930224187208505032429359022520285349771840183286228494850090483275543380636691556505181229790418590998115135619573868488032795153465887029643315510301196295201178056273686751457330122486822624291758537507039848446957965951298341482905683690390216258986409130356352183682824119846746805631687740858331352638603332147924609564889263608128645766252028044512424671397401459615221119281957930713106472251355254085712461253979530691109290989372670841798707833559494338343996142811634978245636837088255965320384767649286749796881222350674413023502284749909364982336019503957978611421306605984454894820297675599490080018030717468990516989758357895020325070333092057729777160528683963403343496648403169419255442579360357702634446603082139767515715368589003991975258234616743697130519903721088796503613579952748553581848521775807434339132877!
 8023900711068914695834696738916529831497649355542191106342418258176863364881092854067285506025623635290736609562069098083326615021681409454537835726490415565634732732742780666454394196952536235786794122125590380424727510287819269408606695795674965802036153267696688434674491370794477806674293500773408709217414713884417706158897093265237147669584204247911849116860184646813628971685875001155369556449707672990563054453254568743544776513559957176652316533587505116015188118121339317198472530901825696729820416111680595648684249904023140201216344956362474414827403989783186314242391386084902408996831305426933767892522220078719224786352057441378175961287577912995186116502731237742678258892473955283637541428124358637947018415471687456334373668349405862181830291498713216634216521807441819070230855498893905783141209765915505940037458639098765806529345260369300410925215864901073848586137807495731392728311711940863105231885703307411943210202576080035560692457130100691460792055193028426215!
 2424722090012748602713429858230844981190273154379732768200413633632468
41962748860432161701881651153188714334493667707576901195601441469027689384600632669788702650162132730817103423941892704014039645625237077948366644830043811514797160033516552813547383887690902003923778167644473324660898586670155760897532626950966703723312220538483780155624788050264801255377510951700954304758308552641978660960798357396336359044318969732265289887034445253451889336636898862348562075265203348410086398205729619025505221911098817317325037512715029494140297211522530605532344581859157835592567710886838157075173159931142544699664115369357502158625623230782660303636896840095725683941273159605024437542601065925351605888319323963745661093525731015846674255880786439005923613897959384571424370781850685684053390455665115293589089751075208776749191739622483102037997829141766882830415307047765162386647627105896911656883944917600839509205343325760745410593124882466449796949904081867454324584007693056064927737226372026743647381063654023342053937968906734844380871529848128666122!
 2090296583538291816271358022499102609507366553279508523258004574414911240372850927363538183236395367582673991307632497564041356280331281361369556564721925040974547248599965517844617295169679598077453724244740268354581140471269397332299571399865763725317632096936406806024775274822893269469704184378639570763099701313803387692768080094483480384252212449807374999610764560222424053650939065782247921919169374674166258415267671384137105961538481307069193609452991723652203289015870483521170277289306734649753700690576922851938909676712741057630101431750652409011436685422025646696764151338312364720417786933752885204264885199625699894971423004910379344041800821949525413687021263412047949083162267280468826760697097079470191580197713308813824093224897526300647055820089135808670265974246356986802379229589873545017016536561817866442012014400943421603563852289814709273504826499617863620291186952495435899295742867946750076586908424260723331950730946011732546048120279472363380504665809596363!
 5840475985828774045373875055718214994914864424427482382682200788573409
94763376512933316061171366378043239374178453667673946024647821982150795342700608852168054215911199695902876114349554723537088779124903365299490768902815895300221388370607980837828674211891765115806248885584861405236402173651149425743566496037584425822861599854972431463468955540921908812802638308018659080423196351801234440787155535699171632918548073992367557555952486550620529817673177024766863210762215595472070663893638438922864772339559106491296680393692489191650737584873845821912180648764301766382861595515121468121980794105631334853004278740188487784793492182163392941219236002039464271585330463900749154723272194240621719657551746643292619546666858841784157600876912594114754897168611080368072821787142360997604953027575424662327719020259281782823775313773723374112513258413562866985491829420768603626601326912293793391227435083444052095327794028155439097091129121683563136084568390015408017894235867808783846876934825486882813340051704864221287273729386276006116645368959768228875!
 9707762785914153302824762870331735133261028487052800130132002572219675077656133428730542065995269952263264963707581926016149966082965819025065470711886848500248588708340490530878629759756124532611344484909448398671667839466572455176922819275697793140590568245763834442470550971749976574349956833078460807846881385217135078547961903937488575315051668561343361362556062509250059661685755276202770348222137072379084532227427835601599265401635747350108442169476328407697883624070897451428487809684119602070269612086010383147016517090462142194851185552110921418878511423512430348701457551196597309493612025343283676250389037203998019872828804916867785068119676400757647596289946322311824149838145844432511888842060753171938437262547336297196569934994307680290993120673679207362877931824362626972619571734885567546185870049527811184450661995092499931172556953508916728845557469598927619338408454661399198137298724079948106151819904042563472519161976579407565849647928637232154668649261298344209!
 0912186927472555531910730472469484097852152949873901896849082395490034
787
24330861191508788851320660907558734240424255819094957781018310367892718699084357218946596840825951075692023462287566985446569205430434950475398917703666301598271590909949708273043406433138013978041594097403513190104535399777587070534220122463341331129398578544716625705150763532179062705423758824418252620014640395832334974746946996004406726680274387067446593941559142738067315670749728160991082822628936176178231765920713238912064179387752361354097029199031486282139895921468366635781601241855102264208188884586192293967334702103681676529496216419671311098554721957519303738712420237456424348082535536823966510904758669628746067667934937509446945690513999201688673709262978070401962781903936306861797030304184303856332471354465452579795039612177154342876038620305725389371057318184367105324460377897397220439309411184589891208447180581313059242001510732886408005959308361595690687332253766134011175284444958272999199430399866695296848029441707940607352582328842067929733841617989078224019!
 7385995689735189566516877882646956420317497667972360518078640057606770138686366572682734056437255301828032947238030989105090483506465371379605218073983496711620917154313607731476989505969222038130852251406998554219033437510011699918633477983279637480839262434758518623705464003663461830692719478986503587793488381228959024086741906367655391359584122236462884230302054506437439764707727673275704438574589227472431804259457427983324076891929865135237046646131696868011311104155418647505855177783939863856356071014296361122578140191699828707931949024872141169279360126848506193940492029059633593375656212345634918731006912906359154859812473517725519938227361441152067256087546660501837520977935125603043467712863578771826344481536964774445293729715894397633717237126665420954059258104588640384500773633856165937787395659847869165577181556572940780202500572734389376438974715640020465028626572571197840691475895629729608129155846939482327517975538445455891289414070309588450963568475504937850!
 7130786335303553188576009507996196988528039519642191983411749766896002
96094823056766752805180338863784697908266023036384448688001416070093655787779740856093241175589883365508265526746907603168655742255632875790132867470441892110203875982923034976260150174226076522599615349210057162184123263863324353955352069747193193126361455162169134029968845098480835334578864463117846869499881012269717422288056048810487162443722927035766849000659536194473833329849056889468232401704672922961548113301242557554137892176690711824613655896621729756196907471330366170895444572165480729618516962142637982574605252890140712159390083470174029844592834181529512831161476240324340354913564298979829329290033497687012029075725079454237292965564837747415496284175670778604582616414562359444623554825903546182666683961574382769364719148829817736236616552335191500862676166643505327503433969262685250360909056162992552360795454112972305099048071722252396812129124542836049665580571147780334018699342654188684445213869749344814766517160384822872034414372099854242179748357517657053080!
 7880981548480487619095261252454695945724824432164343685774404656071510519989638288254376826990670585574745598491191334217782994233543433526699515872064870851412229483563186229877573295785416574564813925657537330171500118814740904714711136827899161013968788220124936212136589480398588644492569434192899541297986411311909425595776870849773944243671747194081695006964611456875460224880378005481219614991406344055996283085901673560579317378419181023261852132750489841462017180237559540874904382072575758212375473907828953518558422122805069630657708347354378678239196008208028306970626374630423575617903187714192573841286040253335149810359486982571753779217991210950990652938553345173745540042368623241596261603734321810892806310388609975002592998373010213621924155114004506898207799262835085426192124307905273698359910955254409586513052613442349811411168217710546024125320463201865814548530915996582056552077805206660516399649678067977764309149242411400337429072067496157475575545579869143507!
 1141527988699610808964493459725637790148390280263924904388465591038249
97106155548529305805742445192926425883202624976884131348481175778551795211541212687566433702760349603035502442983916396417180501314897316727426133077687941406411965779180736689579629811604301476910254309823430008195762845273356000612211648786670874080577247757307171862735409679709191271624065607112898129064216869562859049114104337606858108530263113140737203100323160348636461949540545847332984129024976701918526736569207831380746303525627048500918386583941829299899557799823621427797939223128310530703011582725817580756115892452073614821204880813528969089244227598231172026641251851922582583918069591041326280170510989065676276815424006680591506211860806977180625403885835803900259144749167790470378465443348650786059624491011246431735901207704481615948924224545546713235981600737873001373011516141333491277569329761161254209699932119241596752456656625035181392654756429636587637897471710782293109836773322456763635564024057905038592016163881775724712139808819583771596263988190067939444!
 5788232275280358239952855103813706499252250926552299597018148449388032478518930135185068364508085660762956863389317614294964496015857916851339792667332550761916003849208349359808748740919409428046591796565570067057312321359193895926630616393518912915789926890217806576342438281412550624786773420431963654539485709147415501396481759378529455583370592933651493131186878116679171831914433363726846764376380341272666668204669035063284001411204734594123085134258336609730035903503681946619876193268449103003175996879050752807789758496326619955920287924246377350445493649425010875497240232581205760499408994774317937539043853094125941435516179648676739428298372197647486749719270041740012836374030337559634380334028666956138848430085998233577692320874500555954236652462941062680555337733686151024542015735047465083149906719026102935808466788175105605566909177631085371513291362864615217529640726610718815936901495053321118421358330055941769071110264369193113902626627305665711542644149329878137!
 6510750393027435444785961032933355953389744245049472855345473232739282
81457049876041917419678587711222113784405549385060334723282644117833139976367092671424713195773820257463255004693859529620876910998075046002206467220214864241889806132600022055647336797209752200798335626103679841336223873546094267989532929831018821774805728676221307219249172630316132710194970669556550981875760796062392966745901962317339405978469555334359863113733049196983126143918698775371108925779767324243048056088859620808320083046782668167510894933817407269713559839253342564020676221932918761763522107255253287143508788850033979705075569376236649598860295757450112989538056602122184024768414333635890237868697559660776455532489221149198534023433628957910330229352912102299310960293346787581858276141046777210795872815448089431078807480361267606419618336639768619075918870653691285134236533231695940094226115441418987722758913315691497557054325497588393129247292483133607807218624259434296767675778745502312154993931717264969048071357920869946040464463661727472635369970904284710419!
 1982925259505949719134313325290662127062010944172905553637855003255331423240406541600127569094223446079997456589671669573236387281213732807089074628050542976982014197731064638752279629904465104800513688915397756501210530881816748075638690780526859280027928076711287367320222525367853628707713159182975867966253811929392771699246967486624877345099917371778779316683586288011156567748419773580495275066188119010195561343316944472117060987883615860819364660293800206468929658824563131486158220822113319728946473700683455665291997622404733817929156141724886702564550256687170322360603832150819440300726535377947102944063450313353492297051613013819417025869727871277661629181028489073720767455470225862115710103682476446155075390224084433645765173305981310295969355994723631783813819235898365816996056959676140005313625769889409638902605833359874753351970203647597259785577395267723061623363729286431027880129137068408540371621892973788295161546213279064633069705571121640473821872729231966303!
 4790949786761508692547599680975685111937790156513507941224091122712599
080
54542567267708705228389086381411206845332266953111367840895171788484175649330140610661923932625535559911043975103033174863552107212789504380869917773607877227260330265321205546027473052308809684070274208051985735311828270022948775773471984448671850751064962996977734375400048863428102000391709897841503063721940834442816215784448683219629711697647854723700388050124989000938607168920994112487652984224464943802925014662524409862596863025295272886830560796742064172713322688477809858899725564335635450597320116300940137160201451615782847215694266979340085127337190589209027333165025737307209643633129748472661032672853149620808490687281242323472208412269596881707215872578230887037312613034436420754589409893841598530315506272523366059286775827461962756906673920214673293234767640862914539236816776352934427123701135418973833739546962318082801708486859719047116009888514419834091932515627880153970983806223629260303624778537937973738357442847356479024906911359009607651339883736278585732944!
 9095253090216089319414120813562841792582570237712368019647426841704471505943594292438312992806879197879235133331331208448366806379472578675095633417106207186846509995951587596459319018063235204798473526980792616561792513037462145861808824284612416762627297943782308450938255416231279716321782471261238566889119422818874363865500747472275543990776344754350679873025699436846432608129197973037677081656646077393187947371687710763150122863404245315317841638137493729014632594979282006911788637979005641549345012374579075890416453892815978743056201663394708589819366219994211077985005025436374526157981045845144577469668691748881798768360581697028500061759465860667606611646127423473541184921768294969008011590985202236524953756091554968775106965279559313536634221866983223095318984755747659638605274932609472275651070500816691665753705237815775223759335805023898135687763637392630192131576344816840978026912591978906847817658216450744108601391597218924891077224463279748503576395062047226496!
 1339419964414283903467728885409506866961176681251373736666207563183953
70009143631671427579556185997446065205108838669320047460485568750310739216139505412353194370460932504306793742428620600133648114162603480378503302478931175656647927138041669762601176210376393929065461862201673674537728975474218959104602822273664164818608269116230563661712310172268353326999519940208138825778532391675392624086044300599128592908962820514154993629509680531158699486735614662167463135756596440283695316124230526487822713821045417483561959301271821860330382644363857785906587195631561586529780025179461733853356626683374436196038088950164057554768632997864872382359247388835665501360767484073527273470660481440377328135377563956709820960841120608295185782281751299780424313168513909783128481079954986996551420925126451579636717497259217307532429406556856947460971077463433652994391309937826948199582307532934569899423865648140238595539224992884499160084326663840003259565252556828407565186864639118765900659648559734839548580749805390930199981219986626951872073716149853980491!
 8392201749146739314315477567545089557121083193093103541061634743107416538864022359292890434106298312812804718840154480272092286467616628225185237955389697653656136126319559119832153276702497589247851215444430742280411137184043454680480066523863134921407907496059488704437870884281882635730578044485912562511698561204762192651680995100054237995924081171258433544086313862165784937608734062916038885158433605587560091860628162803007473490270844125571338799078572784701353640488532029799059726623330748049573236980683084603353742893759177279077130973690446738330230070700056123552113519435819838423276601577870592107319395346332651504278165682001097121580125963682351404036451245274552589228142627731707476008877659226883339439662189291360583912476383340315842638992282060327236494900153904869187292148810065070753832474968758557098960173651905589530239561995731156526507327561665534232734098769955561008639073846794851203771291742324375973151503456645883090544696641603647062843582285201545!
 7932192873358603927033044520586531553419662889413789219672707602742416
82704741776142565944015523648445477124615642063521784636873309409193143932178020345462399168928709785225247886181882629075494291105333556892765929200005527628425183990088476314535018473946727348734804556359876368552325013794677224753303544333896795383288061488221731758025332088795518247119130747005716172375394703945350219784127550211401939273427817944798715154891428969550357252503377139472385236013987762043431234020934566046502383310447969865538617045357248345483159719235721961511520689563216959774591972005386083610118165594968486639755893301930715920410377806692809206616413648221631873725216893950056373403573144507276026759959481760279839965122979344838917982728078166196231781701364942296415753672530807430073214957995332552294176611441605737348855210171421714303176445477411825570627020908254092562301746233388463847346902281805356734477914641524312485885318179747711487753516498541090532216353050289682673433378738983078631551375528247564290594160887944791003384250160927281077!
 9202928846447539839346537583825976442422463088546451135385762825802981544686993728433632772177215632894777882815730037413068107828654796741381408840149564840971473928719058490501540688421785440121106613148432994353928882187552324743596354758182126845349766527063395527435553288171532906161025044821623458814654730496185491833431311588767688741075448817183326064273363009581162148222744440008214798654729413751746000578460188141259608073745101317516895810493668191773998365790456368594313780952514172435536708484403798260254854449665620346716104507329703174197873154871889925524073900195630410488809870253236431452411251296352273021927384593390140991609511166053808373955006782254911961484073987015256733094337015248687925547748193040913413479179181705852558744760537402520832900831068302423690197248970884786821484432680692207749020578286276357631911770800668977973673218013112809827789957491293566226560679512889386514991096378014822423804738475269070406789413476047019258902295154398524!
 2586950924904131946770327547807830003211233426657828171649459363426414
37935740502857233158847460366103057797563800050047656244440228512383900306246140418003970018127838490845829321517964775834403994578562260420183477140092659983375052885802902762753484773113356184549428599961553197397603871040068638327709059594819767442851617786603354109517060638555357925546901173560366441769294673206761680459140774576294669610762086495433818086390085472932965017973344146402980862154936924919552974118741502970354716017623797176927764236326571609276855859656995933731332473024224116117111062982555837126745782998245710296440858577349004252584005276935497240033939900839136989586000983218736707236800790524856312617766862461940321609077748638446131273753068138700303472272263059625499044403419485758540835040533026906877119704317424298441180678362797704826700719311749978993244914509365993758518868958674158888613209114841906851797148714565511215737492704222959343699985546275075120129152161141434686304806973774060562355420021347912178505308602214513593954853512428320578!
 5319323601597235385014168755109724391679210664821741962531076079740916502990575139360350911576693263310218665687992879708913886393422961554112099034487633864794500064255455694517545717942001396458093985161909362703806399505331288788515150431690117146381667553326419865337711735356669077346695623368177855422552467194172748459188425671045668394135182627877659595021615948310838582782123788982640693753475913940749507607150773972473566373645098809325547348794621894679354368125605086514534642699444276658568976488509662071693930329981115569994192107029169690851023650164767286080676849283941528151393370527394008689941874274726285182342147162071337988736182944920652356536964731015884316292268644933304023136760954804754872654990418716677576405104217864950836160347547240741997770584115454620093117543452639881060727119854069792570239293594907846302729870350862524151838476127395887695946634603720901849644871959397187637798899284297316298412338462369010103472664662653312458178048709992167!
 9420779216069582501565921791423246407027669943022372296526297847253854
550
64766087209931386917592583612869805279117851101860960292501547730357380976602212470491674478683849460345876167389995183651400163683400801615609561352975547075650540337069149417070991183499499151886608387705824253403218954538472810079136378623891788765199851279890292427517302223725418617905710963012017622716934151118296002190905645357554755323399999710340387666714300943790755256588620164525481814631930552233612314691306060729382250214497152545201729424589788008562542172832698900418996411270811285647517484073053654586937278498554428264833699718757378951436455622288056279666923007976458334721043092505561017589623988020373720193577823350317842053192362607081197299351927853239425815560449939811826829799522475163376800277946446053050274910568412456525338839767304004286042710516408263653824220619549770853168156079924887033797717590664711940467941551401708538197352530284820279577085919312128204023092721734575901319156006703620662001919992566296752655623809334390089651792580136557293!
 2651991746261845553202868804169912034050711405317496557139829727022948087578385399093453756087232291012187973925931290217571643997585001410810515903094098659787102658712530950166248268136761532806157960112814213643606545566796771245486404150139451625742488690085627839486024525262317071317340157419837267853907632272666787499422042993771494418117874320117248830480875735255106055573083628229139593475398158479623806581312243100885561506987117612552955675328606322290467144209992581291351435231745110504951728669559030593792892304755057841144736873867246133681570038895093149156168312006197972783881205233785264856688901749417981695734118267318063647190420884025536582264149555739266407606368376173993915505168631808835745386033678037326394857358813368971697881930837924994642749667718269768823988477871311645833410386523175631355555973301819037940111792955876297047475480939702636247160317415875343653206234190046357585116919905885699979853544094381402259976637657122864069026702278732077!
 6380323264940111829009474185442970939432310007040304853825126824036235
49044681142941864102416345579672370244483960097823376928568862849617786679705587704803175782567667332008572485360397511167915826890903586682377194088431581875964961872522381340933279197362445543441340285166985804553301563855715325696899609860985130703764531186440275971074361459099911312153574326355600877427211503174546673683549989369502224277421816996881855218679318403274092993099051694786960171050794895813471808955339830260470671678465208611135203011019312718116296101564751578754770288027670138849500656705742667207808752843674148314008089289308591940727754564690926714106657678548229859741696721208108541870210997285969762948662594394858916055982811219284712884631530709219164459931780874946516111155357675667166602700056412331584630498197464129599107059738092877261835649503976671216790966751325119570466105328553866419147263988611967423557285808625449539722726843574153633656347619307791032063413123068000685486977904999043116505594547705917481551377017512491317913781293856247360!
 8232975989777170921874524320927755114809863530019839829913853118762777924173911764407487342889987974380610102225954580515369829656109442066705815264776219140003635175379084141056786778157605625960449598669520966708183898449089288633911722473967752914419615553184330803872003537101375325425806188578000387282797520332892484852157976557078965876997959929512611547155495436654388697742590003798460801802836676853774980859348070245585578868491795043036494190824223268570572463988885721594714916928740129760514590322502237945778621839512234366486145244236217618640133580216449932350637226130505019313977325887782893425237293129848248667574714535953306071524338250861968078382498408419609692642650409120901915846936883523112496925851183879948496207237854895495666189462223053782022562411198699689554404854539533194065049794509507222416085495074129336383773225619000965744563392391106551820480383101359819124758176046175876366518614198843171101076375754095368437833829464782453897380195986808535!
 2746784413806010000837706226772598059524067173821798351093691831449041
83372334959791343389717272072101036383506273441840545225838669735295622870717644015158749902658047382697767184082959172119323812112097779000110925617940672374786233841921990926911440080728323594446528485303207436996098348805014661975622533773909363337921423666315832830245345267381900798958663309222135114933993300734709441896337894008913275588775045783994460708963038003265392229378944290736826587411890492993983376962130021755200869414757849917007815314102631220395682392527104908731147486850890635251070592165383298837084534155578435040024271636225622277277995841334234733247848211610788483729368005394063550158865728044740908087288693807371061960354162121320033623779110599334176535447879559443133833329790723360989986013534133180526571368190355814426700687044621814575015621289880246405237715446083990502637506418185253354250207824002031587667642511351012173814174031364146534053453710909226053337561540941038590460113202133689876900844922916661094320465943956384010759406739434385317!
 1843839775771370721003098526838951700974760651705566497108159125585994147235858978652686413333195820002910123883629845116086096621911397947067552336643160121123775184556250650390008091390946551350877636404471230052010693277346483061706049883334168967865358633469036467198882499285835281494346675288517911197777450426627700209219520799980112336428715097754281141637018296671420465596197554055734195948464220573863005961164922763144432292676046709348746046321370233408320979672971686348466025338773642853166016310330724597966868382079806885653255824626355317821116504956821364200955777496879424327062491996647927364880710384095825134546369482208979657709145100249188584225666440799751780149983814472684931538342079156093355273223529865150525453318264835813777307869770108592296691694081685718709058560776197954161159290284510025304455757987975528207649086315805489366283446632811344634062663681545723239876081694840652896825200864537332289080294168478037535233340079315994890456841931907984!
 6577021965502198851931749053580539758887043846042143766786681610525879
72130998258731714043234640822104098992154753231024697997130895458182573822947076612620643757325743708554452476685132428458440270181755328024450759769399346245924909142277797916915961620680751671182208717409837274673701528724104075963718303803548471999378896363795622937135570373146824889254102467586137851006056700203566748264458183419382088000417984290670679227380778519174705023264872741314448967822457845624351588079422057556986954659886404893359415143934944637448271417582461363995836459288602476641201795620622192391555369918858607697751938100306449190265847405535933951847514041685310447671365707534557047530701516449495572633561528294373060212747340251458912179314023260686497252414637277294814890052936744468212755091502960474646747586201292225834580081537282096826805037849164993626069819578801716671177570870903949501295076190285253848798796703300747509142969719047955707237014373585930514422387783223491305900024856199623755370201748625043077638311781704399026617108641229526023!
 5039354675805666980392987518195187840135648149737771600647020947801491912264698844143830476472490638763614061884001112204910045373127137948746934275219071886888423508844452779926029765192319648013930649297560951720359457699595334230059554559972534537768821816691392581159517625570827880425281551177247017380470024811992983238859986389104836514233950415192567487988705876267586913967372178573703888891903060904875691483358706782714947199926765078872466199385744298757781972485192277965599853193553255818640953717155406559991820766978474342468318395847297658640442101415067689950037693332876617034026585884110732451564259835179158886976309961168353931038595011812479145628627381248662695372992407659248403060307486670067995341220019764364029317389932637051555830411297256893100149566358700281262560759511815200380311822888162581424239847810862637689107123819680357873169956303993714369786429655818333878671226900085176607284668966073715813182911015515443964814767398881451273302385459576809!
 3482742728580888948078983479345035988857831334751523378855213444269151
896
02937782610926818884622139244553338637467181454350493176142827527161118883755093511717089872914113114093366325710323306461984748767647219932341281882757238643172202986333231487396418204963580132809275035183392323186710841219110015892052536195771427838702016576797642262664889359698192778925584882677548297367592904121427660312675283574544504896717758261975778943714188730957131999586245031264528780055478713526833679450431998562505411664736567847128491138904024650428276354935182827703070096854717782207413763440729137783565681690343775956512810649961930861948870709836177888564247620257436467183004633149099944233264210923257260046806124549122425262341886407183709604003602747646699748177606680130998785984800784883289731606850746717376656438961251711935545936821127539881466204334435988964082492132383296899640800221640776007529460948435611242521417153216541295256536504778602215814558944368476851225639396905552117572693278670287672794499271646927608760533283543751629676747254038199773!
 6534004702601272620655659987105674393703939047111405168473780951726403016391756408932279106671956535576106131063959540143598392407077482502633868264057303035394714610068066184399188587784703488147096943265845430138334819785085484299538692985393385479854189029726627234585636772663750750083806982043365064793792635567560878282681798950050956885107904545297670377825140394533225015688562575290144807942318214397177341548183802946874296701350284635214532372089431121781571064493694476723379259971440722456580814593203342033948444633166906855351076902384009652663478037735529083911628125166772101866850988653771931027097740284087938730620507254188466421532687278037287082776738434923396802962607875305522583346930168530124256448868789729310647365808733492543180154618740230315630411979995482535368396791598091811600451897963353544521682734595838461882540245029521880965284848442358395681237277459393530067365115543755649310982544803360559220503654123516786245959774512543517993265949854658619!
 3073482650089157180549535030214133206984321225052320385398592889411203
34239922853974881517045324757364050388805479301690753221859935733352985639371796112072229344279121704684689430220905330231314033431315170898869205320972069866494969709634964986808660681084573552819360665509660096501565719068569833804074117709971950502232276478926646427024704622029781989434106581442693120748130187901159707041078426818779281911850936093290279720332393787359537473956276136982405791163417574263556464782904790582688233153495704965011109861283796476240558532994743522280091230548865516764378799625047302387593398870354749472362540355334815048116970929184010546518050035764584530518816370666565955664773198916473910554153851224624845985221645329563588252858577899442145295008775241741816389564533159114300645315453700405493534417127863434897723742631871585863783372366606420732590824950696832115046664007282218123071589652389332616840809524483884186564643664276662483355807117678770298948788224943911754047653388692579547712169634638207362728449767574389182553488263430260655!
 7153733232823746997547963892840306941900879547401849394565756273739404871054042755556627646081222684691121614287988102260905016095760534042986465836677412920505634021475515003488051454185104360689557773448241897288761431281301279182600002203269562355040795404910224200725648513091555806615563867548323541891662047568741107789044042384787793162221619916068931617422337471102008393010085244693362198423026616102117370469085124115885144665350591763249756491269035349165558525115428154270882560159403441376132176288865272906262027468344653267272483379846793011562213252636247981446281158997307748329652680629440710404985652520140301355322863813773365243687604030245550553393904789972758471963476906726715691534464591131276972964837754615202792437900203173584596835117665995387214739051891688882795215930699810384842084742736389655672003917269242448759886076103627041634619184130391121128479051653577739637643058637120747446361209055978237687724343398575534208920056623351054038971623785268576!
 5562785513276818389518036308540359287270959750359546776465586237908024
77820416284886165191517860198473977609276414977474236877569783151772897564970858752383179673714040525134650401522538089252189372348197276660913273655330375652446988701785841710337963872872589335400727935985405066506743351751837189269951608926894920908901456066175649816883998555456155849115375075596122271832152929031746032926466614551493592090977694898175886593560749899887667214307343730519380184570223982755483636898228277021291391364889440466529507435716244591633903506326863944198887616193890220059440259559761736088308685534261566158184774054878397499961740721311591725011204811841248737849091037437251573428792152311667876081134965575944448199996493460446301806755903533936224832337490738367576136045772125271558580725938333729529964432925215618752609657607286996313384427936710503556692792941289318495800243047074970412324272210553737578931851886168664035231029411491971947121506321363893885721581544778873954084966935957957916453746114204975329172121003056203428515607421828741662!
 0620750078220638274652573536529844533197355053007033434844281169438163008932451431632585943515717105377052575235834430662571384273633261573165024237774597277589400202417239180012098145769618530288802808174102994657169181698035695592568003464212520575746964235979585088687300350045797256778139695964101527810260738731195828150236747628027960491405148714093152348348459968531034770901740639062146885204798394579283735917993902620596016575867754825920336869304476670597002154084418418135197020570780746292697944556352039573611386961272519875213511240696330039375883716069751942485520277314652208404873492724663400393220558742810563244338651876402424851078145841448841055990116366352014652213228333097975455110309373345618450275913339122393584488740012442937733242827738757656266988876189127727898666305730623800994050964279060043793195254515424485434437448844839156126868584438570951606485620809543726943474851060203253880882940001832690765973615255738174926966767860682925026115782129236853!
 2287727745317796154486100475482234150088015359200501057507843649149984
51063689885860955663792806150682049438160886294368937120214790261827789208071294336563736038051462160940755001489692944034511100297676813769053533912522463733033278288103929117910240228604823187168468018618606821048712691545885598935829634402872774887228900186055409323330533716493118128569915384798386762990248197410616136072681187833089319940764560315878864647696899474826730505527343194051985468072114334369455969160521984658850098655379598456200491665677948109005714407635239724157841660417118464252196577128900780349660394067310150705279226678031785944366038120152461581385015960352281551924552828403707761503196959412415061937821577204622439650190247935590596425801685081773370942162137362936293649943615015618008993546023070989495576340536793127484061290939093049005832387970140567466382555907138343857963831230721178510708990918877868973949605156554401187862906956806689337541078275920431470374865201563079447869640039350730515472888036075121228129589259670214143711330150729694839!
 0071351251872124742541760060044739767907337963736401585881339685086483447184584740602610694058982500474491127245454873298873177945657222133509938011722172640936492097069467449144786959596447657473548918380913896959164538671500303092383015334437985146966947997813260695417814546517515005658196066738407362731095413149629858437373749801996436690218758883318264884172946677001484155354137002502657751922116681144195896823337181987437899959153321088566253553459028023157654675507647779698799361489866987906830337805521434230263567638210377338555853705494135697402073030441337161873332181074084002661591527371652549580176963862622112457468284731025052517606271940243405048811968977458400111574951218502173707393530659505104602731974502284373749625192201315445120807355797073242920291207009070955503206977834063924531366377432666747531272717663767357486845964937483603389382851313113921088838544198359076762537210323225687755097961166455115162802709061857601184228720686861131075231450923665599!
 3489317789460269190510009834197571855175982390280868800893161894990925
467
98865955140746269482205500770710950971554994752549118497646476607849215499553791939254557496804709534731845725682421097381248655447091995336612110483737697749137885232372081534696027377948656931321681929033342773311644776993536622050198039854278456977354976718870249664600952227868184023493534169350209815243830557690471569521248897368510265435774168942048255281017854380755213711435417025428733870645189715461097779705393803047029744884243378813501205236969960083339237443343698105628668094643286830816777488254588756178904349629762336486539839807616902382308359462374550217686905149329478192950706242604602503463849486888908890219818889800245843460013614362427951737874473772611316964213259124986216707777528168115899531268807111063546411910677020339794806617324724053127516336377281036287560402779734992063621993406937895035792374977092921226921583095769389876503544769214220473523445798797731516573147467059265789730351040447169859899237778363406996449692679317764135408994621345099050!
 4342674638209606614320709813279717144728973827573905819269515390127625839751261259132256039948201528754884759027553427631502752830713018487040701523301454344676527197797273583704215279040570917769047864762310031635210884047578559111151155706911975315110684651296199306932623943948533289187799875380217159110056140365601869423881638364772057471267712003582708858395672504505808792209489338348097361282031561424100252901898375253853427558943652486546170504226810773819824755954628278064896389719863754963112858827876472760527321397087749753428020807568315739864392617689028276163822045864609231664512183090955832462759387154999064040806464183501695232547198087600875602789975960393299167338315787387896068743189880754127923977732740151153024201960303507424472621808198298254186868329822789367960750804940414400166194163714546274325115671221941291765832229180006868200023164011312407709392702762554406216398221468982184161976237913328036748310008313310501574003452758310494549719345059466153!
 9350118666936911147585037435735824364691387424826812552211717088238374
61788563238217682680158718131446782606569389197435787646068498457698502503613457343490670545419761476326010634767698520411970943625852961633694092035403772732729318553944910999852707820498149681398943453804534530215510423992328459791188724345800789974414420627639123388392839582939721703247029548158271628331104856060057896318227984111817910739630979610659471370532390721307829064869299991961468339289668957887002198771248398097842560822626216273393400141665804408530065776768278683879946331743311856310973816859863783417906194627523715276286410137828749915006315140165971008321133065676732713876757799853886792849841697264943978109854520482038315927310402495071324097904364863656191707328702355147101877004987841724434429362779147751076775583420639815618016958575667735922378924530398610830676839343551067943258722222038807655007944175282887763490069292211893770343004027147650671626480260759976701799120351288038317367970424808368559823714330440503687457400084148349038621298381116401701!
 5079813703059233888539841760398485081089569019780994895216531061181477863657630323464455057073015149761597593597177515399937110017429766720768981849548184022560995487567785668534375098847202032279702720576840237273159545165919049870928692176452541517620509355973693590396036776851700519052924274489650975183650803488993480208399634509432116416447999990936818650638337775941086154962754363414868303434986267198245843477736222837728134366568604058679202180972088828178672461029156943719690471418933249685832050562688246813390187130534095013323165990376582086700129225568962611671270336432024068669573251542961311637701290180338075805956850497477365362574393769095943380230393140073549484179562815136540472005900685975545295545812133458803362075178970964685079935017586245535664239662259998312556832705674165375621111641456028641466713492819431482880415517312319678125479113891532124502025981135530903069741615690373510020692136098048666854212537289449025401198354549215055122432469746227639!
 7391785810189771415246638350861413260229762884101890885299612254126166
16264621956131125408833746963769936188326985495030455443965739310539958372781787052659704037457886749218191777429191595623531796627993668384956710439760118200473368225234321685080967065971812593269780821877651085303856848735374810121874245047222439759587113791168096078951730779589053791320858034676740568421852604675040101111473137224694021747400327130712116660415710543122458724268693381664828141030220772238135276582907491150378856694350923201764182064238246190246226506998216299128875611400086064224716858921603977151747305711147882486402607142746840247333803016945224017498304153813451375420521275258580959289348975142157361998977921023573512395985803935473029360474794944965048034066818299810697379181225042581219172540368244302908787110323450076031434341293796447821190459396493525347597698067069006108649411214693011129919182744148233151378693290059688691814147323199035482087707878494763205662076464679188372933273951775188907584635196278909889179587521568928333999956628719711464!
 0469406726708642522060014587658809186897754983376358512785461627893303208586203455893128702650679056560833313867376201100797890689929335037674932598327041754120036828957040165192630479332160995063231453338396682723488238012551855302774840693900033205907230619063605289885449743104361062168084062184276615516075499908090748061498444758316385409487985507131755748510647450324565428251374425459811807596137972307650130802052457816790213172975750941542783201372623312290806615489049221727853294527014644900423786057057950652045476924727559920819856673824000179130806752397453243189821366249978203491248342483353684410649575400187106942743406800659868949588928719600999780438370342538991733068576018860496011527615778606917341468744312176999299567973394614211712268491670639881513860381793463655429568326097404603491063401601923867423707807361543109809018098747948138833779408414927456255665885889088251254150969253281193845373960248386488297799940855463765898715429156701920358292516991700781!
 1476218026865540993534714278761651444805118396844467759092486076038515
77160227284556221118030922812933949280609873023531154662646186853894260706589340079346668691341883360242054489236208916813348061284278297405708875014861010665104989721201400929573201899215375516238138766128440119319860396208209287178873192336569492749470221261345426728365258353589136776690076543427737465147825179954202020662078078411472667994688061698727777008378344995635189083193838576742862719296773130643443745790395809225074930923936478205434649814582155392852152768850079518215552103101878871136996713994262626479529058348650458495571933500513451196546156423516643010663858588918905253364499570746669056009340092613300633431282675108425632168333425615077760493274116423990648898355405711388611854371124155965568512971836535789102811696234660865329900971350441410425324275210544381312281023715914731363191722118477330813157262701545648219901215483666596424798589188331341719500607868301502386436334961581773373417229036471138365090498713537936188446313627543372995227388893667696307!
 3249119563890902401942290701019885653806989727423631067030533427336319591026879870674179991462399818344412161891992806441647242822377940938393269541969768589082700375258276894016276504034271633757186969088014948812382186041976353614872263767321965845830107588306550950081900333219949734497774431871608995930244844533035147728804341179244338877336806106671324204489368852999801591277611259129332011664487679784683180652114247380140686834390464718033605143550546012970862496579013436515658014580823986238064143899881418491079519671129503462057177127043527435154761906727968205098859064841151087392230233738505584432952047423765765093553350861976155385781202981421514951271192828849888419567042140631693331546692357285936631912996290825080074875206652949234238388374994551668750904040341325332362879761472736519522631520087114195806672863375577959497086244109483126978428224912335706018136855571014930252642942494883328033130746269305300942424604862293710511056767980848268835637791230599199!
 1853376853230831431728101185073678737248098063307354493128145617448556
234
55468335710915128442502172330347632956719994333611795430272112690280528344093216351445313170601454208770752056790219688644149955680945949380707468803127755473553467779641090626651842912311581679301930002186240011063605909045086549102786712172076409430693933861455387215331107255920910570025018144365017028213295012348369216783221360600400581319157066136663067152985998048215735502642979603770464384259907229139439734676660691235272257691633010977115456701802053787772652672443069766088911767849434425342349577186629451448764832653213133448879797983597445774803526335300687933609212886471431468712063093358572887370253528570253710658617537721534388972732635917673719555403119365241432073527218891859814688229808464218102611898496085246936026843804599836257513122180990623438873229147566246306543021558773792351599166809354456122499467740962383391992334677017980486969868779757927612682197694570214266432126356239260386327299131679661129020024705451999766872610140907172199969973942602802313!
 7279835522510644993962092180802805045623151685133970356003618511309459168686051425983990261200845956520685366355585028572838929539243397854201800138724251645568031555552631831308722681060537187357871019422022453282195068033203165355698339575814963737877058391645080489306956164904674400918134732131772786366024421466729463178476612830308275779814727537365540211870465052640438110532298456267394898064104612495659231368511266538662768999697764088518192676203599118447837472913740987767154459394935533820935023211194036730814733955253827903570777068636616417202004688040025027742871957140919584161157566728402499354790371436537055573246678274511370918064461785095348290534004433594525396275976770578831118976243409628720527420345883029430519442403178331476913570075150387923549622437283822189060503027300365825494488482008527028013675591438264208783139903405411365629587584776841279001235243893095771032384935559582337023119149121942125649040766420709709563537325920201696737708510052373690!
 0997463272442639344574208751889494850895742275529794595588754951142716
93728868650113567914959572187720262972207997842844144909377540553081696311710347638314141379441449431734136789817274378976291639751194921065519145252719824306231550417948633398806571562209805197487641864559560533400563750448099515775112522444941113024305304902998787646959728209915599248130218790124341526632474973192356209427579290215905673190713155120030769044145134986688614379370519311044774650263514388551922063833804369268251820674363411059568469592546876388299960085189488740157399362740616490932719282212604077075779642462860879412101316503280552066412076620705128828568696076277392755045464832922476044615085142704656988234831622542825160477140347372401543304039490333967518903719662259873308195117789456850451205495757153504819518073934162829789862556262606419680268468418312803691227675315244611157574216164810706661327499726568863136898868062549051303633778377679447303771520076970502931560538915811275720671477971287290810771264368526236904680225016631598471927528348549066316!
 2386324002827879654522967035669129166361621431671556031683545982823672679393230922707108508868024885518590915650311224750304017113261516167270934366616500409010154054492349916860890680187030792531022595697923768780456369753783734951923460288441737204744585437176185612441965596829716823547044011405370274430890467734887797186138291181168715008571979256481174384581466318735209511088899256737182085703102503293027356174118000195615770537251321966331546682720420962147306346649581856711826642448889602611679417364852354949633265407960845434846133986609526083042589591878533799856564591933966071598267705386668043556794637083635992923396276233010124463156014125913279301786066668518824667300435116376682251108692323010244067536860411891469676802446674160102914586133642084833947401468345858929130713627030554118855947043187912541477571929143857090952396391287787119382337489499869395941375786238732227285756551326177950799890967636759509093837746742967140510846658586080483630233432324174152!
 2810966828810299304868372758359911790650726327900997323925791158814352
44941659407135605425348889469088205366642242015324771563310408098665348567957955815392752612711168402927347131665470628552921313256139858042559240399199544389552951659846997150499622444655114080445067707514544529871220328282671795157501666499773224293787792189630839182241323837237992733157291355957213486718575523239353272369647754518279435834046719040661870048414949529963395702835435096738163984410915507249532511399839666931675600269505120357701313144618861907684069756599645947829490886150784267684845796874351449564377042564394339753444620749744444500532691266072859589392007866455631592680818708671344900006945209858461568174412345126387272616652596642606847820349182606325686814015424768014506951947334592330765653582558646923092584414681407294081210991711983681454273074038837679923758705287405461733884631423175910582446367307061964632743030382129598535392577528189265260294142637545327070935526401705981561128401085145430290066349706937513423638726526982744815559065566867794361!
 1507603562538697788175150480099636363263768238974611915956659943807814028006179147673004954576054376595760973721904340217480756949998051985517198597594014325457309006513107140178321384843632255805933107153834128414747656583387013354379817005254552885468199814841205185931659992495050489930461799398190449414151317882774515826950497742141234254962250035787740294507956847111763627144785356012405421937369200101574581157443617673866744422242987334294698527823602362729550893452877661985308452399864906147533873396626378218570307070440416552084809558445507217004576395201211880756624687528490786390009022954167924059201426754185233483138668266543696787586144305427450862044016493098352715949234859301231259296866606273138786876517142915410205118980330842609450071408954408090063871765885165297591459646092572909103508988014533143970344528075820152684341202550747367747553888850237773731352026524783163277218975426756827136223035931976401570123066180285578723407152387935214409274014919787873!
 1870977963576270632119555727567622802055146929578794069284812857684319
13151782665817112843899296696014502766774147715123547606606846408582093868156928889471086433201942804241878336315430075731468854945617497076434803965309635831877588231826958083207438713728468022353055102253666141074944565021849483725701270107943346641989990530113538819004613837438363776638718563889685141419472820842762111484011004687762645922328934365281660546872029363403175670004257033696544764750363208641083925357734897322100442366660978629048195361146342805236689838187981172401367967402231817946660112629602725830253178225953722820823705484875844846199149348342324173365303195957463929462695872597143128487132110852513057194220249743529277861896681772711264522765644524676618728042053762374992016706957250320876953052383201215502607904910674664125469860789889096648494605151380238495139628219721429655297459273441418238121228221426143782512391602974879915529579777941681522807554803254261203380170937466863973676241487651413002953766611778117727943326368780295080648974147824228123!
 3518432935710897368841534825999631815438549055612527942170601115190146355557886034188090351571833834350584487529754061231709443978496841479822849013990629132151788142162748693593440585576879823675028031416135640429989111542670123682267593380817864739456630700136669605554114735052415454339579440963254715727214661042318325479931850995863603742215710030611843224029677476205134905733665320048398174850874090544148285966534842884531256416449342544980662929290310951475807408010163972925644559599956504352926307996079981852713827694907820245013262439749875313750938140965741488592428640558400416690714124152959604312184131472684881347213846978454994901575484946873603825926790341312205475941269562387073049029244048845983007498919083371348721600283398399654184009925368958602984103907327196265986441393089653624135750815291891875681889768395874642689156976804193630381770836141332659099596772474975643493223322363036957532967657226061886806679554749699026929602303582291605895559446550737822!
 5493750313038794479321475231081395871075593468924749866744380481365381
099
75203677194469815322716095952914834617189728768925891795863719748650445462496288827409869210195654414320249666289735059349183271705166807094997685811664152450498758993007522513783933887133121488693315419960600764951633264208757205239552971231762909431635286820475277181091560477913104120726562531718116513478132382519507285650146687635871842493072545246127006818084520770344418366822092187284438361318340588284451360473585956138334901235567777529937819746828413139611085616118869466454060012937207241445752631681116995075798992038270284606447959667054666849386675968677953462021574212481763982674559132512438149508230051457219036429619280485478676450216271884935825373341320020172797188302914106243895733177165866921055093636143020372090803449171255811964542870019601212363493375181982287390474238461142409542057715175532081040187522732285303317316250383257737366479560564799334187282044915085235174007874957092318392655295892941158061918561670436370588964836663440300334405342493971923465!
 3371218375015575189571728058279899188770015552549392522466498461152535903155534279349959561621188725173692374689820914482239953513313084235002091754814060478895849041249736222177374226085842513680079280508471610320837944134701678404808646473020777930080340883853733548511855330136186376911639640121261759305871374616639810329698600170273898073490473481998138810110536483873818096413113086404991789265797825128647593550840476689825879111605292384787838913494448478578438416356921311932013273049178612216572791739576960275551648926808201245590280959319452259985060366399409449374788480238932550571281766316403490549793543036395995538136396189920923223053070932638761146130034271691238723233094652086538888512313863937461775184250139796411942713443752403219918224478150892015813609809904135925764638365306493875477770384149159821754060606355368501842234063352997350245406390869525102176838171545266851670046557248223578825346535859244027295379547465807324568395697923251683736411085194617826!
 0081340295761003906656827613906533916667211315777171770159539558552073
39853104840047286992665657404961163655379733196254053323646979080316675897464304962956179635002750059226004134013497841868613717726254740994287216973543200217514689433032302385299138600818769120901820819128496191798722479166181480818613263147804978659513092139539997852382013988840904430286609048854712267106810085227878924665823854711375935506718858696238262732425214361731717202913507145701980617351127845316897181407519809819138089153527837326841419314199791650604832928096371735469705046733623651827666021805060096820238414031107775752269639261641319484087707538897775141585684856950191782874209427031827187651088325068352000464125164807749170255140225422272384657414963141496621084153782839105164698967799362367669517463374974368371378740156040431693986669941904818381788746450730250789738787427113800582332931183576774186458147113048485846483547195820023529142354214174134798363928046037785541167298067287715689386808677198641664324259231488357013624153104010903603116154047983252232!
 2253066201043584039448170156669547578516650364278408817668552704006180271265005205731840958334561241091065215678850501082322596706132807093403654990978811310462562629118895224965429979110181138159016050763189246292843427847898060058545588264912997665005261917419522510051449932864202811166579645485735739402230487497339668089409481396009721537522610874290409806386082814954830679503744228149567817107686080760399040644950851607142676402957306702270502225866570381012561634184097864680520350154662345485733706091409141721776434820572253468892334202433220198056695611070175903039724816052769638258025362857477051821413721405167602111862477059688702642893076136699177367866733098876438535011423908612567815546749455636302243385862053571592787658687711104582394589340857491171412180152656003373232577580670978077823407202210855043927986212044682041738391730061556748584891770590943223679763115120492006600879464140016945601351784760177524206610374838035802875339886894016788850337419283463420!
 1294661776149305309532314541413716515635642152071252191177435859566309
09873020940857629164202167642623394075249694218578512275636368207631648340651088794007188170000712522593009907429807072812883294415551507915577761440141406041525867491469828610917300429778601412088377079651173915876575661439423804596084705338800154932619479208483193430787366168489378015149751183494744588622523753429459382130580053622253031155288715466868405833933202409838967316056910632153721608054830532860720678938194433902579844022738020668224805420065608716258248020528624786455838400632303509580778346691339765773158585431787556640610105178888799813189020274345942990368911640285278527117246146803617108411914747300715975825040696992942787749045171004084172562958837154311787388369054644368774066287126821743045968707313103098196858459591819741680437966492407979952963025757179251416407853921778558636204106182026313114035728775715962338493765982529787163534111868597881406776306782418614166891707448901820267187738054233936519497137623711703449809824233277914663492817577270372037!
 4324240387495049179509319450233202463682688377674458489513274281905780960852642956726949712495116863873859834774697649485264431382669974803740771178975919722471668871856335835160170239783268992451745391383191071772775967182145486460745953563051147233222347025754351974390181098654963687579178478752779253952422714623180803490538585031098316146086732879946952176850167822320277062479922943670906586617794420713760323338490782321954363231055951376319071674766634347688983835427698209685383133301069677704427854428667539530241325553914524069877999079434773217433162446712974980423321088449882635209108244021681487739532629788760424089492431209700034794467680802671033941908877672417224041143461274962198054152518380581769949399390577747663781243959575182369337756763714815134468139453455259275364171802394948775671730670692925395740917678101618428439942379252137199760099196230051428194485649495545458353754018530757185368348544102463057881563699446843692642268892948035259084417298024572332!
 8282468682370943740782636049225084757220478755999568455760425985392865
29586222003588276666463412004660560328836303817672211924101730704518836455042187241764731030170802800906300430184595883554203915534534447248685467334498651452031826786238165121301097669253637007614250068982955196442984602972039442869163175845983511792727299280393191171154274263916742113839914653660530005592724834767696307004451142006215879432722354876886855857856636718453266082595513396317591925425531059093366571398018547586471045864544037265443374920142124671935082961386273361686385285872792049393209537348015395219039495336249513418361335716032630168777108683323430530924135645313680001244567384696342630437475813296078154357307941669832440049169558813233851807317679961617948716003850903164151671168302767074900626162858570065026042094671254913842010210552944250937880913359627453977714106838977035878749603071764608998822104697733029135054177616267885625544651835589983956300380896330531572261253029993994195514927406853217756942272349624348279259174399264482389657698865836514822!
 8829063874096857853213746155188857095469891998089548938925816399418356530706215908840731925543656730172956644443585690569186847321729795719801160337781612850223975774683566028401337668161564851493490386199687225597023456005632486147608829913344468413801305914167175158801538491673092726854733395781047958902196631035374710748275276910466235674991770003433887504302456406269782540764760011973250796078111347832751972961057808578480143837262469508737382462615977342565939449644153754692123593759658876830624289737947990998349762104274377216456004228695314712484376072310423027975307466718000061549954412276195098069719167564666615189013688102124447481182421250601564421096026440256717466485478246884976387727827010448358106430795686942734025849229418416573926140315801228249239878859952039313130668537472409163904088017333656444793211153096734492702541393433839015699546340455435551963240362090282141519344660818562818574717749630356591048311852117718529432059409327140946824145204745603174!
 6648852048368472538061149599576060008793850946071974730870152592212105
078
40033665081095987120254565184694264846158374898020278222444037788077779724815956237407524047316651581553379185256116036768696465194818787967376494502856313704562888442914592335608058327326813196213625650430451597144777678856151435780837238098544610803394938337754081185072335805877613861202930884679865555694767167611213985775358913428501994497903198845236254940722281178734424950071222707096288241714663518262882646007766103296236794150348324276122974413050482058780563867851990503818083577703957577986924534886639102862756841224974594035290461215616190928497861770323878850792801065116888595556720781999497873281486744403516333770780087649128344868105472528105771796545444646694015745089156244555734190902563930948925369734213737840696292445220043836459431947765701041340024064365230291030195527601850628211695679135164758629927941881922183445289020784283588930079215142331118071141035639468671237387648772583333500767989343989718006784939113602539186530846057897919559849682408734380982!
 5025045246443193686328415077263794426884579047123845855800137718820726122752535641141422984371413578752012684325852199680013523056016425399372144533009502592014685952690703543365678190387535080064260106358576260394148246582970092405884169479142256882159699259462313916041471823767315295851154529159779104470319662376451155636559531185140206762760088938026749296864715595725663608528307481384260211399991032491603431855804243473101329905207993164423277180119420762366726899270003764345731307705234610777411504199752504063008688122112669478142948606006967028035645538106036688677569034195895498110690592575116164952875049525250098946549061395390933930434616493965214150051645215745157424396725644759852347423533947964757586204716978496716118796987622641412995886217241582533340970685893831353049378655031828029264419302622044955689596201268516447575124978260323021790474336510874709562755888990168018170052562301261566859713463490833879136305731325614431470249479405166371912080552033011373!
 2954885556007585894347753283868714338723674801766086947480812878069494
81258260875251417869539755851884294988381074201966989706818589309370655076329156854258235372630775955131614162914242943038816842470219890648695320473366562184305772977129223302993726831236238269649864893637951024966122513724894764718344108816326338998470534203270425529993231790144313408570038966480421059267897391788140668417234025297044891533869892148123110125369360235510165889699245482001702216300460183246654893500788164331483087943339873583661166679347689754159354329737857283610367542912760161939123756643995001263443733219486906443249750992819467704273653583943221620230873536887817418854568364820144915481321663446790859067658008026522229117865675093361099842731791055905880863289347498465056743660936532012214178526888793078806860356136643849999232355807738011541013237945945558740710748233016482581895016051031697868684014051056256273172649346636933808633304396465935712522150618583698142791782593765429511217357633982913239753885222280743541572426620965055003864154320035261438!
 5718753947356742571921692884619428894779368045972859521855172138432377714450017705481246648711764689642804171960027020685944285832874659328098624809871741929198704250454664799776624471101030782598449587039912925356485117071956304012941552631294921334781090597703889144101986937406095400648889497698365149011561321801387227079451726722691295271193119245172219704446128863377994719577531690402181227192677091014206318892584659366441838039131528734679612489141985643643798090412825516944555212661465058353895914306543372777758036463574585362562167152836274767449809782687953229645166202419884770170809603482241802973580636567964048066885872754675730916041575920615849579280820087516733246514704083452879082563700986318961090103919791969462538349284017168460914774848336278974955399863659378357637125418156133254343522719430428371005365414324416842026316963596945336765136873507951522951610902665628207166800780804938788163800091534542802228020284035435041910830692378346886046464772478500285!
 4404030380653381017459258653714495415262536517343162979848087405045895
29906310997674067344032261482226861668375729470935795047776344110345791263594295313071289291890172552467055829523204368671098483075643917515192428904148691475543586433331740947712834082033957972057138532024520900703741243908136052412304348919002718040949724469760696385087101849614534404934909264657873029462814741377917795987056926667004550045860554920741749095294130661623003694918183325291977010976899096619526152695879880647463976330497546607509218622116277547613646242703286765628775222508631329485264821699872359468751197088202585864335804465225592990360813302284987786397662799754082343711900243411600851564085060037151605679345338393893929313344912697349704137733269304638474619204844792435829119626083955471285484115420873248262626184665363571051886795003443248819911742858281842056898447823663807460429533366173432313960425167332325784759917024305227706562880422781684756845065354589186040710425523190759047101528193795420244290700333773085847159444175254999812154872506678189464!
 8309196341279483436846982139435285621393057919331002243971843470994843339438607670732786818762451719375599849196622331072619322673147226356068388512180060723469394735337559363301491174651269931462342417021111197217255881109598376798171746474379047035078820605770408967778326859801498623988739120995764079751708569282229869047939586152555213138015556783897122866410666308964512896195832847177488577791584387118168544123705502413311905329825669011663338116253057543154869744611122964033651402515372279570444456126006803982805351745679459037131548823417158703075000204905133120368211016728710989806807028242429572811386819931282451776644565296133392184445105470426471570418856943651571740781616724188689842834738578969248340978911416913965853049121956582540054146921642836098359858384133705902607095887987288744417925612366592966783314767218968512511233814929602578179907083073751618934598065834280407071714124276128693094294157116533304790758487179392102304450860944649731414801594289344841!
 1154404168063309459366722084484799036978207343240743670317934084608233
97386818660307267749662460447853862114996002103007735606582208606717403704829766071407777238905330342494600200048172845298285340153276755006931959695639127090523109490387349084247161878150521556846691795692286319317788394187615434666393130745590322788386369878530243408530422733174832472522345618207785416994695218982619481584845900073360158969261932763499321397173887239571953357355100400832061160304140706749943405893043855615427500974574114220600702254486295885255882453577826877565451443110344873469377167388882332074622398652086590438009057757051883631572442257928653611782318065241647737951890092514532334011264874191687292517558502636584644998800224422078152470259287579069030719088835647406860293768003807681339795596993911002231971806611647057644636611576258531141497877525899484544492044658512384526623327382012573785052177817864448116263728734562646032717057856249749228310091472698225587928108263844483158316494134359941813460998459821679304961927887466673047912984744956873099!
 3729478993742527264466621742170001780121756859531341690574657469546666271017151937637541956160339293932064173908952951523823057013101229469750042449300058842725776738980093991696411749268410618488595662337687793898269939339490368409040677054988519725658101320814613375323831230864627944539140070734687535820857575236564513429965487280070433433973221670451334490503273327746573154263318373926256394240266962465654914472755382194010427697658069166500866135610211799729118618462917366170688403078333581839827767517540404116011003737865871939137742788723689982457277378314779894658486555813610791748826871681332308840573064013890383713453230701201495288827531105733195020738824481896061394985535832689237957612582182655251744759968124238171231474247737051850639955259723620459910552486065763700852595707843962299037157996637156636072499908472478060914496994638228433749563717512821044310322743166492317618587336163918204720512778597437075999770481372083225228473522468872123690441881765805668!
 7595435865162240127551091000974249501612888921357103004229305215898778
361
09079691704656833401686075096663846320837319830702651832909905858235043742143865242596442773134250244205073415244289333094458920381502068920682206198200311139210143792952322244184255397407630637137438032109817088106574751073019844504659931391186391218169570435026469823938626315564577672852482586244055111320923127239623217261461599266072500378745981275280332655751568374142613457723726941894555448800580039919437284512429839202429844092290473374301712079879845845987552789406593338844504468065243785525631764810722782000521232073822222211405275017223194771158140437000961796577982895767867397722820084425397905112514629498852765693180957935445051861796899728151461214789381398069694920019376879369908799075586922945921586155881971439912363907324336166746533601489195193334752829480512152911006114908086717576017568611338763083352156292106294164084148546774735209225594962937916107768839551817981127190483718989664662747852524608095085437704150251137460759000775197305339858635628382326435!
 0496759734537430390400906689852973299591097973913912122258052575600499719118582787260662302741862129521608998012783447142155584361903949500241201715778022948320404331056513283702493911905584462448122980001805782558198982853522484786421566228086310423805252948493921030356256989744732484593527292697649758453386597479855285229591822202958239042471021188016713198735249366577303958524774983540619375853670092481980333480840426865692962243377649621365515474039662273450727951067009167829794283043322466575052324467802174310131008158110031295633992703980634674410183750455555295603438835357278343000123673290975624926330700342944092686210542905587434602531250076232823301528993740553988163227709751878529624759342854871809670796548219156086880646158997902728920834990059654249512065384219084729425846141049730510383585214031904862688084410694994412071682024948212269689808927002650080953802849468379821871292642490004181168219271566598321554343373796491809156206625789833409670688210753738297!
 5561700146353146543304582149307038708924843432133524618510502997527081
26358148471020972035939060147168135927213396586102426655506357520387431653094308158534678928006415999035487348421780739545653176235166225218201188880155350122966414122668213394936353667504438811226156821726697165168067907032263565870250371528149336146807559336109342254846367935517760013564997180779403513215012771486560185981961514471728172250860327532071029006575029031290861581787787578598358835019706363491682701199978178189172677742188281686635985691628957008297674875477848556545711097034268461351024927514063504807840237637628832513762730117247679777442244626299188587325009905276263067051329511350305155683921668147618217115297593452102616785665829243857251543588599168957088760737998473683272239946956719603024304119835789236443549611219600225205614009337793042177224428589416010964593777658620871062371436309890454514110718148359356235163093960472384070017462294616789740138390062504422950665178306763955414114944245940895609145846365815822744067282048418860144156080643951862076!
 2488804183554224210773366253106231940185237173224693117782359839459618927326334004238542004896624993622326417148988625738106331964315459947327010723489163642632387968366258422371927363376820609993346089060715999240617579840689770161677686294263776874827886118157753640102501322946466858584922018266817563872866505070080943157258300847268273478264058422626548658568147395238089166860437234639104466955170998012756210144086283075299806367266021387119793385691684123691217198894545549452423784194252616243136798300091693381395975393737031063386132389837780931170598956508625138224462257503708543482548462197825288701054981373276437528948357503933035921033055832595449592080976860991119291235162434032862933852777725865552132739744973481155004134219910280563462751765686877185884041430210100028031451717132272610917358069524374046099071472893568620915392000047913988351576653679384823099632885978915112594305421332936902568400133660620854032275787361317585339184597023458719174360311366523024!
 3861155245191191770823204009374424203113777655854195627121823478301141
89500582487378029762972125262989089422935786230526325750736858984514496995229678739925998366029562152246698671652182807704145573291348633081120506000407546949398237148822193357659467892741191537214908180319577869396050084517513204314161216450731385039509551911487385273415870388801080021336753068186169701659919807909703841102950216013460928914806910553221038401760511497303178990943735896486133314265470842197743250411617272498056041587388298912624715432402164438645648113887093670305346511843418996281187639039554916894839265762129372870901557516058440147576167241952358051550519417397286010838684809580432108859465186886658456988753734527027634272488037200400631281917625923592787379564571102450131723766019720610996254130763001866563835632165694046400063831673210801878445387739045976237528545227384137650890375345154173850472112662153552317423232423455480954860206321145788526984025477505281483688933846334027409039279495073429389872821326319082679064895352261875543370841585106546312!
 9346771715146424451115160593374082909549412890328753982287360855732307148528677943869029114135487519824983253098818849284600601906439131304786624353590079425082290894656018097275014463288026652057221031261925046366304870064619985091525274047781263472195497663493407312179524695488446516400257614435485426977019805630840954577731461990111977797438350990321832895771121341557276961455058902466891505201786467873019389562557277429365661872398493903383253815324512582452429058752106790679373472500475785051373413027096991626486032392375978166551892786084643052583769734939908119844266402383245492946424426295699898859256271802809060072475152549368284079678906278007897235466878558316743242971449188697205932936805949666806622517201919924291110965835024943534580368229332462504743203465494289232594592785088351504099302090928103825895493198176149801899271904562217347585462224389979365007498219655325279202439132505149038558223860369164318154385093990677463062795680047282711156079348527801983!
 2966238833326959167620323768728622937243406513369377273258992772864587
25068054297247953795650255732058660147361368335499394470939205512365795839280619525110047398999681188807616414175006516984438005558825387986077362489509302385810638847953658726419637095421432348959828081630692030077797494827431002474579584646277454966654933172276198705030332481661355575588863083215153525415418036605696444647430531358098703264545677611530332353290826791281836272437062313883889638203298027046144178458344299930274284162623941611837504404434729077493957785003104269055557807276845595824222568908145949700158614749632299769999895124537497663336576178757955754078110724415785199615762355887691161202843214701403589447244818948823376109451925989319996987478748395621985705589090633322087264142475913143212895636919446121243316127804937726468544091439053829764046247647433637895216100970967636071690446664746410560355272775194796023298178310465219369118412510719321101381807828093972028058037886089375933369490232791130703643683863676981181432774873933370356058927062642114868!
 6353229745338052571199001173193702756286036094487084456791546318452660380140566357741638679164197894399642072049253976711864700215264217942419409619909086725206306975909680974102483399726779031431584817850361893094460254236224445022763799726613379699351630974139974566748370603164617558424775922857590003759869364970751287984895277303184192791707179961921782127972745730103035330171879911149292211849912225536393780631868008858378611515603039624338466371638719301757151721386521178047927444784448379284338044174725977022821284039515294712385717314009305858088362250850334357229784651443823030157384319160553474665540835963561446083062161082811540814835156259101828269726603207306204586057803055397445005708262158737819450945906379547102716347062000329890193903759222395243454421924413397965622992642149833425588644822628821263221868631765046940265675348854260466558334642516401644689397465896229116032481914321178307439225868637865958077435416474578933849521182556697926313312285799647467!
 5649446691438957669647545149395566563505108124574384381772518651691391
762
24629978873968740362190951068494113786818040136670843928009342840337048436357393413502424252320280916234261267375609158616488827558852592686210374011045095430505558462187858190105198927153229706356033596786450996390054186258981821138843541379925013248818880461647576957722024614215030181159057688421692140471833701792498830170818025387530225878983189229835042950837707778476831142650753589112573656580340183102523745642184279753051896058816410203632652314004011259810005868770504741032317804510653506476729872661985997929859792544967965895868757302749491418900538930684152209007455156485211877503211144159242990628190532270700231371502640437871591174874676197143185558872688661587054269265912538492621935530894688134225927630547352348532300850426978807574347647093536432331932542126150819002295122674268062273044387857021123391923611305039227516718987586733306548418452554766437164628893450824820262699257384862184088998461890199577355314194301551229197715772989132237056859456869531638811!
 6679050138796304621230682813089994200711562704800877104421816246562006919093069071630542332634022997275209957728925456617978320165592488630598268739557816668964177060523076145933876614144657392302991047376668974597002149510373897329236440726867300640501343833809002232528181101766425932469671048207547837558278768531007163007290971500071528481197310625353780015216635990612633376888325113246551756155739881286637082594336726937739549486929444257565493261749894930982600975023249872894799526388514398096021001959495246062222754164316229854443845984201830730911866581162219136588570373947704993755319418742905045428584719291051195448402640174431350316956095136367740354224471411709013393915759390954771896489159624003974932785021133014616669517597237950090986930693784455320195469552028300586288128644522032724971368745280032842242008222487472796061419482827070460353231300961628739187760838149457585802404085783189685478381955264131601114961123008584645928208646040698326705549584657685785!
 9048434600412339244999258200430430843354574036478038371055546067788595
50601027610613892941651272238183874039557840943298253312443924605440531136081694829239651522544981414121367372949929511549410818032662167399416834151660714870533076867121933567959527722620227678220187443664752911868222138000921194280181666557751037132802326487081526536235524580923774663967864450286590139342663815934045765570968098227191667446394042624462009771667309485533481872314121241634430069844619521069579825470039893922012318041408453175744524067779791038036886673137009878104112968803995046406920301231167542487580873777088464741186108832905471941848049667172959656062875435293183859028050998664148894305226497233608972080587273637455491412055532331935065018386219308428966870394975797245739184921472266071443308526127580182922750388543569214097728274927244904952494890019557230208949160215986974237874133528342081358573054064108718323582653576355167757455765800019640957584326636604522643173761459616113817313454994834153270770254538127367796510297260173451793975697183294022980!
 9210425098065945369675239439429008569802867345821706130564711796499379448760841293330975061203845250540652982585537357557241862867898610308529572333691851788480115482304469029690930109841288470149442993718678550329848561376552056935118488179746415255331324469588847021046211567961273283843383910158454527932546225548926620828310061400890292945374049542409653911008077038014209596597941292092985186271607663006326834463813062256320253740525293242357431673380436041506678954059015770764447326676560916991346483781570556245750954314068505427000986155606514538163317547026734256971074404399154952449584171961931384548285779943447436208551007731617076887209889033914253084413524556173437964862570853125722756625000010966648017728167731348927329482140358772189464794000717535727610796791389874450367888293374735742360080272326158028299604331914609253977715953873508613380753745927691561253833039411180307070447462672444041331391624227585868876380544144622037071866364094645017606965455195875953!
 0818948005075512252008294314234219948167467593264719693504078342847801
42795813427721536394254017471525745324349208670233175076661144242322193354095173318371119905009450550694990194094593200091687707243537280439179884832150769629991838078571715009351374276129007601711239312390452618723954963848909025751734401869011965576708662307613632868876595821434634469424374243404285894954165019319668865960850696739178198904015420915734337985727343114581011274800639725622939632483576052333555539625712262140747893131598104341272942575140240796071912633175028569625295123395772767349522227588122837762109142036629276969621921116953768803006115158194451143947080160390533931198830935140276702436398437471211787848253798620920057550891119424374415027381707746264091423008122786078754094764032039861155853269400928271005049903017430553074742302321700971014801865053402953116080062358933253555545786430366352076515284924290222639084301970859663105561285569804839210239615615989930577667232498226374112283441068337192289750321607592499843050270745875971287686929965631313812!
 7563691392121936704864300572183905536659116238718104897454230830428594082914212291142457903906322861761398691144048512591157039129212772252695487248455159997633483686538363662668451636056632004458182058253190813504982027889590343400267448590726999301203671416760359382058956416167921209171810374236099925878219926865026734106766845588313023392093693982197094550108758765788276416193781236486501110001782939966086078662319309556927375856417985290235241333195091636683913066073348998468596699585126210129064817740715463835472877201899669616310257962795934769191578657144733003958375376820955246159405776048297672920314911051939896717156393650455951225855941697748815383340600380528409424147178800308966472119304663784278228997752208841206243548425454270980953336319683250362812738426869456454725579837083765481079161631642890524961490320745439119065120680833637013385571606099333581041459668368620594060992042973523936333425491123483133754249145255253244383373666038084817718416711231803855!
 2237928434112429817043458350997477450161460209940085176193531940347717
39994903420309369547667394207926877674904431401270426091466270554623358659804027830410535733838617793180568039988212416522902370574118213345849208324152645184524215437508339458586242214613923304997760934777082566532690205368516012925265399165701327713537545191830495559624439162388763529228521129245507495117082222357799970915173205848940811809978687011170976606823762623750636163423242932718687263072910764041056434764318999587126466008280076261562011657627153114140206462293503779727965581066781377921150770618508296665075086199310813827067638413321279833270485131581480359852702214279084090283975537788178051092208827782729924446113913945981885663924737808898398347362790391745109543032291154228237772372499583323109937053091129273149086365858757970431520487723194003343161877075346397981456330190561518013840281457164865625829592771215672690095605800562913526832229132966422520747420445149501699662467204687975762693788980922784366585615107276505536125556476950910931108406344091900881!
 9805902318304307880689238480904107933518661107325920685562380895549890596741155183421274501559772687090805924288721857439785175267641285722735997640116737064907496756538010789862176438643836736657317129459595119354254493419462158866174872309794035681958380744399540744270038740912898173167440354575583505286374381472664295075469954525053660147108189176667673329656551940254931865697361376000759003774748312961182690761568903060807349955709798393481045639624279567521575697300685168398441763035602676830094156302142489422913144801009080147360534188215211388799489269136045314688985479462215562641052715526676157759229451331687393788450461373546581364125730068329360915526996663762261292720833874846146990526631697676078300030370474125072882807044300767371756852594358516994059431567777689636751666120105052874068208694904991014385865140683050932886160615083339273454842144296023684601969513183094105418581278798946974664764991399261587879885468137963110906234083626012112175578283333184864!
 0802362683461187525201973525770919095549532822502468700385546630862061
708
03259566629276342537152159039628815250249704335253619617192934847410740645179224721889831310480314476071234351907746649011207523109503750656792203012781966406476460738938218630699406339058479467316492694370533145623570170043737932354682400687311948532100959340411345714572290582733346541642685513886575656202344094847701341250520323792211445925063644067793247630511083597443905707848825867035272553444971478066018876838739234495537561391124348949407979333091155964522377334787510116118744547506108059497015314469351919217231541517467009751728338873023897261675658740434052671809897525505064707595114254714133959715503627854284017798358056982357189744962489057595270455730793370285494269485317910033807302200163919533561384413875080101837486956672134933991591655015505332299072243221523920298860277547706968873074286549536918331399345698412424652447848722779388377980974649032572909969334881754310097829425277431462612149382291940263378659725684346302960116489163888882965376122321205505955!
 1361187778417645984553412389611080969291831443733163669595806568553173637316417567105385941732715396866432053508495015283022846189882410802453603517821182834614491034536170859582235088761802226570662545985016266866486924159255536984537691334110130734239647491312435164244725700825651655778936535867248098796931870143238454970165473839110282082407312257760177356958074098782777560465373860878693930844899587780330108261646649512941443526901472871546612340327369204126625019719307734868992030547943775514441295396085586603567398122894020183159298610698005358196625079105363892326208118941399852560846819552541253734332369783136231086861917493552910057150865502199771581436708227783809550527751455755109900635553046760440239682063131574332840998720988302896222515347887836944876925197073694307711490605352839461164339814694130868452726266620820035222179215681874369306637303935676285893061489670351356559480944890473998567626384104656501613009764105562256308289349828345259544077231616670199!
 9360841131967773627638693276815193024541888450059412015005418272452673
74091078645047499602417688535361463518351204056436489804071400818054510744353090545937152235159212157972036718461821403464412066182411838661552630883429196407212923960703170558558197247226424259377909319838717977035655769115012397368599432307913884218592469158149366754552764419267098176346148317309890408865961600687953719854031749680469142586910769316880700319648431994364412242868979284852284304213162513335096231569668684407714827422640265876404224209880212760876890828636209756211143235400980124425142582320640861412367892079754437306968085326201089348900496270246970639864939244989847188913082953079444811965852355002540234400397695501177372831637460933558655560387092377480260021600873258890925611020504303964946583791102555233487319338970399076839640758791856903079086000867798417575054703946842997695104524253303640204743518648265577516771650778462429221123903445324416965632587234728689805609773587185051042187288086178116517751172656698139941449006948626799670897825793339763630!
 6526336734079387379422886663714749576342246020159661771109465602010943261294475364745996219075345500305392307743162569890870624294660995862148343154313610046224468425792530309146725030779934750550985319387675714664684357646407577631185403552791979303187605666568131893016735385748423110622748719338673148656498833416840898649541688751821226965964848688379627139026391665383300980704274459843281755682537634498227117352165081292210921835332212272290220601195871981894840443125790344954377684082262293767233519339716740280470434510531184974268986322722949270576388033707313593930255585562082716532035626599781490214834445182517032819267172110279749414368366091683868520214468682769093199902677925880661837162416153539349808047587451166982012523018240384993299522383355788328095586203274702205672898906697348923966477962919569868843288381000028496688259536863828194007718793766016922567462919384067253408214260442722489131457436099560574407250440838664812861227490937463860351158645858370554!
 0726999248716550391835731575798521581064807069076145683467149221342056
52931593809716723125161959683165823475873259362330434509462491736255520777170902704492580967402929397888867861502337273623594189986976560512005802400486662467803542725960713249174900452871071575277969412195770262971617442168674960792968209912990082517013524416749735941736777556911085785143411636790040629216404123086826256962199277128595261359018350275771750282802256491030269820002611487006962095519854829218881041643317154976825857241628328861821491691927901438813332069418291364601086037321728335969304950521159721670090082207376564105840180787891760464718920911095203489053008788661743831639600605935180846029423866964439013090009429247901127288967379302831284368061936522198430783700786240702789030744550205049653851314926447495519984344188981580122580774028506277739219457570850818451149817412768597577322690088595997731161349548961410952307499287631846385120391216959670195669145967620373727421096320426386503930999727297328220363354636864520951730679793292647293544229153923991149!
 8739787944317185147282611216877420721249994111654743121205358430567864599805393759830090429380792494607868194650431869898836456145136747585580082580512024399258279270496384560633625268217803807375928194460532528438243140896108628125120923277497206896024990606638667877895054079183283200779006039991786865936043231193457794794592992598797829894161052864408907771410923510705568875889945037141547670097579148880972932621589656798347315417821730760682119517468418940031813143436727182380386595825240964872872701213252018681697536820692062755825794495196789108307912932407166363265506898755181200365673196229426328487620796505538061604257374729615372751203215896390720122539935951267691480290152831869461975873753172230880117012468068881408311322956303488231776127337252378031728279083328928345602464612838739608978957053627785843110644823242600771202230194344591032065032773800940503291337858666892620116289191936569028540648496508009569397734999998632721984338409201129260412618457678649292!
 5691345366858383327067440613948322060684085939084642815086989008512096
15591826099670932972818132989252575558321306030878882971280156219910184882729284578410913171070011695922586950141263343471207032894925107334024980679487641037627310607075775373072842277147657863272868209675444081967131404478693468135878023610511761421842592417927087411913552005175981808116657478851307059929967230384415172758727471261891344665249732549256357199373078303524432908325931891496771030147002233360659784826011629204950699432788895834370278591400200850997309818920936138503769871681094389564638602073105720876610205215260459029636453596024241642079281571263596812706391225679836302975150894117150588004477697914503978933772757371772325100678510075733833915166853511152045052811317259721726032510745484426144323728432162883745327601782719485462542353687380514411242189682505112121981589517610092765365093588445621954834719429935928204371653791970032068901444190325572431052102007898152429529749849226651315207876543728593316518697861985941488377729923421454966910986237803777229!
 4254193335667657903813723041571674369427831484948589915622605000190136371713658936350967132163376110298974803374635670429172642642159538176149425063743839320922151072670250588275348217484070135464993231667507143087422032758046028527494879565243907241413790135412734772646967628309732122584491111690346195627958074322347182747251864759900141063877568936744660672811849461676049187728895832412602841768709192251775093710176354884276183763463823179896255022259913870378574156530821799314901984581380662698297675837704327218064833228535437793745723706910360412228209429790412477743663146550876523060407775428940629897873633889798821391225711965840582485581578743620463618761346060281994441949237369062285352648320868561016648567387274549700125290516488150875258894638636302347194517232536097832228916420359202699271921679869548357651031237576730518748203913954837031776158997935232635943368728021162210413665297315309536355714558034262859882921091930870764807665018181885246595321046719102062!
 3248049855706756443898886452147697319327831826015816079852770531636332
676
54679491745980073680333047009810058619821899815721687057218804021259680777636702363285713931166370698516438897080196804211855848202278201011383792525602626967497376798357462968553632510876741658857068182558195879219501296645794650393351170768560912632537895002977516823905071198057515165894567914536065097170563050681641781086830235520248794928200475468300017324400758630011508773231875086040396279291886569826863157851825295145202360922291149961467807672203660798917306076290373294251866394468659993540339943199350696864748514940331647505185793660348933958151611344138569947487790894832172681473514875020594131285834583104889953208247651386014596037961878681009038759016179435305719654190543885661199273127466990788719304446228374796985268417091967496725673885846583278232439347077348012446948322580837080086385270864082467116924585136672367288417189102617592074065863327357738784104736614414490296280489159060230024098051980600498191714728938811990657563734413817154956934072267411451371!
 8124037903768992628149188142696389363112188377254837933050419900982586031230986556896290725079028809517862498747006372488300949511243244305547689333671753840351427237531878129624651268467326687929338013507858759364572032822032962081301777046666786465311929645561268593295609274435849388473590537841949770473322290519954372803418587107551536248681793929974547128066146072047628152203873307021412175280158059967925751296156552520943920401529741714509581337480874147847623355527926802591165819618545410814178285517484347798771825319006828273316689250223205091713762946266278798563673725834590369598855906181018796294470350108850271176571843190683525457782804714014241781075188441831218535861218501521514307696064824645141192927554132829409138462294451735153662787101467166424786724305693676244299088682192621098999476220632588691860309562131677557723225458698944946289906708782326471525322397806209816706016668671551481940688819689862639840739716827371415554467172381074312898359951650156184!
 5058634513358498312593268064078924809733784890171918925483941032794043
27730805245970909104686170815624213925910765080350919738467947388719884110424520170074905472204112440256184409009630325015862586797820831681064086867257485787312795642266170049253622544780456539934217638043859765106859707668422191347644588349594231590418170576992584265504264426010750229699646438420921556672420908854817430483269314516515467606277931025264769564052023045867122414594390600784539565035366051064509348414000248644491145037361955896368525347919058944448919012789326794351121769347082783048800056722581392583988551983125141321850646917204345168236492641944072626637087189561035059022440426457959778130101335266260354115399416319209645909538422714497678233448579932073663863746178355507338925917255544301215708222048218762256067495339386176807095623576231262122487950334402286135881307545117584219153798579277608057815581183670928997655743952996223613516657334734754995081433407710292263452294482597496273650113522188970234821091562153445730196927909632358058610015496789326262!
 4076362726376750208862712891110445588130984574083218460740485530171086965446313256265578983841608498040176713410834005986536076980686194292006827580380661060389382268366359703732831723807228798173630014712983876396419704616439023912559716899258430038481424964519501135299448819965489647758385313019348787057922495960271876052641952764338923616808344306774442414623641757328062980333210565880307579858329208156228838482176946143879320755351281297925359825556053614526615945368323852059802917950208888531695477591251613441214515348709717354502979360022669155522060781476566672151325907710037962170551123019459815522798948287773567827548362077707425834117961296745957811507873427906007157417588000917538926150252337826320625873381634714440034597789733812849942415120846641773321960822290594197604023657665237060799036952383191494381962939692904116878217934091660968294689439803687099698362516995820604252547691822451864787432520400793494997597054614018658932054674099867971703514652101544873!
 8562132155220834555784972252008898777288224117606756274731095189101419
50871711335467452955359645725191056357096294697665201741840653749442460376298000653841572067011803010722894113102340849768382849238906316585101753217611399454278824882284985698989284719806642200777488392416294034157810651847309692842227441369697741808201944261407487453353570140871919725380954040959204683977784770616809848910106357148961623847062407479613998278452632179676805684355501073903055951952502870100140254513221252480587294748293295944556638535893662649068372135564565256099145756029969546234226075457738118457113907936362075415918611161102655318577848616232521667044891440541106679634466974462444949508709724465369937386098380467454670663680076001140573371642320300274966081136287847487597552764548075894186325146239565489798572133451030843187347763715086657950384093087316393636489483555247005006039377470675082864781169874812945253416575800978703426561287949920467738067308170118568025142386255159976017218812058212440257385134429126727067984724706963234908479589397937350627!
 8874397500650134125744659300079287572090944145452882837180654793243839656269937652602426355273239584140627605437208694484157070877878065207373424072118714019229554858082718139314621597117521634586130039408895260291039637610563595359786851186876875176223322126228380516485275069469774402532686309643981044962961663902997122902806818426046532469505503934954348634123950630605979451493740651701674971652612177308271829048501135927382813333855184543962090176630852189562614285022128023601412155156129132877662127391680897705391532989598525230492627898251762228896967163658388139529394134076920263105337502193217283121489926799717185482314278505652075517166944874775063376873847104914853411821141585011812266505347996898020906341447794839602941170633061559709042631356846914567165599370087559862177695517394947945004290171578810671663013763091729779411163111175846543486226202110612232968918357922919512858362282723986699519654186788549887899313241490229989345663040936981765539162044513387170!
 5132281768349594434498423525609769261129633202230933106810458067432927
36652809477431339585128031844378694646629558621108946795973214483360779952693703323634506821621673051887015294569630947037237090904831588486711614067469047383809784279412065837496352066289663710752540648503276432268638600733524465432067355414259204105719200110245474765303261671341237568006662493037200202916471158971002058037304021020465682809795758839101250523039760685530973822929771221037124005662525596947679344737386180454925267269553907322552707807951638730904360321793068620072915849959312657830101076008148123392806993393565035245588748130821380637193642615568816111057357397199134426636039773821542997957753650377279626161970029073514794970356391605072832220397630866960374621218256558746627164759205514606667823124354194114610411578408735430464451553203682619326366987936762301342621389794910763424834974055543978911423134250162095023940817511598427907614282020260255947024896259336627620375658716587504934932477587351236786740658737092007642369660438557112725991281953423031517!
 4060859294594741897540115353326424551729222777028083569351602768505246574541836738280311661132279013709605937170337488949769531261250974617823458891268896131753254156040026656422721455716723180264936210316946675401336302622234240657850982761383647036396651155921141837706371367579689682594483596235133237512622655742862277510337627629137511600457896261653887185538921303339482912538735681945132415155458512548247057190960895726945857106186978737951836051902109006857666203767553243221473239104929577381851380852960545359961537414118370452134706833031539390711010939641312418405754198868829774545349620872034198682226576008922292738761181890931728918298704628742935785891883000744120477246106286144003556737603860831312769055639007646772657534679805418754018975156739676294552005671912865805223295620331960335004562892470572914077587979224309917512752683019165468011105771243120639342786485436692006127244959417796223229835459659213322063381688746500087843210416250221459655714661915018625!
 8576845045676966220403414899889264565974085551026931800451916709094200
302
93536509867881186736308662318162703587265644366267464365011437929251847637122084729387336138465741748397972583568407718273083967142022830276667012803334420848574293238904980680162060396900950500947744127595940087078194268002152604708695294412244307885224626401319733509079925156445501260256219875535228440761851245689835740514395145079310102765807024636563035721557102570364472411959788025712707462186322152324203390791851477489893010503823620929997216283749083635376855979169078350325910071690389066649010464500252480765258295241891341378113171761303298341590553682306338249591396468488299529510086589502785204050372539770797129505338070860598578410661104087082842882871349802499953058426990112567018451098116436454679862531951844973529834491043829709764866135157337009560755645511464495324492857809154787630071259305192885880937535233625489954528745638634315960569951213010162041410740141590457278182990445956785883960966641426049380765589123592890004031815818289869431685361189682836758!
 3920865862921868204299572713962083275165751792257072538837054638680694043983348437077694031188358305037629879203406902359947382130142170923379966098279614605748801458565771400490364148296079451183459287156307246070702418700709242779986029831749430204988653679408664798795846036622391858097220372458101111582814016089109516185314816046153891358996276004631966105667580589079501824256193397229819581375868469619720870404577432758436802527922001374492794192297794816626551717480362714653673011748596267581832075853368623869042393517448538393072364165901682790264894903208118777489723846823160921867933604787749293754309893336070050158388352779474103891953919015236227841241369962070987617229957007332858242066170225500153903729034457561823645740027708061896409116613226604710946956608152460185880190459913023172142629540924254361992018672613411827220200035374659929992773061699049368117859726692077112561739428264834201484294175378034151975561356389749888368982254202618900728118076945642409!
 3806219605841210726282034756308798736874168798828545909995581471885508
69441817390266024208867591649339453703806502814567416719002842737512362867726225889624691369852280318181733556267917434798161704249487120669117729914288239678406714771114694617000770381871263590593999057012662037339353410136079154478920022092961286073956500658548034769444976273471755465839022018487517367378417115668992605409922423766290333377847937501369761609661039351251696961384930846755313122907574895600565866556238869844020331401004935520761853528791409476481612444442962113213353078601048490266270229302018264924768566259446838735458019824930306953586845607910887232046892651544231958478208800133206587399981958787231533739142872664948510120656510916633410899201572268777210086014706580219185418603928786377994152992509763708385399199307380473206714543795540737953910695336763735877716917048632296299157575248842552456315365543863201854718007073250665512141395264634294393123885763015899667391665147979462443488957535825241657302295732387548117967395232398300284405617757068033086!
 5724906756804921873039556565122395841829194486718499252998667406035952793512513423842926327460019413539482352740763478180922036491298542253449536418135536952258635937034433041866311741840221855699927073334034650430278990019682544018915430048332575807904940668826138955457269244934000245237262423299176686005820647277913112739646918248091748185156298484291967603697643248773707736645550835925474440704269738653775368549565506154245647933619150811817341481670024094440378636484618598293082253939421031727597357335210132676184160985144726753810212500183039693032522727830945044695900474537141781631463004545227823042155129848602334012343918473622277708248969941020011823793350888298458737029506903285269695258456907676712603587100260677228760550398168472597182317082419528691197011119890664308079158802221805820958080137936832961576561928941876824166717820440412951736793020268048146389681784737093583153444665947972704812668559830260377900162103914629964063587875642383534221859829431966963!
 9207182315161776386444588137668392103237603166484230861367481457146784
17084231108850131978085573809946544234865805512651544494079568925755111721371409032544467899399977723380776473275444154815458025305277046552066323671035581990420636671532075141363624496821935175437224452404465627124394445440291242288660424999751428553669529811722369738461118550465082626260860128945929558647983450312723041678984019546455198081217038609328025294741856571574961147267715275948744692810442272759801559895595048619812208997326335418618490505554737682687303587244364693566635950494989796643998979259004581080096344278467585207173434400027932171178443110355276789990836265058861465272508168335700723715074304481413499444407633992610191524529381424793872847053344037862633079874724284897894940132408650084045283572779811099041243943370515724364333433716381721657695875439108771421199527352266092001648759886131031078951078061321334737394780738879014533172616731189113895659462313681243103091859305556040570685177406463022242941160562765732633887364374317639144750844454697579279!
 0891127853694253876010051674301009434637158299489010129604222932010263349030281227852205798683087731816158527528091972512177927311133585250502100862514224609285783213837884947897200040370616690186393440947414460816047243741425882314692487264198672915725263461478343853551592717297581519705225103793288655127555707604954155496622576066083513492390088969729529795475443146092521389193473616492781978850024585081273049302692068477893665512590509299288206512374570802744960795636547828121182890133311410737546978314040766300159150627108647489542051112899797124959827707113520370201560200657033760497787089766859573280417903031671037807634013478784850404506057172557441732026782628140379666572932951826669144568140799651991062719372208676474418615534436724805237659566742922686852756964441650351118002720194968622227036581920936596952269502420869195642309083231949899188630160890632789050126515859252646173207834198625537675637109363926576569981063529575039827902890763642448068755973651448820!
 8502641418243778618090142225830988873877045323845603021881940627151508
59906874753913311087793293292856772358468020289597191833435095803196588859656224805620560012173603527312915250255476471379943955618493812103737311034050165511713736650804894885143015832053345419018513997937724612188768955430887615139437070924551307337898208916782384468606369279403168912287450453023122038380879867166867001372227178452061792565485081704654028820518963500326073114261636507726143208920444897306821828632992833809385374444417973799011215946123142489589969471159101251213669309668478482678340190949160927114892974757941807248461317646558316716229967227559092227916327281918833581188263702791417664926420144186624605548352969932777024652731233859332927923830511149248220252727349165155527928792923850993538641129021851192299624978890469130691248266436436420322402132215545254282527935462330035497293304354897997654486432539323037174475930242862751721398244065034235541390907642828852065097909350936328600586803371866013487048520347087050724567863545786924907014750637844183112!
 4119902682767958632155309004828038114938090104096679334796762191596218040052798791463332993827578144187219689927716649890865690772659002478334754053924542827164119023620117371947135347214705832659535517760938909280714649464256585227860695938875338107457081520659493776133930871638075871095183435945121568991823565212467017708344232120736609670336633588344301406340240858226968636204639498126171965556090369111516964868209411670867750373558935869114032599461138731535506194431847643891477061216852315650266647211618958150264269347118754424995442712541168560938598593185889070297193397198119330819789068852006863940655734774199340721570403318068297630839750552740729934229139911240037446183298405319928325786705337918981845352802186951584153527659657049225636285921816793904294464194081097545433735120163362303480407425281400988012658868459742267852000586846325275273657015002534058728841560905035263982544166458824127946064292412301168798252959307965810142453772224863965132138862639385379!
 6416166829868659006350789337888940741003234280687076455846382799994950
162
94802953651593963784053819477188957661844597829314980743821046347122151197541793567998811762068668554986897630059798390089244302532268158663574522212955391896211627492152705632555967530942920774814597048220831279510520769623457414822262144131307584644284351456525376619485762747610385348601124365577777634948076402606806017782002793193959307214322504189257780577130496164198204805412099124997818021984161874968437899162402900416529957655869020788622036275217360972747230850605054197370294267054228371413479936727039627042136924177467218022155375981387668069542261782536086410449713265468564764285086909205506883598864244333690103894566803660626071333636046539170227634428119395614175348458793253408389779527646995823994572243402565677904519287259021112324049761156109889339456997800695176580080404622587982374319966546648731444940986560528834645921945865957198632752748726569720158457593062940964836744374433673286504593745553054220758193845157628252639209333961888601924515782157707989842!
 4978422238643423691284789319606353639389294085369304492189490053172819620826325507867582632383553654964306602728321036037088186558165077790691552128368510066916216970728496273491791643908860647635514440534932209355958904982741761617794032170424370809309568906246672911534024388536537372134104147374889750221466848380030958206620799782420594969714640130242864171983869143047049529910053012709221754464017711935015275119777829355693825054968137009072729471784216099764151968930712369565884454806124224215155770064324786867894749287265560142201982413537984956082044502135401389909883738537698780776902183069042678649125422861162041320120314181510701338768882501062248687211673021083427943547461874583779339787449529779032973468531213513177671938253410825747048701483830841139749357270821549320029879342541970979711572547971424644430764555154238865176807841284836533299146168000112212094133619472903790437698983706172644204965804823662392376857778645305920555542131304974193026466907800166151!
 4338300207600211151838585080469362868818391048841223663980263602580090
75955330659969941230207533850496982845262947180009178426480856382136083528496605570808407758196523920798150553037893960696867816151208393073095344826116092067097571541940779658505712647080549086712229594485833590798771881630449815109352773481039760007491603662840621155003991735323835967718283509938464741750386239412145138335203959036129984468359620570615982229741256250327031842004822042206081285594128991027170244920371732468453373408690771722831196056223979622704421720889549903293925748584840039807370760421403727921540749326087337044418311064240546573202359497324195384676161202912558035842794103619011000660192153604532160762466394108119510510056592307178826162071467080414248730596486448485101657765730471663457445544455122384592792305456049218184138543812926306449336688891992460336896282917052494268206013689996014233687701542170388770113915068762363588988357392052664571629757027355679401328626370972963462655768521699570154536454482377171927513428453737330035837118855379540331!
 1937416777449808848123099209334994566559831986028353116512612396803948011624041289426988328130002274386625766030487512612816465768323106277393182601614137968793923227690728112943351642549866966235927775613704399874693072405204688850857969973341240538852370583536976128786068223559863924609552945733766528180513062998056919528909294606900853895572195112991917008736591009699047770416747231488163591515635951985954224492244409590848310033222033774914330650106632834087934833838206133874044377802770353293655515730302943223075300487377022074194427545644665539217501230050596904385139618748944050160536370201329364584193764846725881666588384809043692870275409756102227597390001150619494010952470627953839548934455730956698430229451699438088408763373017711997633383480324234033373814392763142418316129787393244798498349610314002739639418622623492139400688701330038857369897639683856722411572475207203447744724370976474297127526070665511577919477138667408363547467649387788800049461595697608789!
 7796638366397387693349229130351607734950155268879173466383608229467247
73816991199277370023063079291626507349957700392109505100152424161932998362164135138054494450438688296685259821794555100528917070663100721325320651967517203442129322575882300483298469426774558357235935614215858885166089254263636491133412472835401150347321145035961901736665142302262469833221496535727853602927760602043848400900610452390987486160540880034458194511900493592287708353710023796577865265215708397857464819400716793967700017481663999293353463193694152168759820763785575464512311885960814965583107102146214384793726707738557274784130730702120460981607437901037717934620887461270686038505838442545306088639467139913775155021149865866127747210557859533990987040744130156430504047179062869541459001016244943852418221819930919070382652339960877467178833603586769012940882946827042465784880404471983608535712493407171875547014940425406227198870492232055955389520150836092960070886684122827431727896805981017303293440872667613403919205474214141805407867566544178389189903575165436505112!
 7799255719649495176748872048845862810077500362243395878577353961032138804193367821254485168968562980450101210096658689088312729971375435639019863334751479593508166528133869734599264653323028199686810642502464339678314000550792431990938748277765703316274698716874781866186783595584937119576658297802236835791161608020754326983005555718939126260814981167827690708844239284300402360660337077416593680214073474081344931890867087875413142192281900831870054195729711976503416805461866297718400755963368956214377283642734138498889460835747852672489884459400745012454268113315135219784866626404395317739328003890731884994351592257106808011301736554236392254850353132203362367371017465434650590773213971743390207984229559372399900839097331300310829064338969847892771311423825964145221531958022986491765002695692570675698187521154104543002817546595606734362441560641840720279670898242668180458694577159302644530274702088134119922599842894826683672185125910085258412326632581944080284528085281881510!
 2038331150206515518375566775885023620584939996331518355806878320380381
47492121821027870295314131831156130923562679372310610708417707962396672663946103196009559951543478991522151146411693004141991230259237290210584242881760871724169819210100425264265710493802204838635151256631393072362640468533357688389537768045349755783861979525200278759331047686515517952811185410005682314173091850040137040636545847903143280405160220292082257350459786278641502884383986881194606690493108159081903854473862837734431706271707529887578917150893592314125334966481383881072517460804772803880603196945527136651933353656952838263413761627016464643507592224753314414134998482369380610078453586465520962039299176007998097374836455219163808478962737828020162751849451711833388984663198604622252137344773440794111631259831345685942442740286005267910967763620329401063613024063336615182217385647084597293588993622043709176912292478327046500790169904801961718778045022245590666828920255105958934005851044960046361810100448043053400920822669763201019456608676393009681879153596245594114!
 4094434434951506630175487114173252373175216523188310564310309503886222892578465688461368765880094618940182580979211490926193540340731368111112438404136412493524991930710801381938743808963649720901503195143930070979701040720854470269502158901646474296304786310868770818791040385072646046931509935151471710987535873853818859846519803654680936083371518788340900537937260546233128112141812345736027180434504893256949448289657826979199273334676745389685367070977716982264732569645391543988183174456728882493673040692640129197196230005490601048998463762886085356782163417100492444105297669742720063754051103246268758564335651740605224943403726475346570703780424322186950254327182718459286880967684008373806526978021898951590478961160330433320173551800929467069748656642485813462744786628116734134707681849932849178070882587533788026065652533132161347773665200560849314476216075665409683071374154103895708054207476740293172488232092776169363426273178322811987755745747953896335606348264864895167!
 1352779184629065302395891692211810014721859801792791239923785597482973
284
86014242174466640445227393807018376196596221416095346728740959454215919896428158783255330065122683849391034093047481630870707074195135364453366785237379116763770707925515250839226529595719383899706156604685948799540450412787006036827862151978628998001703436143712668217759649380972391497994567480813947670651073203842541236666328911354433170773318692866995942948392238853730901648474145595869369580143390874853205985805620659295098539778626520152330939940215540103305472861077140780139019513623115751142118667965560347108363271170783001510006296317642975767174689368331666335158550540397450266762653889110699206120141146382283473696630720225745959215609870587150477054719578839506669397913789506631407655768667538347398410764963937559265622343800750460548308731801644535153558017869566917245795520147243727305126193374068837630553734363117529594207431170647254247872369380321842060427200461682690270918005719184664895325214713163151870038011397250049052541364502900465491828875464595042130!
 3848642152883722834622790120624132510572644364627474311377816583359331859848758168761968498808311431301783405032253137352515753473980725144995189172441945365690296150579019978521655572634015601469240746649696272057879559464019658859162031699223450692531983620026912721532636634192673396994730897314323713962796055330876924421561176969178430975612892553489250841581460495532787955234557737210671143539697452789040385567312265756889168057149713117466255650536367341499785717407984077357491715897400488643098529383296209791177264386121947204662790022162738059968346853805724119941161114790665851137668746359044605709981009550355618824883073133429734351289711425173294160460127618274335227291718905682245380839884339757431499724019018546849518059301664219981729964358601271360665930055373143917967405563850006509313939060691422790692559034133948897843725348963226092898830050029754387745153361845179846131748548397489320561192450246966598964161719456118568160858380582398098116488378635485152!
 3869371919345970574529513144440105265113556564010672100667715633850228
77375587429001427379293261785189923237326822451126876826268303316740473775080609438434357262268500682318657607422149409646981105752725308426027062590940812878834766335160528162773824158652076164873145270140582723097097292527230715544803132051762749065575211573980342994268821867137843674385277599132865966805169180014338549875553335825925720153830408553398325395756561717146673047878148678917620877129066309849133119266062474458551569319128709585255151387068354500548632312955348117144844856239134107921526504233199481556989630867953183080970278842625966339124316083299263487451564798777549134437373557776465157328847065990851461776128346162802126604786425490236387720934642895751516340631843432428193547924387221219254549043242765320489877339616116961288325357257488754065301690726349611796906893030912909322942206285699384791004402664801193833795513477518855040080119801732647853384281624193633639617570572966347376748025772147314137683553925488733241412165485171316795743671535830156760!
 9682363765669683020636647993059574032441610387625146530590127561118180601359366393883440355092545465046645422896559770151942248410086938241175408748224301525754447488045678746331859150448160788517398589880501936160129148327117016833392218836260824036455020230546313296913857476313705909920874860256745478204174144878104619530575370815238778783664982726007505014349807809412240679758580143525746956356339096938595256851312833893337867782795866781275258844600037884214363408314552929144682614257337086691811516292364443549060104690277616290127438951180116123838373167578767476851617338945197453614590736610057126894042004007819956728556417098552107060630864272403749243388411037615040339315434960389330618485562924828644996170464310922257234522181027347262354288644631093392217282521006844038099832305746119916396290487925216944766821348797351538452436252711823377103958383561891162617503652465937859536003711467394223746279030286917678430902893642696304488386653268434892628787800152014556!
 3151904606409074611095107194358555422584969509909511089468044335246964
65666901754770863618808894547001939656236397791217704424764350743092050213914340441994835212553063379326935535615758614055916883452687794692715494248703257600578122387303063071454937737091385705942016878877257642878269955725357254904598498732946884410249778880343372345928511748305196305772800713997942820796447881647928017306521068497402807963064963485938000114862071690549520935419815774396289019868586599447864281954217094077698271332764707137259338680603118511371735764972047897860265117160229624939557410629307796852733062738486305660369244493787213346079616766507266726369500716461135106891735280450131433521112969174673119310598875228041696804502100574789237811056303273446666375101017654320901022715463706831604088209938064822880917732845089364679874302455504048617988466528464985903017685788300671380440709698555697347575759513683115456369309707167827891680543900796373275921729297388753293487686620478855745365229881907028009798161332266123268149484339203249205913403283477546083!
 3204659260588622069548154401023773128889063255380099809775580935653150490883337224606438727630194488306000136676855283722702585629805096572348623692960918860329667821224255478282576177506338315696670253234882022561483003619104527549984065298038800860486838924173118778377361771668475887375127337206852782334350712921882043684987472016146181004795070084589592599677553791277613644856612590574485854178066357372545697957494904125751601562369071043052411085427644993756438706792072282412265767870261893469102855949536989140060456851839134805476279345314066893828218929169209918078250369691143674457878095852494984562256561183244229081336979301082191808295742873839916507467976515719982283204591727826732478101610685660545618025090118394734062258249532965234878617519267988923698115956075100997955720689925233699513960752885478225666462491963960927346917132665554407744793161185139133414287314072409658030015328969701648415672143385940504161962569583049774731863351848823280649340183715770887!
 4217058269634152483979119613410878584946197359933349637363547933898978
99440150828468522024148758401656289535783533407277457831397905851602906805663300105680954325209013409545733598472115339579197459056066269925477628983147848981445298947695178643770432164344174224911736340036018450168204208522502579286538453874078518462352328916197587582444082163739941256583926576990423005612957403509015268773002935646969604430615629146446240944744868949522649419026826556614469294051753210543225269492753546692616463142952825809009263093647873620282483676659404394225321037566853311723298235870287705023375264729012594190957357351360499655755656538094292826997596896434620664915243604183106065484477163500949241315119904260377958481602953671299068710227227793521386704099043826062866131633170631521172806645584449570346223425032681678150433581183648870750169430026819886692516153940494505039499847919657487307925819161192008563789146811456028050060648362913449142869710023611805012683257072880965647510815452338328897517645252048936888842905084975091300569755140255552073!
 6668175199429595096117115739560966221287299205699624269327975471120352110265135438265530669762774959991408875072629984161483724348075431249564558638227261184116482677039709770239694126791034911189568157545425678342156841081188346934204461791794056850325032750735161152304605381036553300979207746046722771459005831404644353605374270464201824795362853454859930264352577354925554209449747509803649936807511763343017963994191642719297594783582181988679923408157094147276681603369667278982610452017771847555402090964481505782157575008295866946879092272460809996169810439428136871380402474804460982079751911536874254971977688846422353424030831701919913126613121139823911574039865881069240552880434596652564022608499311451968977019009696451141025980016776953630525190384523957485348768551139092369432390895263061459093364550623868560757704432312654635218838663273339838334569379767875312878971294495896774746277327667610944068700907131100420974145668455653044440796173508060966450931415556649307!
 1023900547953615439711914175364492603014056854920842036571720974912757
864
52201669220341135927641009878008195998711489908710952788231011454154679288362463533991434747948212737319547481787508867421607196262052301639017140724954986140265635814867141898535759937362227666144032999595802921429558462359754718489073263725520446659904659422082981277984989296269148510474595986491687747642684887420676007957144586782024011425671929933818925859090846246188570639117205794713115095892576335423411750909492058302932625821545206460564306657070340512882800193703449700923875669866314675539006682919459281781552284244464357412768736379681451829569656296581900270868558134363481103592867339748670292799989174685309253602685607720581378621257373566374714932183221767237647419037253758386967894455089189257816681844465405018799013985976640447292564501248412564516224116192777564989382479632244555912970995805604578600383108756280197664217479398134469763590665847895833307348399511486912278174473244118309636850606889399487333576419047831944440783618137024517866184062613410020466!
 5332192022104441176618149449511654196234687512013730936788304608719541751263120082839383655972265019829152950561487559078179012928255301913704024943009297502557576135266661471380190200710942958211988799027449804956487892948858441910307799026638638547107055422530469147632329375545031746866430159477535094981370386346675516424544797022407460882188050491400185205354227244382688185126406803823451437147905186201958709348191007370532380358681399470294731478998578896052529407850363558495778556702152418278629494412571173096785460542553383320540711115523088186889867392223341574610144284376996405250979536600582918390457437568767165231004803221738268964964362506992710049902571806813158834308637869431260002461077022888361456209209425891064601229397784562453229340461020817322750116999821783129651081887261037836570042451990897584847808307315525114739334291838111562123439172804468490280631580457853830021038548513055604815724273712239580669094846563929314171322970711892375170037047753865090!
 3013640614464201802501544141886931951274880178549540595027745370949850
81007435008921194264883601149150753243034488027238945598418990937199855147407232309390984861457478505975802469053121800212231168521644797182517161354144037098940245486745754769757214312921520501003224624156069081808499085099665626164212825140994042402446492901703251589813394876876108984228691780179373673397545219463303883686429261463533495397907557390620289129347579673000793515537102181468612904852652203899037919901269164015473610903345968894933248927568511497412834352658819566303918489163594085272920744510492177207012424448386655641662054230405717871237399659846145600818819171225695386230333260994533173429810550085181564038299448954785351071466998584165245789680911441254729710531909524472881886132494862430889559172384895332260969428681106120511510617496176017411289926230305171962969486473354375883632363360657930685619594140742794747635762332213330992173341172084145894368002287599847041019047229187988004736474639261542996535891495119859890145544241709929750068171264874074861!
 9386080031443958428367447657334918226162007170000579995330268768198539506511318555208946795822472359597809016919772371416416630439018044595233382913389263844649312873166727888943120181654729089191681014825412073576991926489439034155166458858348089272758096279033991567575130249472565779837663302656515092812775536972086040688199297749557372492096493416226661000584106027449576985202057185946999831931410667673299768068810132433877917334756183722731318254246963735798776197617604199236506539322621879155621273571801619198940284644123575658700663860536004118589188229995310484883887514710343248191055431710999013137472153503219163583670473831200404462304902442647245999554964823818320038358194958427485362897597245847428799698359334167832159118507616955378524402050029682468665621957246762341617603012836580084338998225992298755531707540424775240397711059574603608171725301964632003024898808595116998388955317315230835128054824832043824924471545693259077110413322807927449261005531374579754!
 0395714187584407622671592941559365219514406371577996662909516020233832
18781438086190320691187939003154333377692143761728568928506685396679573200082600955428693112106113085879335435876030129494763754534284372101962905702168738284374359271543568537379033405885015557611405811057272389366551493871833222956335368526190304747136852662582045140953081846800702072562396700068322148795395140596192469378501860406466182179790025108818567475407103902032189722940916685331973122542870983617657940815502820532908170453238676234320720091809066512620266321000530196118117432084245659549558673759320233166120293421579264459324307581259543526289814567520143634256467796185882396476731417418039804721902481963202753639729635572231286451719154505704537350957576781194629487177985582420315697570148748534553787289564706677863614058136866049330821445224546646698919239690289001849132180636740867742093711959947523494087679818185996148873748656519648190953870948872659340449684769871104223125122143160820117150951278684512273176956960361561091699544622748993558504607713669389587!
 6396641676186749431950122741404449499550948167147285712876562549052348572474670925036036385533234037766237930670241306030914726814594296834617197318363271851456830404712231677954094430371162860632914935632869010129223863446670023405393315410875512750232014880762106697042639122279291640029122223357706462365121581168652437568262221845997017153884282857688687447956487928557265994837382519381113203100183644588285188768572242769102137668678976794008346909153794975870886439289630836659880949730879802465813115868144457039052600400660576652104904351817450702104083298879856842160863480003931607347448537753072564979105624221418438014681782216401919171789772631739165782217012156223008589666933600222945438114863227034933537713511130449179372952589697834642369131298084933051394855122237870426457176351402388616375916264009974940140666844405068853224290916993899519840220293055870150896779005397465226938790473102886872273277078194875152229248081858473296639510922096502556504083016668069483!
 4678891205980363612883915284586714428264472603075693251445087850690024
00512654695870066663540109686026490491770453030516373042347013460448257619972400602893651094741059339695967946155903282138670533088095817862011703102432687398652598405551221294346754759483046783937284394010929350784935321623160570120089152596150183181787256892447137022277482274429393974311669854355316530588702741680448166251473888682088337219013926688341143483448717017482415981660821354778062828726570476356507168515340989605462301736413423885466144922129956965735246699989381389446200708564572507440774318183474954991834226777122726142882456339687683926327604308665227079038185549513550487973074549879586926705072168250311238017569328086725427806603347325066879106160013586738591597318893049422166763639171090052832466475566269499798483026007529063716422944495313384229414248667606871147070263415005038765131860381288771425387164058023234561509254280986014928961343170102163962180576058603398080733440455520763674552622494950794817075182119763205672300885494486373977394651440657596124!
 8914631024898195011707895181703084332238977723646200730139770049390305242390348929615024357314599679225577574078531695975772170025391302915477500824696765065506378952916790284098158009797173811182054017047456666974223296007162612566021587176238140213042658151359844300585373260906511210480795684178864952918380661019125969805991034708851107778973063404261820274179246635715526705626441037615887363933423325462359850040482103431954325322181706820255573783177845977109230948039782231811134879025285821262179682571608398250244138976439146986518837491264529911666890602442347649733887310616498306995280184581837776136302483238461682593931450905167608838410154225098934194170967034820009844133104507173674992544902208726945984940541307897316208834314186990045200558226022575639171417879223378601134101984244272251017012983255388218301113200484225202980230951286832606938176160994907541377957455893701110870125001386955192169478790306793936539823545747497463971801668160013744076509959811895611!
 6406589651198857490451458085946550394170501519795100110095675156352882
018
75189571402131716864986065309413876572054855282622654017200736132098482228448302108382860004586473891640238437020004844599640879283804216740119049671026821196503477328183944558410005099349804716405454791838338808681221759877630469420399638992892059480251410639402605602777273486940535419528057257461967412667136336446661158080540616424902067596004027724971517397805259421646606997193659658770031919681132628799873497939755055589060363771883742165807366244853637703794865619962835715588419808435093895249862872852030433788164737872574018082960699420969820767775016351820326533510912100689266531373191416397171254893840305174809806823143147263744797784875709836434107181130858458808826190280882337730515735734597008451451538854986896354951951422521589503126279958316663001034150572268751905649858631567097514774268991111584259459329772735363148916299602671517280842064100242169533334975665276897193321576979686384976663972783306377080365897702820340360759960024479738224216770942091592864272!
 7709450169617154688813342233811217828052917085113477249405516591309819934836931099223394079387788773050610096570526948959001043734027620653515004353584690663229853543526030192188476032327915446023352396576914337198098052988873909036194792222647097936523657397743170534470780026234775227825657080907176457155386159254058580981260795042102854441035028265261581889411206622234524220726370436038925124261962813720746130978973332005357709812769836332202493971385173064178035616418153147522366674612628451768484998375182550513450982309147626989508548793602446625516592414924519845172701301452082079573826149349779069165100689730507252602416246931732039932549548999142466440619233738220400930040818080416814958541432126903195935190178203850323905129610417009969911857020789169442975442349246437471311234919894494576871923258103073391723025066240703845519259779895512427443642510288392008174490151633506141579243949445624416671827999542836750525592182182434729016482332809853103938658328347582304!
 0947294251051586882096966704985026969377136285901859752739913799089857
70320703947748325815295918649840762498442721542663183701841935882346466753696821538359183093194642077899012307030880634182682656044098107245523300570081206279498349841473970325256481175073262325715995971307656754774253051583911130412022621768324841351850163422914222318396344101456808504664666806909798425267876909710271775546215225226631666630621886506248917664333246939712774329258278500316692979780116617624262253636088236494571517246615072425145323316231940000456237781332306355140731063143043444329094574337690233850232233953212659741825094868686483739721265328206607972718197226947662400419522836752611047133993182362549548469127338455576383595653059736334590505288555610966249826335791688504512222379485164832081421136937198505239071485060144846259312727641410627443343839329637772084648358090467366552850999956988226072345324745366661532957344127428076743412796632911152213875352116399360429237498390211667100305993615215266214100854586313715981700276630098933124750929967121230209!
 5933533892490331929596144851046565646960331233008442749602002507871223570938901938502090397441723434077425519967551688914332744672244802842554728630182607756862361560874021052977710244006110604718623319383051906379202239858016193898232494397339379212704763257837768347023497194909052264300070187956264697038934765637870099291919553012137755376436987925416835790537368032050852141629252067045244615622465641844777013172754354164808395830311137238432276248484087265714064099587415727038763999946100290152900550293315962977037063517279974761183219545985433963955301332777746294719689584385887690155385649638917000531369633388102712747772566529469707522933500548127617965859815162801930624618548963996333515230827491026740872726605604215025163090982329047852255323077349122554223867755259912212290008721710634550221471516720347589588581073660131543515397461829524878187169739645830858112401983124767548787859783261129947436447518023396175563533826917018151579432714978720143454001865667985290!
 6737354945315335137525465492965486612765433303724584065193509107123879
79800618389713946054213262318170405317846568357644356019371325166929505889778719633821503146384230961843291079750466459029412977366720108853965928623749227932839778236321544631308152588124815194251380243739555089006817393496870782410148072653531179774486145789685145624930598030008103484462999260679301344688981168522994901060933654916086556102661606115940506980741710894912135054413377983668040766874857089505405898560138599726788488207683174784853157078834414844079990400412639261816390265702156032257139402080173175495320338682332422288484155717732108216378565676953663509610568069924287759059373955111829188009956423618379303867523173513820806050859204955268107966004827300786678970484099039654580360795561125172658071602279737014725146148209339256137752929169554719903318989842729299383758629046047245623555602479292572539276466025554525118481590981950596173585926056080243038178501593458389189484095453904184861049796610879091649711063338413039254166294123661965497306293744716394479!
 2442829172957115028585966489325148161539834330062553886227555310976154229954315030043152183268437757867662191702272862202875450862962268876003221002268659786897158393921490405409012285037052320047944967121296592605361951664791793464325043130493818187067958685015875326983495226879040262435988896230434125944165006877262266907735524734656307357554549812729889148785314618383128794688918118508510093762970768354465148224164523163726155231695781727324623478863918002463156631181778956165222212623359121726241503555960602335877305486296996568030823014233528038588611419285512363399462637299414853627780380851783942286848754224284158475252047603444055514310210126864159575489283674818807808316717848992095528164945624918897148722842162444098438918156014495409427595723453071930961911226224767133900834905837623481883292472079610828296680236998273732989100744397126989283921504396432085831760409505559691036371296793558877282352558573247961818910714067466591405427023253753222037814703386243250!
 5152569928314326318964995770340802025270136396548716403500820208484901
12996724597162897857963375341629090084879602506225573229192565452184082193962519109675058305968462943962408172977766103788863955857102330460105314337780213823229848371483746312294578263795374380229902460433306335017050807835654006208177079861566601991177541097404013838299229815596539216886495261991822873386661384075224513428496624084978188173230646650475775417742525501693505997380597779109352108355621820472668740357592217241477332411750810683104392951785062747520770976218089958096151880915957500541446709691851019509891999909879099263815006698351575578128010598469925216626608799671799789116307304421275233627867116303094399225222406247663020973632590816417578823978742648636708081001894160891823718170611894333931018323725442460265953623575310389484041500638675766543016802474370360203501728230521518255986276935374635148676503671385793431343081848899940985963552873706874351828359828010317647357164711871853695143764704934565635060353084257285265118709544349221293569527249479303548!
 9604453077843828674190409162239749092103624765207497252565652236239503125649651291840852314565720104395296343445249226980796752015559424228696814856531407729428372078928925984112237955768429867172922469180047078915951733612905384279905936800874280631107329665701889984870508483618323024800101496240654254149865689000171773908142166215946766586324510199464757662921941330619471772744442356232523367196255296340679342017975341484471238086847780492132484990682353958925491161186698836046450016903388053808430481497202727009242061284411719573412067614269018511266504050836426354089885794699407341710225011217526210640970570780966086905650446147150808054025839702848767211496631446916584621794318353241374172582483068197975083397156632034098018909764293848490323056394587038685038101092386307138778848281302283723925085257925500328382507782094597129268524266274066950925469023913361448037098088117926478058203723034807093755462477587547092535083913789126513639019415368816391149217381549829952!
 8761211256020974352612887741107169551485830758350343124218791898220440
314
82634211752613038768344293059107239792523860564645443362308075026415764090696361453296235915850623497910958409418789185684024770006218747178871938407223241076776367069398296485655665065242039049384256880324105323500851488768189066188125495106973424209953825178813111191047820665087598137043609309518996665475214345907247507327071468113906220596615309471266242866337241986115159904086973012025243315809449130852618954615388143762856707710546518693111842917927773192829368644205920347376683435274116343795156136170288357732920066586935037123912690197139614921308182123116798016869894637696002820991419476338438596482244627705431007221604013946339905394415924268838018056980113124509655998948275943428921737432574347784586226364077894912268796197323754964854983110370700780379871839951644706951904177540581405328552766505618875545502513278866208714432145556589138152823974784589464918165743004829902748436262593751005255525062426932712146663206619638238969289489996043914539867390631009648606!
 3711658253806091591102799025647000721114752106245041500887308589014236851404956918832161920230502483502155458132326576596596028256476094322682183567120398735446679169062060264096177360351147512176718884155457900832519392673695413977934393778780421351590824047423125917419853924477876739735307355009182691288376733543375138879547025243339010053838423297745575626404162625606979688927041407978230113026133870871123598139888979675152646755947922466598344717815929105857515768506034840170598803123072979134736626624655115040361589265325879990662046502193925517797662854501088002071758229903162359696822070784983594219274981667271254158132650625747469042515466032557087201449823329985058726781323733419031136073163997284784323972194623668769613126600306870676790238798001502337595334014895470245758268709296638771879028586287672740906900796390500389750555605165449600434832908705613983564389553351915826714655593517157186662662227080955229693311939470728986747614288138129250865087695267797704!
 5813614855811339032638826862760160306038259544852625087280642255456290
23598576737353787094794940576256257154070696869100974746240279966895590827724400048836175660919639132761750479019433384181713546866579538733018499954933303651172667677120415313875147157895025572292522214381248873217403069444290381877018539999470550958128349157308154448388175015046007339554694601010600658694795292304303090478762195776033078097975621811505935451858960119351758387958461077142100527578098079861593319615308513827780475924385246587632910266956434138456048262489768535560605121821694294681875040313235763357924177036148658799381753862182848698469012297190279411886084613901590402977314589065310533900688267927330092448464877665066169192624866656000844642688129992698791863918841443410478606529957226703496734228863606267743009910020383839766910787070817396343757519823755288722949257205313146657678442948357725982315248553587051732584760585990735345949923115485140213506638300560767234270221055823441076349289024329481644880826972733783276990117180719501781140709015507105399!
 4885366717253380314200659395481926755163388177793232890455097604052498379988657801936110874831062821522776955133416237493770583796314574027445342647708838607581730023031939085248630918695369242541391883276445041509070792212358860694227796618830722955724580249743009163920899758625870339610620873629794149985301886566039761086635435764947610232734683172157997109876047803623429473263061926741672300143369280175429467254900173885856396638697907825444241601233612396628783333145589626399047330624993199604485217829059917002295161030602518786626445556845065379221485875229600548694421715379348587052517993340452371822525794695310418789287243120821905717340798358780529351256761504740196433850528146829907588018325457070179786560976455915493240382045513319806119373792090277923291909727936251288349390259016379769520404041304456909047727828221313161798695821418376450672353837005707441984099251154550527350689945469146634064958811103374701026570274884834688015680266805748376392940468975392183!
 0096762890492299121149862566060893991988343603008069422369972057898212
42447892029562843858599941774471792051834032632649775665716703111342452176329942158972269189731436680914901612871543577394289576629079003112252936956521377368524460649600135584497277719628747907876809779951480623518651889287676830754643842361377213438367201881361081523569415275465438432088235227824800684057923965915495678032492169507682250772266155503457945017533698434319876422306619580551131009310315425389876446442773539334016132642539427759977885542489464955178503796328722778317083300966288781940824946824493002675881137932967628667305285090242238636274127021890996335908035415185482966580001812417845967962637414401494691031878056155507038719724092585398756785534121314033590949048864895052685651547280312826711110947218804815336581999704537532486017559705203107308065941705355621684889112987056711055854882637905705784656987450083402047125819757965611622499405168036003868307272080117001265870423956435504048619658430828652222665747531272111798010748165981304556457195951178158025!
 0486810339648984196913171584142688247551071602377481506793568197283586102817698971916922751182767795918839850917539319328047993474144455730871571872806918494886347627977266403997093894826425264490530697811061499485052060057335490122065720740835943775829280377975424879946164836671556474604279835594957572112669399031531059351131320072209902965934084816075345317924201597723252148825406382769031214201542972178734660323202579499303882089109147669506472404514301055407332337497879143863577064689032754366784487765862453603977367611939423766594964477393465049338960997705095507020599783939525635843177699810627593151210541628933430397425990871636492305577527521808924662331545255611716408288536083577840794617483958940908973089938167030892069818063818772781501718765310681656743507075169002193096416557847180544441225092781471227749278160359428506876054238517463504475851599106077468454384218832759910163616566924779462245228416925925526347059808127840352222489615420778009624848742385441109!
 9966712958296936828553947001915400364377511886132517677288087295606167
42369171565515425115421201326044973944987941289485363431417348081022273519079837010280862162104551757564318997369413988870772309793112686660783069547991615117036536864853894689398057351337772556322605168283049468111428542178648315736314389338535707942499155395799718908144904159943498111189637315968789495485591204999212012382481363111186317287055316426549811047865434337354406545059667440828890585754220773026989505175818734435689461808131077386020661438781403795420243616682383566427342571644464552617770699546336048243057813039833795225460954829477072112394804479102792423300063622054553450087252886617415381285752614925722273402967281514431306439763740962237193085715680834294733692342113282925893769694153543459152932453874992979210492711463389859073200432016667625257490626539614611955750959176283874281334724039221026098906029656594513092554969779698964134677285928633446501683941646212724152434812975552414102478303493727948835794571601464402869125283634967405217221232806880793269!
 8501324072275660033152762797382942143171356040394696567889041560687398608035610608111846722840437198067235526854814801452075574431244558416339098229794686059001159880106529266965122502132603561799699622825856860287569538386979291569763292328032987080495686098925679142565868671198111180130086172991095502657103723027804683133116481871025635029164245362590818156828709278131847309503558447678785949397424598770692734636998294621795273930663924279875399741491201192657622539495953814759526209078669229354599368296385497582057216667340664988674058606158576350841714867761024446663732550242775022171226095608570512553007887648902878088276473252690685884030617083747037415616868185098793450514154209159225158898958505589404232544436214162526945428983834020712233349694735530504606636683284690011612990721970061020596167906875325229251393553642743501354194433850089096068240014242959039853325167146395288538082580083978671338260789873944339439402639900698069263259882974598415945151987934929563!
 9473274595232291636611224532467866333159111328708045204129737147656300
813
05026400027826350587266124566067082300401652831938189488275347578733362141499041655243023492354372660316971382204489914188548066636374354836671341366748231409672107540551095070559568639553892985202203602747671672524789172305286217677446564668967059039255329535160642711783426859984832149123161130468436277048785444119085979274666731085962519224279671505290769231980688374170644672208096108957022771462746428650427604617138234011521468639310268500104207092319230382269949519288659741000589828395486447633190878853719375678096700733638626805156502072785145678329928603305878366832501947348056545167491578811943707580226537814492900344600614830212257023982339296168117385381550396707047277537085284258328497534131014851859151982830118018748409300907287928677511844859364815354943377967116382762888385984158605831687032852693833249514101496349915430639313082883265969422415826013551985449088106086796152615186703171024155777037433063272806177255029285645928932934932989550563084257346953160145!
 7835032347759709901101907006345582414970554742520895593514352493462878368412990301096115921590808242966505050105456733839586825680434668523502459982357227941045618012508418489505952191930676243814584599016660411374438934005038746298483291954919921730192757269090723671657587830512996782751604819929236714487792118476795831782440338461072975308405908884875714995311355034637926605061938741115114001200874994203578860059094379970740286581976141383090042840975764122390020361212814631709577122993602090509752390475285082458287266964787371538929433039457891085762962505111179703505434238511476092575901173036388170089096939299877438892118351461814077438139829487962716977935785522403643497985154860521729640810457636060486982794317465571609144604062326917533608020029439133102360022221002119767335279090786196614930006477139089158911440181737201680120993526693927237230214323859389813849608297021592634723100075345476530233026933500527751826678058426692420320807935286214538555589079352478884!
 4257986020060605943470161006976119172515706656539813499854272781492896
20710014998124084116772728683016064298208034890858202242896088990750514444066532010489726444702578801902284991074169626430091566697358520310678263351239047228887580416573087003930254440362539520625648233169172226031156760786536121837265268552684658916286309358399234292371948355936898418054692771450859882280067993271429818780740766332721181062750423941741980153182537193826625435698652240391668592842832805707361990734397983084651776228846765127000813496950587634134055243563917835777739885732498873238076618170337175947089922388290159539575686356653734124128805528982250184764647798475718060780764793270004802484153026191803928157710396049079939028858087145439636880647333337888277701226283147034610319206011708460158775355671357664631240987564110308625473638767236608342174818592132692925209108637782728409645866119101636013819932535173043793761746891846670400901504805381495109701090253652019183206258417484290037325135722234050725958150912969622414377274406947717305936427377280053214!
 6255840493902846432498710414593181173895715387870560500902804970051121149877160559727402972329412296266128837538540391676877842969431685992376342526334387187225034696691569379805522791629735912689850967390326402333013371000358523704027684081315643362304746765087666545829094366405204906896548651190550051745907322349619023211953315785088814878588253697452538762876475093379869704075461859918783536459117235427298909316085226631274144871094855786784631580220740751107420598914240484614209951057796444324125746914893225890003733228155885129989217079516767115865877310078419253232851478551060013956233882724632557491058094445338663696116924966495126427902634686413545614954723637760986236119291781247270120339316216378362085280801699256043629322787852460433000646421944366824152097373450678425423927193649364868928546326753380133925659811760092136666854592993869227259342761047886158865848712323899921362326570951955228257979412163826138416162068153661917534002990293618709756605023768960201!
 8810638136404345003379891689861502442396275255154007574371600209673978
57268174717125212609588227796547496189420418336709574059391126922416454666726287902409140312207460668176452679647404371573691123471162859123928648295099643446712880717289969522003720517996204395868651713325781516930224941129658555466774781598888259690361196002031007624357491983033609932869805826530285822441728897916297783941828863732367296375026161115392985992833788975770647253123870004487894010923261324339523430099110558635383836789018909933321854094671980623825251710657421873410478151695819208685046353320992743362360092842562099825247034713137581664940917000000204804082567697391193212464074663308058188426243851373850950155549543286024905318650039171764906531338058875413988817955204471329242264486653673424275262149373731880692889687795294665433149585542433895823807062042949794900662740215631882441636918336638534292541901463592138599422402666239382360781669420832914396310004185843258196945998087331749776553906411101434356185944551529847807397423431602797289960682721187816248!
 8295323730159350365410584087852490987881437609066979144791278350305381912099846861683891238113120939149124806231687239224661317522529087668922714356441540131883517905247597788420309266619927550516117745009196581255862250806188809252659628309497361048615078478947834498775081839060460692683090912974922273791359849217664906666725864492049689379387990898324266999057307728046285057483798360975921676962301654012327189773476907174533243996422919986929612345535742937684470111330417101279393528466018873958246123988592261800023877924393875356713469366682536880803940507628259174844875883763923844540255239845539287878286571190392506808962314917511397946063169183116342327773275558193143384008898956189062446250743897378013137885756685915623777910336968471310366484051015845536926702078169801206602726063329800813351616461922020363568438084953627321261363720896325562429247717066737751421390502516771721641272401811774898798761765299736431129927475505045995165576426198369583582173897902495735!
 6732842196773112678710456515340482046203356653180783632851122447602726
96377682947916146373744280090419410077910703139737551460499082871691923893564378016057586731941058138661136980004668391379965719100210581264695858613708856363774437535364939862877326099150515044073372686557714092916752339699148894268473122145081511081663630577291478557610357700474916778246718253733039485036323368373524907576241731593228219788976785269480241285043366539256796902661353529149619638049589353269388798342821797403422665083021040847832236999935007712855550280116184608044780890716454708338794579079169352033880384048339591753038298245201380966868363983793092973956627245143894899016436007568086946929727174593540275871626260162002937838959419187572501151173438263360271717300396434999477638639254610419386393302104069497035987112662413582354131797235164601208749194023025472693452369924612198466786115219432126481041790877378960775458670899573685383819205691761321398209979215516775762763615934784846537611181254472523686257071938854720251982036320020109567805156348463199135!
 4379335648014151740487204724350750033211016229002767905363846186484944611801670216895419914854193813834276802539276809448398206388319720658293516762303306685530562502321369327966667001071963835968157912978849075924877170413432830115154723611159447225376734818694520725674371923586813537109397190953811788748141329087525774401685735153029586950320885827262741510902383852534958046283116184031394973391085758022183690093906924794966422844848039212868945921088550666340323515167103321584385418735363623796849176456752154397171206615541862920525258847943801746382606088288462067222994262147093813780054243028737956617647550754496374075512466754047093618141791062283466301233851937451585385040379913579862719773895948574523274467214344857952118294538660469691293987146798947520889684333004405062131328232205097427958933874217023976664839579931348656333900053164749218843522571568939832914570149407809666555324879830054755319275523705346683693198298732881608251515877725878024439958664319962869!
 1839136313896030721838640961699935138136037798365965193501849462658877
480
82536666885927083915993467508444690434805442977224585568926217137515403788917176806887820165238830114654295627883394570728472730470510401609395814155541351085590035571011545754057289616134610707254527344972329619587170323368583746801006012095457485172778889813264888246199830694944887401111265232240316093353095148024082815768828609823767864328636773985051302932247635123663351617145451161713826042891397332183509810360461766660177826230307508998108179877840426383637672461780914510691823096768102847074309890026820612614356435078092284545685325404751963539466499810071346928772227194510479969379355264062967034278271069602851886816139019346140442173815410612542941197217192892758656624156557897606964538321971625090475102492483539754855949547130354272897978220697987608454300086898624741059362121719708380664299319780818360292478782616198090820584093383646962610137550147614291024845960889930435960981562698152538810806683618484447868243236369114859227476521327196352344130149525085438016!
 0948750085079001558634480250185918062101296713404268916457207924567255180731715105859540864772230552730562176894277012797219074223027322636448812268255129894254240626864932170289957482502606293416168102878229849366668478269171851331367109092028256485450674961051159816117178463747880609730865568164339484837641030643204048439667785109404650110881929474334776524471274064566896991268170449113628913176883927736923682976932715055410617885363135737234656407119848395373378653668909425274598520335372301052424341845517932704303115830713315259313559667143879912495480882497831595728880086034843923642509937036915538856299441190586616168267290353863019791744311214194132926932242630496794372325016451158212887141202970154898288078390404650627298298451797176858244155975860850488131908206798114018039172335672563654849116724997999998749411501681926764084150763508498337192827512256998599540047241515295695440695028915053732692087641929809758616095382084283660497663763672230974103489244874169912!
 8282825128288802458138632308641897327622805009269265815156450733111719
79871071305961540384914328586855324083204089416484281497542016865686458311876791683566943058856673567776612659750223644998616659755084303752546556740802788483234626337642885335059343464628689442423649004016977217513169983735782670019966198364958641906880742937619164449491241609126583352942981354409177720034293394617285854948181421295395856540551303358109073049601233529653591017458487006327542812626951375836797638658085956902984305898957184470648161506044332789650376819309936461585849917654130113847399034421380274463427205475444993298545169389378315304982518400413020130813763731185784076940020286063844874419631587009874790521473282769826653510311115893915333232515500821097896161452975392048590244749120484904796013799837587214769259284485673692260767361162148728717595871164358191184102586532779178628104990468827125863311104045440710160649141804644717413391095397283521583006078397982621121275473404183123845444721738605977374883061404012874060409759142084609225753898517407222506!
 4756178234351735237912030327806775298481896102686518673014729110993336481156113537099860470591760933556579926719207260565775375863273904289352115925807700864208211013936644985884900309056393379596839744968384376713313477728175631229441672729716704191283031169518978853626842417765829077301570395182693673026834383622116587310196306109154450160926837806600849831881480304282174625578972837908995744844564245015135654195010045245839473242132385311065654611765692949658970894742623854248560840833677341850591761399971445192862307944420301264413256934098337548492921401115026798924450277147617082354812484874727648525521743593772275142518041460912779587978045561022801874856377643323180725930529520869588948158678490709078706057875919798121832761570659213766643250455971515344095258658327251238457629420749399261579293365102157282420754752942327836654072329061465096997984594846470301266044066120996390069432192703913424757405523167588585994858385651264724309952791388927410003301282747607350!
 6665658973385067212452097974178408496658160504924180700541947261646872
78952082780535753431908356041525251498362344692347352403251305926679470686256100441986982407871004378021208608534464189519740366451941718706700750573158630397781208937878625718411608906304481861389542766683973153170679599301860694633024882634293645154048268070362328874354148255170991595227968531809840743665566537444088778851853761589171129426249824706764707382154748696125287485252142083741292019601277049807718403771505882452949569538912176181180594766021861532999208606500801587370039917769191271466277125564639852987770424143786948764176500833154611043914621171747999163981941116613742983233827165373429505542094041766102231819979092821432118390638097448784813303718337389938538046226232823779086848920280586306590015030497434043652369524989802932633392401200757392626223375201338552769096551500982024427507575975429878965250680914438142798751639414372578956678848792114256418073347231520901286051860942437321110619819077230359228657495348419985550169091117445628896885201119666171988!
 7791648184938161913737085566378598491310495993257499563294802749926037846735112165599081683616251274866899395212445503019546788540078914766291606387118787455451299722498807845591184745897251236543589673116312371790794736458777131745816185406201162187467610642567570517250897404587344945744788109121201108288100609393747377763755170647329853667228904841430066662361066623841851228445149848284760018656259440270942497146696215152723319774290984777358582885380942359426293883052625994512239200543639965872486897803078914004447721908742947008777726137819419772690597941068156332518111325349083398828191283620038573082913124412434992277984887432992329165193204650214640790477717061708705155169994583961067954654629893281619805350778386907131732858940893642031402862445302436111257519687197066546449952113904687395821043039476090399272131546669693704274910844649700118744194282774575884232498056156128093369658820831965557523229165274139570931240631861560629977480362125062269922122737912741255!
 7326909583843568834956879049530104081467871060875607120053980494692996
16634964558273399764958477706672367423939336210693174531027024647659594316539324224237404238942819220033877669257235080924115360636543897510040842595288350733374402305834399490060992341611323216400398797631713342953910426971626038419807622771579983341818389938311076749759459737132581973169935990831143220500940710418852522019855400360950194828434900691627376902573638764361212177584976875252871170302467236785756387854634189436264572597606205552766628239130288937742532146753308451736346587240385059170852887771041581978860736416298612459168956892659203838798501762075805032188130705805024308218141250426335594763788594474833956634721205057050668261574215464973818918302747711406601377388173040513344750033858955297729017794941833193472271917666494857357717386101760504949576512087595842162144895523718994575771400772054355419049934204369318604835632227038559585585778468279305566063996386850447329425750906889857545342177617087616623240442797003131927388805745301228057383929207003387829!
 5031009997112564503036988776301226259956409799211754987452932318235549156377461318205422870641485984848097230630281183147684188279617686395894347175213107430956547421010375875653512960849624396593645799012645916736899030095797155438084446125553219686825198523667068441389265124346286078671165681036811979250233668644375098553578591942470373820218500908179286766827511701443443046055000716069682429003246601146500057483643117599516111086790013968563478082228408411043826498317565680195524822327821225816813535957721140263372494712883214706108075073870433326906818295702667381543895032441785126733739209479376473045093256564654320391183805556617786202700367705817747380263048225972586184960268779376869139063160346613369690185747732017229191065621660915834916454596363461995714649016136468043078300296764560012794807094239543315210717603909063692225758925643730467249889825542331773085278465048513980727935724738945366840755606964337627739412833461662742808304562863813075327004460060390582!
 5556456352491794641238873117674488278997312362776348272726156196500436
657
33102305774588639574572775797316063195499795565427047353948045046936460849916528126758825947758453751084043337508586722362008144061374414525918072012248146287853685889593809346670835663437602064281542890313067147841672347432745276422512882358499976100255132274478794213753657361024783927624189057750421265347714303939844365795741564217704975026849813521288692725775527690530234755532070595861553567001560513890541184297233577437970977968285879951114595499409603021760896160645209459891279096486276577657281068505177387785655515693071237859709438961676783981752291546130747402946867178600615637701190080802282083758688328131174554392309201162967042947169824896804959615111689020633716336695955143178951713461449512375617755790898869804354652795681488162318006525712271421455074379547637988144419961107967455380937209956657083429837379904083063382409170313008454492910503812276467844325809854255375597731261884735875707434826280169951352807278546791424848347164787419450200632049475719871865!
 6495049933651483172947634696830679526949136347355234551606110305658534432190642351313824342574478798072430354813927310878394315818971296102050161770666837146445909198595755582469023153877526152526711523075958463910693898710467215974577788388719347267731897587298302282007355960592890122031521662990868031097784720214425008214528917877151067443193275248106083595563539504033029199224759884816707555164538101370808619420469098874487398542621690967925968997369917341827604932234397310756758980078768462862890209238798388248465028852372474854559802256074400264342713261825770797499237985823655659961416750991043229998429655547732011552472073501392247090604939679779459555758812280736984508176150841888719606453389110593698987676756926288367577770244210934209777971704839626886823460274668164744230012693248302942885068322912694121695705162198731994359788494904820658281164547741528768428826343828478121685578024946591806363190483124649665351789680183018230137425173361162280773255651352622311!
 7592967915000411874616566642905747991802263227104535692112625156523663
07660279486192923502755036702968115198211814895073947348288973557082225822496327959740805699292540821815550110933445736288722277267112147527802558929089060956531824720778941401831785576718861704672380100344583132655962877046667607286934175498849299508004169508834840987948925830589537939812681318338869243231983062119198485198472813228903251047563152711674705870291795572634352764530638023733976382538518737062147347852958135188395594648924219946116197022185019457486351640606229892636720848600470815367783059594080728033865362090519925642614881526643700979577274660185524567622646459051795380209625283298104653091011663393090786876692662891767071212995891789117916100048077495205305501234301296157117922219289142644122343236742142524629607910791822132720975634988113684439182867025761751879360826492995328031061772977310549999776437193291355660636740168952716803111738967205113526666456645589810434868742248396833262106105543489521257008759999788449704002602395530690942768281717606968993!
 1432172412159393658020573197176207692486658797794728532998213855412553887226518138911305483275013007105279798938206538638012830800707108975316357949857344161879647694191170837619315852368691597152245005933822658026448879166756772801134646600596402925324621578341718280038855196818233077844330036157228386847653097991131026860895229623074795842422836758672949846857170541085594115444160026194361091917218354127136158959815632882105293351030910722077485044027657119156658476489030870941725724167230485956063389389188442135697721964278835392799308990198461690789347288752362621814333114090899364638536938660390144728222193289834131246230369618148785242141514753666569731829877327273989052909254012660678504665908519462716452120650742461212619120429866690836655510111939671950173575245230759188247321395467105695718491703035803975071661853894137827515460082556929163807324112900739085804448902886413146651161390394889741937843144700373733774811538826219173455184168596075925718240800666609778!
 4796191729125863779954821550473036358805990725578372658240274099148519
94060225420764299622752745966354424746748006884876864967105420382548413941408553505397367753533541607450541097541440370512757711461166649274439704781703921293859569855603481127889239058167855479011543112338384549134747218727804545062468910786914531191872720402850795020333360904169591577582977206537649238495800065573539079748254117609619301496627543626613252711458563002576899438721392697175289056232735075970757429203779447481780252380117178133682660669307119079917226762279693301967516092811181656975230227499488375948778930470738852231842045167185984007634058960113658265911618723465945918884457762648875091240001171754475238573021470982299349232574127322953348541261159850530364548220815592586002316257686726599749962351415549839976797200107123801624869268259885904586797455498013086193656172487586997524929330459880670534744377404057447868352800472010792169780482473613283262985587156759018043894829201505371419847774337838327246208068907052088436754477981104169876646727885660059847!
 5235900875615868631563583904835863505645769386420966778051551545395119826659478140589333321947737750868780075599318726939284914577129623927281332185512621624614739324520190243418091585129993777379936549514121230750801209805862251867794143179321002990382669199313150996107823317697928314783412155666714058935898687349016980455964982414330397173279646249447431062947412885381773577666973792477855717990640630195603989642028159251985673446425610793789851590510224265406495944861317004783259559514815154673745969557216710605696621308046791020616596194900642018694073476872811618143075594407411348927781024555543196673230564611474443301849543398277326845423771098973446753535272476992329389422135786932430184846029285432267958109483466243536627355761386465704857838317735367239564685927134833991748820190468622551104301959047485092214242246470422552638055231517428078665580183501973316460859735985858007069335608416003985566535986885935471836782045138340654287552748914611231246881822747656971!
 5585808537723709897222386753470238379261882384421104436471327714292244
07948219178199535989105195064111195617401904620334035452768188979965444234260473596442691094622308283178806639223684524565619249154621312201933397758196486463169252967327962887470485136360275715835123986580921855964892675285223917192240491211393135395638928291954482635028027339667202171749002324384392518487388534933530030977457438830803942015895775961657936870926668404150809637019783642790914491818059182342264801038882106042958851977956799705590654354844036184092397666912270396201691431422719866959313565736633311088761008763612495219131295283051632915943135168778239550042441021395801806814236584651406672348104185772889068077242130415155871371602164992432773043894707819063647577493809915400482782781547471254534018515780630667304753273872322646343589285794165709516864938994129256500793510351411539136974382459389949633369862395429696963545864037654166272397995915249082900967785200262429036559245477323704044456839240577463021449434350202698730404966566208279179482206932099718448!
 3906164457876535271535110589948655069182169760522385294202134433208567703987795553382012810252769042866665998693022229063680821957588735124087388009957062476443169266612737758202304678850347064646135918515152160537421337812857519090857810455607810888614290626016623636431530818986026630824806785279318679969475270781669879537014231536748686712956242405368052549512854243354798079483486298560967635848837364225471360150428142585499229092077571218285855555438444843906758001821139364971554663088532731291595538471141654159743203222174131753469776149417825969065652228083522877532242038322599594410095860311011915588075756021407312501489621884252049526016835622397439525470154346077733797063043826770070059633762256496065665651230277239080281748554303378866200780799809069062774462057944127258990193770539839149183574862590936375016125900932934013350520969982327290367232825479668632382369214479915906527103222977271998060673809778409482971845118698751095765369748373412068351405117439968280!
 3812865862261583372627815606074184944890568775541284160834529679804638
718
16994923913013797575628443504409697527423557678537669593894114394284929579614270320499394323618943496859460235715035787192288543752594438011406862367635169980468988952934487966905797157457874998673749244580201849025644846245027710941360556226652923661649683076073098422097387000809148457420926072975750171064069570485612943526170815375981269968842675818556341215670000460479944647602176756221535356010363205374014586184208644414233246070464339880633943801579740821164944425109642568130870508778660532766048527122702682689885973911045024602741571322341767718893177460170069110133149038667452067748450390456481808925942003959780459613107013059968594886308083362979436234477170109062335431071250591147541208816381819197066628691998103521040623535938138265143694839201869774697078720827401450690046737849453737908769550654840209813440799440014655443640395800116796740568107603157947813010166678138730390384780926393894011607268510064693606208454784233860410265825214260852649375369224188527914!
 2465605473961525018038737210234394921704997359206907995142479269065372912130183208316622385435668089923954055804237360721776384960762182446794188043178424701494382849930531183190226814533068163928857569869330567571968357319569932999254289736514723012642932554437756798856922027101589163953354630084230607913687983867520613024335327753345883243215834463213272715240570994909054667143919766721044038071813234915225093893202215846315432882204401263728277809371186937228566462142977193827946425632555613654322597824234218052943694582561229208378768799948213210981714904195687786274085208107773122862640564014446483572605571888268720777548390360714674173254750820428892764481930218842995430966211845187332477371170861516568851586515099372988712289553957179042360194367886316815354815961391843036844747152728011366360408313179356768564689961641720492813278050037383555431490953068458634890177137632938099979046936639745082107258698114115690396766295548419780110668775348097030537338096700714295!
 3991998645624630893580963740075366984623061681108399591331571040096045
66316213109183046624949546360253829935107974284256218391132385916097674923632996104531930059138719525251192724121980412570299576473473507962929126150332012239390759133575896109742015869457141877877156303361019929222973844811931868797941094155123673902823426064311778434818182730304649000965114703432340480674735537940469878354746750162671803445188394608418362746952371873585991091970686135463225137088859175875482773126301675287797175811583932995090326780184620191675925283509442775056984570911292102658590930426292828641132490487080989856610919490367245770406078608699518410048222446293322248939720471201062560692627440842035943699388557268603222948266915889978181722224456383596588270896932581921694904532802199235704340051791838199686604168315715708635771640061843704499885227542896241511880239863192201346385674185782753861364208905639643600776667484950051777748512140762697679621501430669565310854894595392593441126037369515757637575864563316278652235030835388764316758536278760174421!
 4108973881523560663750237148446290921083940047663375306202287744161354869467109427308051171559531478602510993392600612349665872607753092136718895248381909584461710540420048666652223187260047295695467335916768020100845143297631666372766041343807383046350647103862049742146036050318118949242410506264806465198189672366836351272222304029224836320909430130338179727556319035476352699990909888221650844717830172899038393758157548546303762520668963951323412123132940089597450096894508128193804337496418754591875700012968350811500504251042443055731271470946760609134126127206761100680721550864724387092532861482716683762276073614273798005750635130589077240536576994043017771340355377441454565075859750698126280141790699974929641661304243769098129011848196869162321528942655227365442239018058858967243044361920976703454435686985747829905035501570603061589147549393518980761972252585646869185966014128493222698108427778870977533410638259684531901601479245768343682031864099089777937867547325872274!
 9960508073176698119824499847833081069178890949711373318605876124277854
91604159582220323009502960529616319295257242380047728174915035356371569024766505395500582744337987041792169151690962433874546835300887477153716926091729352928825543788405798380360457335312038181038226955039442819539036828477113393228494907813830827809340107407057306836696872779210077678751174467874659757014643716894757440232941476156522477517278815073553810251604955365835163135794025567794769532401121831832367943197786618186819020750362374232870962333299446856208447403760663794972260665243181211377012571592394615808039834122833243839599022301800821314764692314339622565932452880470623578081796359981001151847543093067374730053699322449224847192062887318540160156324928325820606121341761599233888268621283468773664550380985005669719781869188852298189889581967509552952900135189147136893804216882042704656401591558248374123484571078304907518550162869940492961758115116723914088127824353944376402573751878802779616284558996300272279357831744838533648126844459936442328243227786241048750!
 8048557644785517665425726382816537388798774506042581535745311783553648290227848201970062216945559237911607264243486836920610471735460252218936743891855702845639270462380426496987135807375381636303998108783775029440096589366630608864286496466425168371397699173089099398301820779208635114967685207190420178180102077536173636853419029878248758431339176916383779803110359904931607440074531118279967949651873599253282634904825807813074491233463359738497111181088317405033249732671938390830550533085028404877627405283743000003155426073722801745386005346694938818857339128807734886599177946757207000452254925071545551160597177919727607375833723714568936264293285288527763213234932929976781847644702424542973099674688409054180011767678586728486475623042227022186431315336348904673272246516530729032361192240616330860203898670780674528556127212696245217351147900125593753469292630806618061670709205608386366549257471813957791808971726945633049901828458782659565511841696187080036968328126122584102!
 7213439608501973039026713478450580401260647455822414284384611296532451
82454871615826002578372386586773034496291079417081613376408459476581848694681135625689149653901184331890434375266275222835369012979429282566317185102726504784460076661809449666142480266390137148506066885253034768428248418511446121920893468811859225863543800783989890194230789685094609219488431904587680217135553836187201453684473969967871875966148264357818559817845106040889395617048740700722744172816174377980622891324761929983604015797804003223473749270034408287205450100247163843400018904324773340949468898431732546180112289840842537961304558816895160551150457652522157278284785810956226480783803158717529542149437105458145231634589287470303936611695057728489601113838135076933796094607412133081954038748956364838638708851004944879588952203178794044062031671031394362515312638193994617482532537426424241255889142689008333224990264353212545148662879970051378393415843223057417823415521823324596628947766659166301474373776375670366336284651765950237073394323823808768963196016560955461859!
 6111373894612603073419828214480003340143475008954473352220632900968243320925453789505854429493326955175088380111442237102390879504115728221799056071533288984105665941425714612553514272502755512650141416058560943697666670319313228936382853320120256191591491824586312761842726114037227778541756808687477102155519498221697669155929824124213351994863923673226446685221460615086437754511511034748894450311927151692668510895232513294345054651051607145512667707757718699527326979074698341182711593808348901464173075501223111585111443681634911837606326446228488723955112821037773716169351551231906352115976662187119237725716381484897504106582773311512357790946522509292648008151060168886124261991818080149582925871007647681251989002608041816523525775917918013420655893753185491395396658813459400865752335615726954209375834957616637424230861434837016098351787361247630770035425005387825402076643370602806566521587714226866873641871943976964686468906023331216622267042437022320370438506658167921296!
 1533123116111562700758013324633061168746497319126026806588396249059599
546
87336203267412055736941690584068762118309061884714558811418922738107504887888046310964910662963838821683807329739122664046995480800398341791877084242179757436216219205382958417795260241002986970868417144434194717026798828372953713620200732197487697864772350213583399546671836039958902203248547756763150108988099901433878092546596461586204983423867568393160947890964264181156326367635803935002673008739099689844230778267485659013570842855676751107469380014932604657564412378488902680136630948388114231675142508501429276355478094508195485490210966178213346242339147753543661188464663164302499819516291134466217466086518999622088344588995284231163258059441158162133829028732579971732715752246941953221946914125280300346600309024805621486601502198762311463621492502391920592934994603403828137964407029760887015341857659444567858978039576711573137315293795324962228668213472169294616169989716148562642844852351125002080527057104400911151364865923597605751421478048771662467379541100229106379351!
 9779960955771282581403476974412666648212934408375106320955671816410482382229054425607288654474530344704403513674896222624883561078592623653997966316232387099082107568056335065308534536451895836298361056552640167790721508582776395175910027024673272177733285994495694237325748878752966377211239506044635262368998040304115040888856056305354075388579553868674527402781398367045103342911195647589753733681024317977260515521854016375908367668471190593702407202924449686666879874733601588968969373117063894876819065441532937045395010080410138353315731315903047437742026639311747186418479639793983106644743390765708323213114266091192503790855645483362004513366779092311746743633872028871904828116441469614416152595787219762335630202820402056299859195463218377454701794976521550897557391517470443200856761446115472967046056991670843060097748441005337276743017135702895527669883081711204142823568784523591645702013345967283424193639163096239260827780950423546352725931517062688548563447825927433713!
 5534909031795348348803410482345338705571707138900675756554351655229546
87776075831477518421509858430146187923223368414298841133240716673053578928000242662906576071585713624409092359445305766267470043646181272015169412393529934858469143446244861183221185280035434602971612359623737684928122020122424935009951356955142916423272138832628219219574604539674756707303131185837416229121637713765985367985504747708692865586842258622255205624918757510732312107560341305505282024701932517131130267544273234834710655089207377773794704619496102977515093872314472135185715622444832492658535049805687592166837438013303243710588981162483018890433863415811395615562227724350857991333247624394123991573851265431879682937452244056021949044614317753055541881979965844425590813689498767521073319272889207410146119504672444919228130944927605131817017927850307491324655298696416312253996177615128855682301493032213752772249321672343644309308988222609483547073626284597762254318502205490900823121248500809946443426106979205466073063559529638457049979023126997384782538168619765359993!
 0120485523028457574774122696175576840539613150933714324906205730686213078449814151096123220631572860178645003575483332563754583203624868185565446671676592729582661136217197551165525519327103885097154882514603837855385939710048489527497356808457262927863681709814129422453759194427133310930962685048731591189400613705957460096384388249184181563675107962904637008295805563279122648095740832370629196294518224292448610334756168402682754583033262636400175202429561629993385159592667334199166349442883809901456682228892761918531374958591584996549044089069947256662041869086952329363382394090273536984851338081244301880015630101817173257083026174611334443276622171591696881136700705844130275377079689832380425327194853547934898920391506434190289615334917632736947747293734750971827599591700006169745924258765044455448725200955531518988892507705995302708569524610388042275548265887742854974815828622182319986522316207243439845026589986697298672174153908228228700590119226284610159391581612470414!
 6114095887716387413270658703269023535132288954696380012166239641411646
46790095239100224725117079381985674329339904821386734112526256620300253420440608229678583735122036970709571232470971356439981878640743966081422279630860149591793878277742942793645960892404740810703679632382203990162695191916196694772235553000888511044171260564946730023037941599861090242657911834250550843495176933493909624411422822954225303227677143966204447331937820972887242662391672615518552645329477385323227955443748377719063111496401925290033601345180662478719834422317069123557156488030769604171670014428262722581018168420355297005602011516657259402425831730390717134265087777936961226072039025920148383251365553718840694413371553709354692767654329761489509113127199202924098153448148297293260573048089424373297198113727751002180898851253498992892166076392064137088565498368681478439071066389338238133382394610861642692372459003361899824294801232108006183421952258422267595046047604982691290131096173291924872671259747001419542194296012818533943035938166802182445853334540601658956!
 2776062212135211545057219360378925874313800673663831844860113273237476003997074639000101360129717274372993245498525465722350307859968960592700642645545731555400098038485643826692740271208886919372110526125324060810892602880763180618621031667301867756424330424368566874602412319213064985177951314011392614048341812343456496152370536328366848225354025914247249025298214385884672984253152406456179936295136078926703092561098928206730381585744073843288600582718571613884320797608034309771536680927094486796915456571759447467673882564754934996347075767165614776634508276927088700802908881940198764615638582257935505713844720923790208585276305638933273465250885877860577766591071501284002109522395155577406342184753856981135643866903254772157425361589788312660952940266110826779123932428919472493322326407825915019390589643605266332133012337257239307218467014463966613165058805855755014141827060438352732132198605017790551791684809602220554256435264488899890886429586800637770231718208452041813!
 0122888554158259746925894435780352817033656157327641753268807940774389
36367959322408383798415598222145713088663182663737498032293516399570364645807367533774346858582968937625507878991724165208002295505138066133017191372450068411788421503729280960694262165804484329460761353254073472035855580169728301643829212306530441531143407388171785515229026003503344295850364561418830609233073968396988711170633824866420858622571936382327352412722128652415106063208094783227266753005004563077061571664892194876015135849112778261873930176189556867485809379921600664952117418606139299193587150750714375535620766316599911215830688321476748614818388320383354625129997531201341429792625599250986478234545569647017483510437785086067077805796299357828267660031101229245022957331311369167561174329621607986087178580125077254757047063225113509632242606558747011334430777831320691140413895942915154965139556360568438040348819343686180485413107953155688357348521664677249542983655588768514632970526954140071055545062139559848295600853216572358647866605462849320957465974255704205447!
 8721605686286371698352886262355685285642723572488348049476010991626854007398421962363613084263372882406526314367058378698433582686663726805007064437223930625513136084134247041641825810847599381447158795383729229719064910465095550094825990618579224982269118039899734336526138958516592226768354649531875647833727374238233500838885576656228957732353183664964426940354721588217188788300541803271838179414407323210399526399666285608112912939000862591100635475373669174842667734589577243344020642600918142469926625791475522390365467309969199923669660662150688696163458635762424437001846354601795900770950258405369682594751114246644654346416255831111112150939385366638745863252116292858812976327993649728835310080540185516018097802925238451183698851660134271094141418447173170825733030593606574993023146740694831309246780573954814583123581107996537807670885238139372694146989509633401433228450045474949273136943599947886414001544457516775969433917978116472796805970264101892471387713026564860621!
 1787302749101355820138594880181729218056931545629667521264678298284439
909
03995307493621734759899514322123062148358570220044336189831778289618625252323188423240137445907712632121107895447706651138274857956039072450986624532995735006676010675840414807313846765246347910706325002809331477351344401574510691285220122591976711293455604413822004704750989895034327855565492587570260054046239403882222003729355727267459380127172453084330254392570766062641701664732426589981286600766703595351475103507774610109125189470139302752466855778577095720139942643969171351824614018208949077085200018328804554594396631592401351006739486741509174518135805181602382662720641184618227771691009554171283310307573679163249150885255397666403073097630827429257003117127508930728589316127615126850791841323964967022287764266481454126069776474528379913209964154878535256934617997200810623105288600570828882497918687569745236103565189551069292855840795839026247277780856560575794110960327324246615980471575081168634004949498664572152352100456373844498524490562469870537827067185426345556280!
 8953729533408211565702316834708247693072091409148288732050916877848913570275310245345278693923202314848344398879850772947113089475462865565751433520502753029020006287830572103977409844845335117109282531867869562267036576564906045836802218946717098400995765544649631513256721698103465070822577939616747713593287397018052598512521649763531541111558476392813674915375604360093283099843773919621927999290508269574904003102881555679556410608981350182904553085341502043180584217512141794520298270623678487168910977360970847682376700157246362559786566118556052966806443478743686259414878240217174151069386728699317754875292445112239101922099866291428319368616581746924186023942563192962554818704583800506917227852505354822314388141956526252813927741383183986158298643752588855765964065538693266286160553150276831814489406381183002320155641296441267228691059793667720398623707376399877051491607412087299013995400079654429234331079977825417381680074355448350787035848596497380241570938838191714395!
 4595107228115762034426232568929855431137898122499569681897191905426293
59578976402168410781905812891493033775005548767548407222173593596524526425889135366206584700058000902691773726923276051578485407397243978194639194235921597746043815828171351951480653048494403463765772396960419402502956033652579096946171943930216038798937018304294828287871150977699138760095234367504763919666348044223447326618640986681154627369127378669290101459020086427437090831377881756413368921683826542530551814196676738790946490293942269209125320478575521282755101703488671801781680968514264424648459286954225367910466238427017390699430717525447089182872305221281097620846901963710576071051202403272548728954024315158760585763988628514362441141418185371776036740075171167043341516089414741030956949966171632055512905707381654389032842213843357414365102000706344836384287382797185301401606727601583220718216961658117256107373249910921804289917123460358380018527306818359780579261971303697004626394081784495178325004736113696081793679996585988606085045581541941795030096230118481111676!
 4077751869719031350011435971802685965826391744944682484579925216997536435799489289267124523972348026832615618107174801283151575404544016635063320998871022810837752748944762983608546703808490278839295549382473356042715170411051734740682623062352623978878454491032073034613646354161249543480081516312377934079875245156856149771239375958529914742357206974739927570206945185971414580693658007112182870938505401186921421551430079929383182033060659478796004383406183877425908913673531781455077468284483086196691383284343309412627184121714501147352021688364745482210067356161400150133143984901354997913308301412943457679168818624048263055260852050851802382547448991189097688401822980120577665520817267261130529951126932075738181769288004402807216316413526012402988118467470485032922954201637721448117678692314604751183884518443100361496948616811987887801977150203359261356411099777895401866952994983812600707438802883517739551640328532105303257155967129650515997581894936454106005898105550015580!
 6814860254829794383690289599389057894329300840515190449297062450407624
40753074905712616516529220516917571447841877492353558021587131730155572691574503704549278834731366007687132302202585322745046140596448128472373531442510464350151310376603968416129911198452264791261261667931143282979636711164616059058050400328260003097570129802057152820164933370578053001777319344613858903138548474018594586137369781424850171018089046715073614966727885829283557346368015181455892473366415354834654736348701353890502022514970969763310147735261288861687337358141900667351269380327189289966061915841463865156897048893817587140446937434264461558301370985672994195710990261728223025920604586795510410245080974149479859396923569817448841787464486370833210014672072930424176124269396584856795191555124256401996775277399036035533278789706908326039976075962055835836254036348657875028022915762835414196148716296637917982557714116992823466734190180213907911956786316964317045321563537183218179872079120362748869424785512796035210342814749105264089965216382928417267886009309599747998!
 1087308217524745539097523778819196603616650753980038305659691069491187088561496492788940031253368968616568278090836572406237552931496608157746197214828331648272586013274705185830221413342284262051976334737569134792387790607143061339836075898447257343350256530277797824006267376022851076114720233109910568586048546209727497213783235770150089512501995389168023074203167054371292852440646888718087357878463530253529444385015769110929420434823720252817443737857088990875541064043590644122110695332839308297961565707672401631556159121342150241042419718863435045059765197384799226272746918419547785695812082118788940264287564447761171590348804902855296953798948755352526882541341289410491326620628528375991381794057066940842870072417822173373825330771129619847477017708042864802309678691691983300503900995713989939602461589308585502452861348490848278199471427515482711082172242008927465209125504557277785659866841869599404783985773742524850486266694074510446625930594310564535209337727490622047!
 0429385282207807431343723298375209132061764042226093020028854795018824
67702429238464454575616422743979037829402181806016232534877249713915316197690449999117046776621543468688185009216188877269688528367263309597075737809111691238361957824186397673332105608854515337171316135353849670426456615377356167664990770176691727377207353295754992512202738012471384253870044804636052219723643182923808700835362561266009897373311282883434209345749490513430041005363208978727507304919692918462132594567549232282191551090266023136020479676065918184504411821469225709632417418242048183953256778656015199678313105230268452232861721191212150789197556887603542078075021165357923470423693856243338496696000256357791966298532201264558250782199368184304339151370458612297791936614187911862601766018557922009914173235230278546289442195841185486653802457372614893477735293057350758865466511771045612033016028050901602389228417387984865332610666883095553253848330997986181068681394260619612652675724901275708201408827431304343907044243008145161626542014264341916299572215694768828487!
 5086974187001221710665574812640276162135137589644233542512346473673985625878748469394351053949757390840459309489854072808537414768836648349016865657073438021685494538654828249738512407217983882289667609287557770732026992672001132559439278092778930193300726539724832934841579213642832620404718080690378018232600721828893860679704573228245245095900967655585429118645625379148198709468233225450569678353738634296846905353594123142303204375068403381467949521634389045094563449611934297757031017277967945807037848924157847193788237449111508898861717139379657137541861726579910216441023652098551335542897956644481610013579579275405469538538245232415398451676585885912658122792897079995598119131159134914512362868619647687578285831005370921762572108022561899571511425176704918627721327264483883172830078284858676545232574515833980455098576925227678263473986719080970510987171860605548379071106234426252022202074752325340472587742357787229126342635463175254082775205227995945438076944511645711695!
 7361996321330245442772631546269910860811257279610837964049127406195266
239
82404390345844922234361507046439390181194299209145037074045332232074871791876115347522849117030091174251395151720173846420923549775111288476273222526367403811677458531121008219513795389292413863002142855114860292929119946052214354659843489627810617440825220056305571152907676431370903838144494682110343738312798139742904337657344895851662175569948833139033952639389674441987680975327971937631198165491499660513330325990540033640736995206412189034017429654802124026372798870994330252151884487031257467686473034686940318147865692957569970303064989336935614115776150848119862419932461595201612673143939372193268513088010354042022003324640510627763044164677912018157267460928625800829148647357967044541094448592940419717353632206048368773456346174568163249912565131809275836161849605252495729674026286758615268699165444033468448705096642676914805059267975707855201993440794347800016771335792238672185090679182175271267267156777387718946077581179936141879574876702793343793784901755589350301441!
 0299129052027235214699094126120233433463619454365680012135630135701977652952762198787472836820815112281277249292318928707114789589813883928771812629501624287978146259593393569136928879736585131509364409657657862974102420728300415156652207832974459901642357373609738061905033324071149723526565113565809745803003466702127889349233138367911357251692975811823872168475535048681571357768348137070678027815481330480818546089735961212658985287082366197572640279573834397657866320004374817873621728446537186750139514373262971187504943438237933898993708491352047229011179752968838504064275048213037153597504984633603398372258985898689347921758479028197350149964410635025553803888864102522197617832609032773701880038238724916389463953994524676449966621537437765374345707773158071769490324413244414679950686667748579543208556215232559180966553843645947740378033742592399681710311265368383624128584354438051315644934069799054522489877832557113315596102463504994713890337468299110682039666862119807715!
 2338232525732790257165912088958758292063826167454036778487995285142325
76708631883954037157255922296097752382817077340209005718614230049787749596567446233119899887540771165105920212502388506483520295168245859959488410030095137308183808968027582235298029692013951473899089051024246584135974158904150985905131976247825607565223365241517418264093534610212176146528931089831384746578990598983008737044477519321658624068690755339023343288834541602556376209322832221907557814077650318327645739197787598498022471078379000591860863969781297494723441832186471694692215047492578567278674975772253984287838840338774849974860703136692278239778236118883761093482458113235631825286474363561063863869688754131797019034067497240649730460177245438679790434082904298140871807289537978091010135311468597680049246760404245714021990021803635546224648344063532797769567923075292074691093022195037218150838742058299212983394042578211552581132695199822402859820163663700996858188340087894326445886849936000316621021817679698242359416303530156101941824722526010506173315758574952300654!
 9485460751259500299579725451594806848919937850380129751178375564915801674996874171763653259605846591207302101708769272947383057727449599167227062735076203848579923218689420289458366328791483020794049827698320999152558823204197607383213761193465569316976575538893117970537806435246756121294003243980563253137451667394859717287631035543564294508103570533628045105149077143059372224467368460360882716565354363750756734343146960438368229517142284091201197988682231052966374315235482299115114842156930374998619504364680134525870352114191461931806895911139188384026699898491887879235343874847784365333331009473299295660186374463295472808914454100982946892428292920962082937880956712506934456490344683132258006870542385110116024892087494461283667125816717928995683939956379040836353477954561106073470249403793525202553997223266862998162428385272198025231820951925732335163116701495843751673465631904127621504653099092434116722506948329817143916748093286786500062352589654935795194332001406365368!
 9708333055148621972243444591552458814667437037031910302028617452565441
08587658036961442079182655904572770516094872742060718234987507162573689229117581273174364331113268092692210300428270972465912536990421821004014759198026960926657972625307988338587509939962493132693119402064733928297621296829326122733532450777643489678435091884672529101489702839995897903863493446243546147479329012892943668474767817128415592034055324101109033214388323192800508074978651833982118711284824544689469486500454830067192597277791488400930686027911857198709141276907355674346782285206869608201042547538802807819789030682666346508265572013975074512784297781143764145229979616322417856513554086288115790674619055177866769187649408425911831858223919015545359371189499439438559167481354608779898339322998484637680049954920729410242608373289221001803765051021049433489180932021163509078597854895137799891971696028846906092643339558715444565032540176537993611247372979902781655982959477338690732346414998440014660312006075209919494828048459562784323986745727996984087137769044911645334!
 6149096048634878796717502855372886238591239342137504948277002911853162403763534255575629502214031297527069394986354727955631342998114659299443107546549208496122564658132673075847975831723393520426020208057398532847918598265859996500209060646190331789735271062281706059539377879228796300278488068484849043899142577578768703116907940499305139541513080145220266800053477855679684570798026221869493676128871836789051180261738598901083570788648090091791862589247795294088213403675424737697514923059080008051653241126747595019763171269184251721028547631703755987681121524906216329407981038686016355091181341946516021658643469169240990450948056589662549329281162960389847572823021186002015776867918924605252091931348722308447517071198737813455321719721751237483008227778318479705121360216905735014874977395555999212949741088313437322301333385286357777509364249766118961571585396869410151925223081786044324893190791990400073131488856649920271319534730276389147336850092808465756869958104238496608!
 0224606337329147151770259212056785708410604598428095967826212336213849
15312008402994636358485364093249834087159881489229553618904749939600134692210102653545353764303656442894182830754339536631801718738218262446388760124762598005235350369665398062567606698710014007718927809898312094534061219515392440289907145518452782162590863906868893159150291305478509549160687936486816648127646762043013845710454666914183278031613244682316710952273101765289977436674782127921147979118911197813824868774860083524996009160436770008314811797230139003305369246229165375837347915350707275528934675827808223449985611284197309369605048953868597905811045666544499199830893077987798173744065376442989174253624393067520939331657374520173453921792727866836308028788918105901107517119814619745205270640261907635789599178924184204435810516258891295539053473051277571038882577006647139177218323195219655399243576464239342193674000113429237564721315703577504748820998678664751588605341421366974460127915307811459717632020248368913799417688184628898512839034223217757123138045310943840240!
 2501533353327395736456611437636748404950168976127624005813943515598355541521654696171489860174067649367553671534854336719265102687791604238907101885243191715953203988263244689618198606006998822707179379413414437020716714373080182368827982866442780516956148771168152997846868317015441364647516139417804611886624467876355886511863093220316588848183988572194093827814685982996586974272605677850698756631130646711635594654239400354204832115536672076868360295610567326709952175434999023297816937900721397067052797971976037559914396291542917430793909909791764631260672040624540168529271585948389259201749793644604174699413091094333684843887187535865729619367127928079047495441504467154366865767244464617172211907135723228162310900239319311235971830491018919563509634533626324855287535795053242022661945007226578488105386675418419227425756550313704913483813584855882858965741157640939677482391003623579736894388067759349448877939057482737379997837358401012334827829502710233926135475753748033619!
 3705296633560222441723409335583348369696013544698370093897418940916347
456
07012864760613155305821657632889612683783840818525681536820343002479572027822313758485064454028482497775540929556453323171687697586142786545979137316541531008858148726525357229769955239792572800941459830681846267811833205258786195617365823087207747954097504915822699177230879923985050546888685026378126564910855244795010016381266966087489546908117485625579366263788964677421424666320599372939015595559810509559047774827220796105253589548672668036419900009922913394609890728216697483874910359555635769593369642816269114749883363158809671462818862306390004257768788887394117880834621387881091968211229937609686889696515074133124507553230982812976796122759299999418400890616536429373511913245445136378770638158281230583314006079123681477377778030178534048215300770729782355170866456868909986460071101730792239182853644566686278828096692785361460701447406678732527507015767868489087307629422141830745807125643271795141978415026560713554248807012108526226742340656609438575318820423402656020888!
 3675840923449040269253923634400358781184728819056241001955539634354669936790400683760112123342027159473070522280947355185331133698352968737373743169817719951645735297117570998118481269480182373588610866453408829738146812788973643645483942119871811559426507503436951299888839841256587091889575497060646686543168442005786497682449571645016099323856919731864292331738791808705304537551688870392703345620306471955486637063783196245657244496835126565062029229742537227665335387556626260774159972423089807541974864204600851207198918234889424115877162433022190323872746399581456501495029171760535125446184791421143021228338725248255862184746420843680593546274904742536042638781752344824784196552533033336846986301749849521608469878478477293984491290510041776190755658878751758649735410513960185361668454560021340666461884343338691589612918011806996162355863408544154895556919775469459795401946501981553997981618187601002338875640494767704280814397101659348245780874847036820343235250510889324346!
 0402393613253978977736072539334860698549259251154235446569957821526510
90201656369625965253394204135017924955174383655760299097449913416636464693446723120333984441279119924979157810537428420569620751583499479423164683910954997557635598316238558941340509329573074773185458684711010841002261846559608347315252136753053173335427398203737427981696244466867407223917524915099233771838960493600167294227428742859619716256877338754614436643545168544842524381052551526910661368924893106238560778842210875185393526903913485242109503580459917121259262424509005763321074748774949855787948578991992708506687583308569391769190968762783787500713672561011259980416886068767386247402842102581432960411937218267379005670584044148137746562732596078910694005902617361573731171675266260385553513257291784529376456151246016180247650137227582073647972431627148977415064224282415653939956870191288304977672143809810453818797434734883733255053142617049609509542644184491551194561084176457117275893269470406821659246981541105894120062359516737746876772095577453941864982850246623523074!
 2606991426676103153445016431949377054059919968249063501199319970650934355092495213699246540673295478545401824753927887770504471135924131992588128534099963017872813050708335378660095349935578350079819130527966938288543764624264869519677355094622463120019448003327968736032870974830707196778385987338074313675511099364765760762932867967581692085296904628457282480067340501327040028246946630265684385186699862569284346294463958051690053751664295631927613025125909900398678670778563128734472661051505934989297804490346035757496628959213067404300802206335201887509014967127857106484365299079924894207718170582952431857987024811674902389729780765996795324059868542452203043310634824713596909412482696185411703261353778037168040105229429337893801602899929589916897786723590984787530468798765612385075080139684831069461524574631855851473548774526313710458737936670071638249092766831756240363340140230671810094746727532582426932699066352006193087242053013176404746922367713554904798257755831467844!
 1964550194262733128877341131023983026341556797236602498783669341665273
28465100195448325906572663649083958175713577446371290492230279210652963186005847830477852917633498495255269219548794759130286061395296355859328835674224872293842792138733879973244121069081751364899172461324227349069574301225426629171490685868548982948419018504598499423901571976234329722466695661982195656004735276074023311563036751101226372737547710600589328126725868978472276378155726066240275638908465523523759495024259568880385430397912963256425568955610040391335214057535955468488034444279776109329253069905697311108503370858530348611886740038719453068549642684932818471452208919225204992009849278686535264928420947844818847881202445791876284575576282051245502105251677027339791991621035056918354320180376881159033327128226108782131929776613193989249793043003430960362097459950251609112673792517204219411470130034059266074726208580317126616536814990868431626580494194491702817519596782948500259677827143479550978861890300785510545754811029590498058802627761894421750233096558440162567!
 9270256372600982102215596351414180129477076252483888325690631504039441640136985613378541108053626066808863549361050273974812743433577991334271873031707846570391864051175830078991196819192158174749654753929683887039426919228811313969825221765797762215640727014642262147783995542692038353651878725287422899471783116349020240288410748660461789934603565568436900991753008125159208575952613355098334080723969641663273734956046472694982808727935135106338098821988488966782773322583722077407928290129858902510282132615579754588723578349843845079196056436372165303483459469041329567850367411395674588965982509181070442891375204770700057114568289852886892488372202581281436397198027054514785413749000838566959455536334746814714233824887618844708233346456932346124325790583534977302886180210536841628066274812788373177875339948995733001071407962152232411464569767302277759944716246832628110728873483099190345965179382136251303904716603068780931427660166653536630465422578689013116246810061452663195!
 6469809269863713739706531404704198078356898093870648648064248124397606
92804540228290965482143750444352211386128309450541239392295565687035510086686371221145379913113913042647575213475038962461723779010743628173720813241470665440261627145235285494667824804153419539544077750450083572123079617461927067214938411811211970399152625770355242279994327174537216763575287311945572546241965025777292295291926610124748877087416916096255582693670668627735491906765248012653682421122050913564837531870910049273517571990662445075043743935845775644260367285585117301308200084816453902893046963832295598095521429479929011795193948605825032298657983188525905535832064426512405742867851015097238162100306191911973568225893667785209009720781699264985902580456145648215066737600025202517526646247848198995150988723631676625938952418101676354328426826826139892762304466940504195839454745718023075294361699137511487069212149440311407048691874059014546251645273523336162662705332954817842523926262380380605036301802913391065234418351489776843814073674901564199589956027150071289852!
 5913001886462142176303863626082966102280881385503912338007994860049120221076827018256707965805991591075956377858090190266588706026980210692497978899428816365377028839290854349951143066069917652571835402929484179975851165401217121472943636923830687810977859290508525570832990896017297391114489899407376357745384495987202956166538416918680285968124820079574129077259449545220192722139436567264742117842447959720613325525721781720014577307209612426215965354210865987627250579085645516959836111864477028579492181396761205308440660596994141356124577916935503061667050391312159631943508344045006039484840480276633843567488196654373065804118949636570931308966166135991025575049023167360931139885148212927043694386251071878038724935645754016385264965279499892959948671847459235473283472269057063486437096476854046836972740483843742731287192282842531031132774991518752101102674999058766081921701092535248601674923223232089679177260632491726033954249314818169782816499920768817501169045200797182252!
 8295814691343614344926768365881211165923266759575601702125615744923561
955
00865268728666029510195329058513813131468133626358706195142657515503113760548154926860570921227791918354318340762391163761553057128259828709390176725203656418244171821205934075970551545697357163035912524476830134795343745745063302225132892035806399901811306786245767042600232449685222306957993293024156431351464787816453223059259192543552856906854503833736090929478332187430625527431974671394052168581083094746851621017299604679186232698688067420209435897158058460443114350513617272235988462003371140965569181493167679306195886082581871992263416312624176924691092321806288889931076468193764727259441830342636965943787137074200117717819406542446017300382588852530447339858693161427519272324913368522341395735444866080487510560958054717980051275714339721147442020821804827154061324972572202086657257638540065559351747348837928744795862221599687801773261569275614977298564736729200828989745639778673003449884524045168872780252317609805280360103868202713755507212089617097903555313280256241351!
 3152373153426379476063643330638003240540567069643476347806425671018040991315023059008336153350685169176439830612102689107208687124710572502532652453776749671540958504717672406864180678869076010650631021353272141756859278591337242749148061605489775392231002894662262961858584488325685712740598080967041928523495008128012539180396095387351937146063015123931010474615145755395126143104520384143337049367907806684140857099258464847754908171742329838373326391459008170116889215238688810733434037724851198987452139331623358319499748496495873675359214879814971378619596455562340642064525513897255976450583921126039743793620384743927774191202270531445372418441480969040846536254267677230585310109468154173986645048108241999171179568853516503936827607999623459510461519494944415682260970686970714232862461675074368454584934041357887077100142663175822868847851414221319194894248833589381357280411915542053812026120683284496256033616052100059348964984883394357825116317494962198705585442714807370012!
 1121220732247768770821157374225391227916335227742099770224255776378031
52107212511005468209089680037233703958683643186069209163658382945334620073472152528249966723935350496332042389198866702713589053464607688316277909890378140792589360678627316193196292208619776887886657859401187652002110776155795298268837884776356780518716932603246337916615276299689717588968311236563330913047025374355003420110030903255010990741102200096673626431838968474428453215364285495200805241990766076369513996844106240960316716844146446199291311683927476536977151366665305210239543027576957297667402617464140432817594085405307952517365171166248312530768321906434089616385909165077968172316057568532617750435496759219802064798046759265510132525717691046542012608260995013181603975609776637184960161896312232702953438316881333922959505265518024096980741823084209747368817985772481577814617705022548095801585798498107404865900970268081395658053724801808990480165874503003957805972545794178185928140938920939080819108757067072130833679016975019269868315114001819986364717983255539342886!
 5458424669585779703736544416774410241129136042618110590487339753456859435656708332226511038140942746679348876747776387884668459675251443215584161200311528635036856589663761612351752435216901274467260550443901910338475321082844953444469681589985183414297195953072464454944104625410400305128768362651271528352227742921733970626775151348997386194291077256336128005042089407509251686931342708042643046750989953971283211719747238958661967040389979064402259920748458190582389517245165148829358792323589323156026072213062750080679748820951668563340712201414066776172107940327279271631450423046231033495417799635484328244949116598699813529926403861466373313425935399293485355247332725337185242357073018381499944896405690638994671058194301831449520099344371977282998708358550575345076989034014779651775952028737555482885769868478254659982844981418043754716840780304010319382596434977243313918424461475167870148120401131786592425616442093882901239529817637983885876484037177158449366427754847827363!
 8057579500587355074945553354302331661196349013322877365396184487275333
56231822185272400662804845274633219138829777039828736969955761277633471162517328170541533500298576431910405044985610868069232406585760596198288540227541650417077342572132590503839762038844812866187746781035853511222788203839597336206985569250928270060261397674482054056488178298035058621055207470421884776906434222941609544381510970026668233899795086091588987518502343312121379993416095302283632595422668764671085832819267747882501515549091272476822400934732432479354966508233404017813409547975237471508656888979180691732262623502891433885652851048629649692586622360218091648502392986433848627553588569989982321670030406507729895492659100768025620779200702737022204737321735368930636548979398008536253234617126391675360136087848945757359669547426383556784069659020220697894781613535280310050550301828073337256865073298323702683799264725305523548110516386700226196144711604777314099680323966477694759652649606916187189582900483656850469429775896294129039158633282995827816774200267535065076!
 7672811376670243824270529127557202617194256889641356131322044248703507048890118763715453937688292556148405056944706312715325439112266637300916285019974493236673089361233769177438696847665284400238372787581354472523818783865072591337488930217092564930510651709834635086971148136575552154735312796214138622740176469888732343292108226855950711153182735983276394198152006163734255613776506402446623846102396500425421729588088975356819898394917964922545304462148503505869177240647824133882872235973723054328089431426396031204110635859749942694810708230381517023964432379629639996771099733625145579715012023655373343075460708452161800559056745509364463892573252114146757564813202184382942338517561373310915855932126498831414091437471545912263073639146783290093003244505855731324869844261563783617689003311980016659729460371382067275532098379507037657247458808048459578281411671724801870919680786699994375164717491230425633988144176766826935588094564263085148994172940085032438810557073527360818!
 3742176037815314372375980728061555089215752059158412704210370224254806
45970993511618362151815900746894540639746180338686522399688805660521468773410714471583532657691462578526117663042623954579010176003211487673999728767543249197445109554135901959380928262104922728945132791298574314950151687766311893468595260031108787483662416418805623013314458138976595671197632665864815528913247453578762433842528708866693493519335168225692876220350035691855533378507401037456977137947560271082884462633866882458281131876366030825578461048346007112608582842829276771109788616103978777287792044120143468659250787200471484969539108529739988287257978007462838040611873892234567239210809559363826196145870804362860128704529456674691974154094040451296386398715623139505696458449450344156223360351073307370440104007244916655812639368955366952630134409344232516056573334955616651862340344487724588503797260380552657571250424200115954964548670255701415170529455772936624513733211953676444218606015467112527682396458883767969305476808094990159755265171434700695638955091365902665131!
 5448801959093201629561492693220221814089566297670059323176111431840540622309439159922766243626011526224869599998723403309649238736330303279133816400149034038853069138483470458687837521881637009329321962573080940514445454633521432717460344094814953225058515372819676070053451176990182830568370925767326248291224712993782099546894589691552970620679176557892346330129924385438161477198601926525820591124209852546837247049139415051053178765499066524357690854884123482942579830888251449525953999681392190643262981153550464669672019377583943691903396145237730119256436917335734382346471458101846715718897336863059008322312942144411574616526029890729270954492055165943675796908439677974156173115113283852767923824738782656402991510729230155681661200027567840759611513265347345932318081432678787489618074726543206956317718181582015473748437897406446642286046951176221044696634496332875003597547110676696782154596477048946535754806772568770347717205908655026842927268938156089036881766860406351615!
 1577372004811384164345327328466587565428515235852400905066607759910918
216
64548925529724876130093252320601858285830743889412464561136478347137757793365282259881205664842784007338923602799985805196473065936047535989749539155194480806929303551602849208166478550764797403324518197278168120806033449722513806988417491745057815263540582973396663044176537282136024978180934780429190834518634256205658671043607466464339065869597440563196841357057827068474632801760426587023052161199571231604034348845427399036266995495739387084086714863926460395437001895633218119871241724430185527726463083008925226754029395945251788137334039222243176142168202343228790006360561608987954594143939503590864446623104322947524684787672893466813033576462619500564421258265531947089150033875148607042569657153062428491842511607403353548312301027293042305304371749876791173213440345986052498638412232004631342747047405907351474060985430455954092510446163379589569128093095823662337871380629324822179152106099926841310243326105279120656379558790382044201101791157802007793465099208678213758156!
 2315927562972716413578451359431879044856634482901668810339193101626925471461050261426268877908500854639108233875344298600305204174208049341507326162013460558525289282916728043044197831768805041166324696741114097462497460995293133278010139503020610696154595658663876940923679319443952996145223223841265544350892259528484473494723982134598120418428717870507241431506756276975377611500775385553796376101477194174326722504515601760868326511537128282496261458179627618187199065162923826612452480283505287246023493648748719142147528689296468403345472833830694983428519641822988348467939831817284488792894746083805154852047857393283050761661888169283274361352187553850574475493123282774471366149282884818773029700077529322397680269688114425401486649328534647097690132789486709692339595580448419667879215941117841597169804354924912737743413172489540601549842500383294094291030277355858664435726709455301582119599293360024354991754814458924654642470515779369463041544380068645184666948435617139335!
 2204384693398644439645219015914992323762412499761884578172065148867661
02777735283713938063369867933816518221546244479371616995284537056613545587554570660376397058020351011017795119373949234415085834980573445622309191752780391355372121008613485381579880681542681923119687123079188837988856232940367875815022411066758478760717182278092503039066080866327310936891142351544329132484302914001085627053420238687075965821919851052475948419627730322182213311046882051658248304215687111742492745704785601160866051798194915716960809130767717891913341595286100569559251372248246340844173199745148325141946337938065402396285083585917079039227552486815523875616820916672789232802551859326804295449683416099691901991641077451494581072449077830832151471141910505971052344879514219550210546634752426532550168182257620740499882990304257046236727617014921744995794386640844269884587651538111997660674652187951611302251499003665166626563391814068734209931138622478308291088063474776809001405051810168478703291755708033218040095607589423218191117093626023314223645629296204191459!
 1067437474829752938827972579061414518445270826312832323718006483478759652407282152833752669178883712504761381575906226122563467487151924681803027974168926208095857853236871828441489330869080862609808602797025597988408376641642102281177711282576976818095329120087823529786451698570245835359034934756185224884371029523368533192001433295819096708263274549763274410215616645267371111067564776247903494683978937099371587406295849557126818899028924911047864608495047757391160798909346839132115067246592429937630918107466757036222516227198348566234931722031027939527732373674537406208200319279266322463570320473960872313489129657574650772361775117601476857065406638339071689396052571208092449633782906360078330311095329778027101886203748232574558785414521013031071875174956343269482328883732111885646865994494163869991397965880473233365700964386434575961673531018850239816715468655430436009250567973052241897224325018390443763716932624691938238596923538012938907275814191307987755916245667492121!
 9375176505181543783434320713025819224907206566631790332058819264013607
55801011716089800003973776448229851181703477907647753053219155511316253659404167933312632071250994419561958470380793947300459690865556320283847938732238763807748668717565570063907798821392156091837079198164144078619016330997798989184934847727093538685211785098297649488665810065960857543668716299950352609556800242963580923144199770677395218470262763589894040189752272022315101312359117029009257567891284215158801560116391430089940960991427813888110585398536901784421406262251058042345778484293851585267306047470097136864272176576047507177210291287940733542244698868118760526185909241673972570891350052840545601468366023979260875479831051847807070251801922526956393472230296827761365130066146187507976532246255195708914094031531166803474421272494947206416578954802590007472835458216536160360786660417043844915065133889573127114208541260448755224084657064090170644326002593844501437726642156655254790411055274734703474376136034802010453599298283923075355836390710398659464531012408913163678!
 5601501121304558062957124007645876391199221546822454229905061545084406778171784338726207316876790605186356990583161028424450372543497173913158584188876582901792634360643232644254675748932756114780381051641973844065579505990207118668725621088128011750756706704647089331312507571078135783584877469485096966805881783122185757129884695073967581729862485787012744911630037636929815264393230909206886766512027900647877344270817023525707543342487699219244505320715293339579628606823298684932077706728313819938576905441430064141673350283451676930254650765531400786686424413632736626296141235747677518390407162172909622687470053695772077332684241808874476081791828038439999733836166278567702813029928291301261798901698893192273283789368823485588036386044672089025774870902288403870539109607981711344481415099515677273022496799167509321346206509963143831964180988062107501512586982114742239822439662940417898476568552465853087612470515754849531540200805422694246037652715000242009607451442805932186!
 1317517851474183637681738560106672398655431271286234536612969531960678
23978857352473568730138138582841771912479017270197513010130714762713021462140949367665401946386304738878246380912347309594285012454634900201477546077164612432193404276847561787789976100001381035691521999836574974013173735640994632702981774716410396568287431970081720370164972922077297905736344782117212710640494473572457021505308730853371845091193518915994260551895651194189188591603708355945258750434017674459086226865351449240973820236275709587413648405915211553600658328314759687261493521857806262655622115643569159849247634236436712873217144875364727211962457699621843324154788528735649432848563104358392110394427731375571825584201816823071625198817110447097381592627231979416996491797535280690602751031132240057702883362272304848917082498221515291011438205097085606154144677564809102557146125923468263774607124098352286051233991663357995952950943685226052657839467072901041466308568575350934939588867558415996248902545538695587645134799058881586575749992498212181486837353958982815642!
 3480760856156939778201217272698037468838988856369661336289762437660009687049276567538127541365303596807313405398241745585789181562991157790801809431175693319909818859971614059722317847743010042860436432355819552555903541986300970679077861572694014160914888307983506295651390357099910767711058314609013926794235845744734413975226462571067840910117343147101905265978772367965570301400539353739103582523119704732222925215567564995406207160515653420154531268199391721974223751772624567316576472543299084277682126061159115624744237290364812765228101848689481632430303180563489519504028234771657129689372028252753394427586393477561184568072514965243220891644471782548189269221847823009558890930290141029555811220213049841912029412740919670845174122790753547902218585715994998376771867200252242663887345977026417642448218674783275520699765903525507452275752319427699798178024525605107149226368517682352305921919786167885459539726674191470803928843069881779349337872577921257267170494550965757605!
 1272033696098261699118592917101143688893793609738937623413104712861358
507
54736995931212645238825662778476331842898048528500580332713105309080481949356256538563418808809416005794102080336456789660849075594241525177418233091376367256817276995758078169198566022773982570881281338044895767497158964116518297729496065384117215316818442967702355454117818681782214219589795714230955263394934196822772497001523941234332115669185914650406014522381255790014530488335742583728245340626452969729544579409686388775603746421953657596410048007097168201077716695316780235138048102624724700628217594043425046353142561313942167631497918460064676939682726857606193296003778896558592565005183066082923215557336786929903413577167455964015930362803540127635785159266184300366063636752773760433125455231285295358677518771396316423189101426646731829285453039832419145126520771428225103455728006545344235928756929387171638932630564416359758445130334059120872763393423189442994447384938420350688278986915810478803803454035284598595866327684653738170746636508399646065499501243730125925165!
 2899575541549777296847941439792497342480727214477565740998852803115798621492355096878044858409490254321255519163778839508922896620137119628004263424649798180862384938967518755232183899403435633633989031783878424046555976802181585891005854910192489009021742889327304831747555702013970337169923829661123162423448423757620651949318889290513295867005987219509867182623314500949156975929782985324912873646200446216342369445992811740897889212060738196511722958125881148317347112567723990082618680102841773642401209961992363364635704881771669237625579181675134981913875703932297584636442516175219811132150112551481408682136954943457316256067480532885022255819575017700002726719607918794345606372064173058564031063647312826488806385123454840197168193835165066109665724510988107092892275951744682998562579398712297670936664873831561425526228355344890053995582131403851884681063069716539160297758023117329086913848330262025014049992521846211524346061479039366547013202712339938482139714537535610830!
 7229734615392119183157864967353020268960043157797385339781062963099920
70714671387322491220556713024686471957185336002507535075900756207693476806281823044585686557698491864347384179634276157179515532947915361195141314388330724471112685215093341999488123983759325824410552523210231561089951355718155389791044029801347625885453598592058309525973602260447444383664567069347790452116970956820145244989724378952202943963420622389447524721454641445883399944722012132131408086572097316915110704052000596127953834610287886679590066453453218933771354151642103353842062651904435383119399508628735381731570456058042704187243402545118599976456397109169114972860564993322444647219867145295981600338561460964956520724961216440420007452930852392222872306980040055856263705796664416366765943664321996705416347872839221110016260884688093029377682834761820511836386659946496122315642575396014072669703036359545299990948531637070621242365287941877654278643645853417861879460957518650586232209006483093103047910190245691770576876664679821480540402879466712310998141773337096085707!
 9323470378851598789609667938573513751995162996078606542444299306649610957518409654512896049013335721963712136676318872382774294881151096965691697779675423730571447958617039099749489137352004981169408703143541791313366483373696430740511984527288181161836488778301307643820407863816216733211520764666187302921161664977527710432579433502852191892286626171272246763099682278434186402804357549464818386595889209599845399389896309007394226726655001840657895838271291049190350458111246791919659168568714452705020400199166107424072717063194049776895992226853016907606739305392977737529342690812681010630481156729898188548964202498298568494463417575157042620582444003708936319336571595621367452061369072564604580461718986594048844547261538687307006073824220712271375320225016591669382006067373420744763246260353684676851792308316043829647633970519344833848774410307757240070879192587704285788442835329334292764175913264423493596063333653290410540421922237067999434771620799622342806966187070396280!
 3221856013334413179542200373684841516655268427001479227792092542561478
23098846082449789896274878933157978363685116179155014537258949284662629271947407567725315838060386737180132464904087856681842724810713685136711486582311858616862282436764356498818663518321800927905035627269577051837471809224897455042764805894471384838310615737324311716153646422034395479663854808473611231313484219058379393248963490631587494247408001282817308923562302653022533741008837337013143661618384666507868095962629581045365914532910678352058751147127812291963194546802180966778694261127960430443625762387574752806023564224588117283576279587422017162515691685395818555097095307116532191214877411444853297862234978836915810732455674725888729038597303496927042026401189698531700762569126156340862930651364099923990866698963247030960615961166949354841537479135738159211155420847962324234094546055802677301148693688266774138646314599223389733801610164104162583304475766394794031320743471679114691343908542652293712198198989287291535318061973569108934857482848932556140276660592393204629!
 1295355616894292229017242904718031630628502562479448559788680981322510406455906779762870027505033317743023532281414518577935671705036710598577584673260578875326742933959138722694045085826706759541621798316584506681341105762647930255054059899936548145541653689615046463722414840826605957956684954255773935505297648276893308371989830100924110471981352425503905249667371687201940135450359748215276804652128214539270061980139274882914394742019457118797379480769958180003826341499221264184675530815667827046071305182257624890413758755943324353417546032036620607319609338916662867718584586306219792126584247241696489734155937152287820507354410951770286345422690537339664709135382167393385025033910636505778433310213577889523535490686408025396568507052551235283325429507257340058136469320136807977484571216421939588377204362298510378904069914877005591163421203475754459392117170163919467175895349535548411928427847737731615902532546851390877347155867596599771603924159533982411220584014948470312!
 4757865807551847597331902275803719946696269403537932295456732276692006
58642914778650342787006830032910333672572564378589189571842777333923926339272057954160939062957961137980402685148312655346098699553106095721409579311812520107994228467717732762717320195117519512545994030246565129764660250244592650811028455620156351818240923486456957927647131751561993763132408944542030935628119355584865617803979749179495635013951793613347134412381815568587226511480046602346304454459776219119058969103754553173361633133090646525831990246241259215338748572127551889358542062484683082477432821464801594865847654974790716047987287750061262893720737889901386468941672489907673564219882374552324724209183052968118185303077144746558377952399250274339783752268314852737001458095375675162848230816904463228185941484131077435739793735228442460002928947052393499049208725550132242359264414536181169000062161521727213018336804401483300933890285418086670389743104068365106826601282451482150638805593624537025901791165011356807461627814891504790956809637990942838782306583019207127057!
 5184693612072112396776639708015409325756080661312896049621202992415617828303989576249966299216134818687593457198536700939649045400058152410737735230638911204686027071648449479529567101911863282989549197365640526607779425133707748186452264863504400442262886193282979352342389775064217120297881094428851806377620895649850470398067646042353607971625511836600230934677457531679573926723892660619402518492249845607846348454249969290362283919754621307762331661433870313140400837617362157483006802091420349618642044082448197801748318514186529891698964098491876908074880011996730716789359906620749412815750844376717822510556645781567142086463701884831628401622541799528553733476424235698143399350402995978049944354622126980379746115444907881481545407376154537643021690723686387931917641086380165064658583769763754294342694727332072241998985229119220254799687466578140186331725016833087995778762734824715402700201428658981746359178194959293204085027481375859625793063390876557487276578178408427455!
 2251403610809141579934138222672469576553531901837731715030876001688650
774
87691559088101497674923317936576648340125978220250275260694827226878197833598854840397193551144571641626765247947870477706216645391565323127433601587140049005788324626822821493602912701817770385534997602307231230755992181894508157934693576205077862403239827396644617478610499711522779567064243498701419405272217262843286822184075146470400325814984985109570037671268607419017720764610930913379675190823488975424751393844524581739253693919664164606058816425440990592977864443306104993626371436865633040125212780808836122876317040605615095829350176456495783561263026969399360538407361729564541130849412252784851503392579862997587295495950535029299255543434854959577111921814125177874792193651933111375569329771507676117144725158123328135330013573859758431302053507156990508462687450081259703794391093966715889211193282889175132082261834833261920550093157893794644664638954713902903636541138605828651272013356497276384305725634374605707301634469010365564901758846964653312713202431576767449093!
 9377563846582026792115385156315659439859394163551730177640125177122179358951235724883512172512778652529720309376827741650402355628529783615892132043303922055810051071273266539972463705939084788142491294958409265092115943350433586145337938569487487701823844892727687891120304534741717440871312267361876813022827772886184461096871504164482261808594237949892522823163148855325164217070939169315306301912113680327548206416606420337159608058048722229161135800183728578796140749471445773134638559457201787609357011455506106683466413148041483492400961884352486244720334537638225243213269080380393291904623280744633093864201996181003779718068386542411934309871892498060776328469384213678535231892056726726155411302921829274624977043906269736071534984825007132133640741173592478201652955726342682424987351618472010939155701750186799803608969098800503190200941563757131204142725889987116703942140322205311497741068152560750015427969060173620654713934046471342635601126300907115185883503289753776757!
 0563300551924296302967046936380232864519518516784046890100405397855479
48513740945535833863822014072070025988712618054448112986925745666459413849837031957056532672973667555836903437055277742184157986823707927343075299631318423066744556024296976161969484662680673300395120793460183016622253934920301232614866232556223047954919207747500637631806142125034523792192380322482581447323259764012771973891744782714453898809753256515974751562660173475117437149784908180922329783061939462166325863819023253609722628385645643395952310960811492305839254649579484542477232716757373735165380543182397171643162482101741354332945165950671370576957243509785229713759369239443926339288999156333059281132712842975142675115732515591885810494954556454850360967545559455924772929385748894960738535632101650520553947340188734685470636261012642463871710370840401761072225720011047404142836363476174227516973800754745316990943444138871488577126831235116731584860997887486917044147247216407789136311392219556474046715679596249552256308516348883030856196252176474922809213687056126406870!
 7021070498126834685867497721624075634890891866067922944748749132430727500653634430213343295036734657457658660202684982942425554217429503091963998437860054245450161059575266908826596492044012324572752850824092390946975285843756112492533389993630697580134847142096683454884358516614787416292680539492594705711646607814122826869252396842350240714660467513797303738012388500769095445341386740002546192342528981861446418460006468661755058466167570903841872199229755086488331738613504297710119032105994516482738446933062221778475400961993237071247840297128758124943601021319348221314815563432970460648684936979469676613065727982747383933859787156133514500444316307025720589548019365944864952060849716298659126334087363010639919492934864958793602585281621884321301981853703945683546200337526328811447433684146092329679072072865048039834214451126020640203566188089077978529423797740952402298251524013806678968319874313874875853298642314738232143442567580925420047691898842928025475830308025655298!
 1768337959434709144647532819235332375367324663362089219837606700027512
46155228848078166597458783649780404568521991395710147039543055926311767500580839384124397198130100759333981798018850914649594710626650725938116208045868067540749896702850305422128640277412239523297131087520772049678083249456903166301365328235113802739695064234376011612598728948544675939145017443595396385884669479978087015523316552795500135334584238049529447377379353573305923486749990439982650511131193263282585323209641399710642646137667493901653415134994920751017801333194621076802307796933946314926110313850140763497698817503739327651531268824870651761611219098402946915416032116663921733842493695985175655077807398854244528178470833300288277823959078065653583555909083695606000134124394991021112800750900094286754725600027751308141613084986210647308617831682188639059278554358836282653503470295989910843915556808527834437176235195949039495984637019174543283594690246237545820765339449368918096548725529552563364237183758894001606827645112222701309657952574348901277559350978649208236!
 9277346113324835632652566777216456812802523061706824393632659272701118877543536184594778998850251584428153766435987618627588707728397117070201682860496591883143768950892088966820886224334882447037701253051374268505136853541530990154558111135751233468446602484344389270492077538888407369962649561742805789550074502750769159180258047046335104773936255625424644431138397947906008681647871645896631625048609789431612989195524690093543959311454221579489641694032341175140093159372401767895608567245160539818601012447441264940559898361660253769471884199364740213937764475612878918004160952821886646509499380627310088273779818093386186014942730564482574184459880952878774918432573031712744453637505040340122383672744065239190730061386021723181830306610564727361760062963925224475239516084649439586882167190630743486913597929713959528287269321716930899819167472794542442361353114070232078047258644785997131241116663320584600401209549659156019796147243907051646690384651581365040178196820786731177!
 5717673781249881345607321226089490931465634676078505077802386610284713
99561890900788429750350383303770911616506607778848399713454569714715325464139288009487465024441802936368271620275598243535084547970130068696464124910282503128686736564998405053912705568488618613967678963589065436928924490201323166150119506156456349923275450850107948945806924462023037907539589042409482450298993939563886674134060878660306721846368842754175218575704814778186520153082072760889708597536022535226871290872445487454748085388359527878016853379943299497851510949503523351819202749013276692256195394565693930964474729172492899598328009643577388716700270796742564978126989896485110575817549726341037340282942578306160123809538602264767863410264188419976938481629056136171763853368277606053367253545753829402757027424445977190350700408770213936704928261602093483569672986839276822032118156889829025415830636037800760275595856388056916623790753901847172764649733176938850435990734529335534607221718172002931056613882606453928665064935224405667712618291194956463360070178235897174483!
 1043339266430012124072623232110997546255991667682844169108064575266082174709769288447560416518814619847643938098981677453808520820013894630388235830222511836527607264690121012810999302211437362760598107136226054531845663602400308666540437195257545827616284082632256711453234154870527249127490233566013616611609913171483796653926948612704349161125148342005165899870478652652699389300750670336747837695212786821585576208476580163169722690181830453643897918342829341896513726511647544432132219808820287595917169854229430867981673272858333742776574839224873443100947854045851431134569967391276030055419551346128727252254914397796146063676531284359553433481212275759777123983245984998892864020782659057395032619812942640400528548648084849597245272253716902877745704818403548202313974215661010844336210597994592905210048176666788694679559619276561897892098142209644213380276335478499796523379114491707656378587189757921534202889188027656750448859587335212235654824720876849449222364169394442917!
 9590094282200343594477636556402912592954995296400394861651734818368798
473
89738020088645243050671109878174675764429352347636902072584133766494871619548487100331144613938467814942159512825873419339014590391297392226028297899460157755605089766820385709702403804145109786793149361101645470339249179645853727263252561900992744639004859297870789352290903056910553712436859821508439856018174627755455994569503237992034115725003014664769018021309724070726945805693799723559896923090259275756290694654884542881471798583244488384693586262107975988912628435676035438935009452316411842443853117564178958959596429944792133391799899384597706334797291318729968839996288432519060074280466658867185994271385077694871866195309908845810659836208328111845126821360807578435491791712783588769591264466577005524473787677094601717634994336026319666786535735985173540293480586553394403187721210667595569136255184257815787133650968292994337423937937529801636037063905031114170215587481044509482527691883792014029995275286418385311085741453692611511407061480668662466657033715294525459294!
 3631050299465593826618839035113602682165507076934536737202902975938018529560384826486532826981412954066783953948940521578610616306065003012129848647450247457458272270525353842635411792269075185199133824199762512808995694822567644794155593157235387162535418172817903231720655458240220920791668413136690645560528013924722415169926467289409068331633527992133611214435261290287538254001681667945495417625525835048425130203096754681987120000160680720773714435317656399572320204874294248495813422230685294785307196847726228659900804509261044723205674790321781617074038337856420011874986812385643833423401895761272533376050050026244181127235100506130455027508753234975224953079952484552048930154585966392770237213909468134713086877667965029446417243112443961368496828514836072670347832706992358415950140927561722826493747010564614602103676632862650644207959623278066104233619804935492034473383883755530347368210573802328110245952456407446863414024516509673307143713917512331307799122345280325483!
 6160311187497832064702664844302360237283800666206481412933479885368256
57361286558878651786025712772444698502524374319022091744932907706335733357244337335720321617969237700562530042980727044847979349431875866132682837268372872445777942833173669386631546949434247740445427566339684522075253490664903245627564278408111320752253510546386101912062939564967452375857953482686748762716435970353291024250659901714014773964479018224782670954867138497116775170845794014379622657992273259585618087774676929297837731443415545125240413171472827935548532725578900388213550915360592742637029155248311018879079215778134739213640724140345146195788938306829624926270654357408354689679965291501082742412645351924363761423584118640023713536613130108121958792884841276483729227983101462331524716038059759190267558649538305636474983821579570537284143393928665033747833306827749093404513701939675258345209944853810632583382111622684122051428064630370941054609414950206050856972919058589887673459956276772352205511199757604216525159770921754067673846061498647430579972934297252490348!
 8666536561366714538904147494882509885014539334313523793557383561555738026868625739507323518328989337816101379032708863910325944176416182308649839228450520535861763603201364837212285993819995785459776044653584060772647692535737002196663230185915058524837307401439957674278714740956738650617656151460257341369950098965424852321956696275864519623525077946933112881948440644988724765793281452640503753679075895248111462610906917762819183764115048095850369358919296221173200550367821034548264650062798362850974290247876669724466322530388338225844419882097803669767739689699082675458213757205414136225028085428612056155580726932776888602564834007673435893205003452831740965574867886181207162008990894017499474740335869400518795305441029638031288341924519770042721616417474998808295357581899905207199243410567114104199003780650202091278462133377022947476867829059347874833863544069303347757103690545135709704581058312278308460035584587740106802246967532607080572132517228021231970189119600891152!
 3547459327630129208990641908626965231486138491468768002194354005783003
59820655225532268673413797956626672344060863646875990673972761144508062139997354537718201747806250522712250568919144509345949075451727108120330041820442388178726902079917238901994947418440303954891968436457592975475157759840710670782368151545438254518518592733874081412250904166799629451374023790447932273280193548818851142092849746441723585297337161454018855207171800447263427350563792302276144490014482092596044176827150213644491002927011106631472164094135777422212646917859863676466988633636662169715518765723900808265048936742689570738717957161240041313550803976597294155619913452725312254655634532998942994882839195321632366001354896115985430545417452976191133227159637805038658080375959757632403361112673309012477123467677758744351840907667437627830271009122627107805278936316305922724626004553544050912819284489267522387934398407697696894075434629500521703046861859795620278270473677666951787814709174955527781565211908644489974370402421512321826682036434783032230668155317215949154!
 6756542729373850209229774993958950189151359520885439707716215895971851239011368986530061436765237185757318616188976804567944316437332843194472730044048880244276419460610494077617068625290790682086913643408082460814363978365933378641288397191612613167739157422147714866398042061388299818932646378241190055064063046454261864111708948941846604955594413210017012575719160325149068958169552584096454217232808486208317618833126659791240079039118967958605733620539716087377063212543127829013279157991712660147073567655023082860032761107259432730646676415926362558591416535778700917252507873323697391830636260590196166209459160009080089723859287373255219135825368211441757159326838955707605462130454599115729817532556664909792503689079223929190152954473858350476175960239859790992505795182029602981748403468317252562961011229738946993275621737362215601131677896200742599719498742836628340401547687907115970595801935724933379320907322427442618999547695260725466096896933865880578763871612105110495!
 4180021858770487657990898342984086123407333392960455636269327099816370
87609209896759662651692065379769055537955261411917183711096936372670624402410952693820784866874408748445391206844145215231652301230133603944696878493876496247848921874282795359137279767994500619610933236676433630096662087220171898745638611662775006380575669005203184830596481318336115176642948299773487180392318417681093941291506201678201631214693444000437459166904938039977965767304944035078445247263602499869593305812853922363608679285522654539310653211973994470238350016744727926211398099146815433878758019239861165458575486299394379948455574128861678822112168927765391685859614141543961377791867185006634404852286554992318259204640543881240965248853426258541669719530756509790211387918187364600972256988181364418032657144145680073012418862405671529609499944944422346742970633803060993742834456075981473505052711284085532172809215302263610764391941722719130541098151271169274192040407520477821005822932108063160804390020970109635713861190913258904224115115068437677086567744410174263583!
 6164341335412937568451828112593385429437085343867333155542140721882581722210069086278336756180304236214756192285411341845885725781997258813334808629766259412747514286217876283025585167766422839020276601203772188254476115511363176082248686478676515707118731168486174907873414554028122597863450524848704807420678830903326606945649218029397677355463830942690839574834212495486347601143216073438689891844038654495233702331677661964346996883357238104435119118703017477557339758879096324507534675138408812765122462352819486360749106443693808172862408075437055045329767091369828259077067139727004254312137458698912134535185041584956499806381297055183873636253433644374379007672376497977651873279865828878987615316258548415895742746961397188293932594447248737064277828316947769919973756064210676688678694855265755624561698397484634674317963003000738084186019592962948096266102169293419817059962386286094460269022668069142905653878339256939829418579083845306079958791942467692404783857611993705773!
 4548576235721657410562106306975347705647884771196373089343716743874454
458
91860123939393330153922462127223075196409825055435733893585317700045888677493834518514841400544872957341460009531449983191726226219833937475021521732060349559535862131096871994614189428476880003562384710524447953418442531330994828983572125139254574235434692831286763358132041304427208363626537691032233687866306486883301170642709794304092485295046179852208943203263255981567362288306636615894168872665836627488120052104787341247535933044557027955658119664239125840539586178971113379279029241093761637314212988279693534833712890363640949943832832989198967552932705094136254959892812385715405612565382064712719106687704436835597218843756449219427725491876099947823738816562000611314030466165003488186194581220552083296475646811399970977434441059550446566481503972660069379785132684589580847446004031056229884405455163019211241588368719273903470807272561796327608858390766364903864921536602164862214377881804252131284052069301432547877664270625277143190208239154060123234701725939864586354382!
 0368783950892003875477630379861516862781263467239642260479214145002185013311439390679067277373458534906417741397447907274674314893669096722816922989513500494065566246281416212906202253944667570886101090717548451738101606974466221485536098094561372703806565031704159062276813855320880935606371331623457366879360240251430925309953725601269703647885215946110585948762200013668653196446263654930238851853234458339581017996397823437988434442560698511024983586584466100881338251408200898442618474291499873022167362109556277785260261482483760404831092100362097135690346380847601159131979153950144745908588063732930138441885753747910518801856484593530138007584413311287188627498126472570711625023575537940814958092071457011728114155791905039798752436605406108544857917375074205212504622502743807015844889617181582129976225542802191738331045526144720424565146853472065673019423785141170766855761176822223179406037943135098789677599074900080405449658821152076941303401814898988998372545246398669216!
 2945520042619536637052791876505662302717116472041157587972633174167574
96581749215667869463540769097647471320778225797213014416115316409025845279144939205864799144078260237171817298356550663728348513791444437858767993424135612847155803195891380742347767839207324262641898992097410504007441741809356398880336873340558066709158120137333068918866155195051394092080223836562140605603692386188052022137592125201732583271143100943862110158971461834116286476587710245160739863190575645526084100249932551771116152622684685619366663517751862190737247665292426606706060216076463947868804596171861229944512788308506851590993461746713443512713421444727252305905764585300187134234341517091147085383399590206617014452656745595614402834396102232400437872378920138137785668916391219446028397168050100005740087463494592937624747983494473080721116265298979425394888617877631780983812959482567705042673918798482732918323026090946645011831148433056110139524206508041659636243793248615692257398747044348352913383882457580060106063528326830983801489068207182138372413736728266866193!
 7270385379152790380374551273428215015928315361659051076200886533731341801259675539586865311778540892777084663556952157936565970044787453977626853546488133781929503646035127551500133906229219584684389701860760281781481738963391294451952594517746154917276875472447066006778927812593326463202881952740088898425188044899501298330337692927742409647829258837681924091191771142797916767547057463160642219534131313396222166921925673741590023523621909473714320691285636663300574920282781364318367691295409811242044622287750537990155479242440246741505318698351550970532701750978020609725314934713397875113675310984661725067556245158787901420152467209809562922660744735766479230003084408953630287471822795414809731504565159413025573927455505538957005034959084524741584361959066723546922263303512159126561235108959197551478053808855090384171422414074983363450850634846328322729255480713752428242142848410897006071397915710380971595609814470687923203805406806095684061488258206023930950406044706508344!
 5252905289944363634396554503104222519478571850949957104688632920815378
37211539796230746606914249321196171418128255666143414443171490413735393473991215648315081371026085448802157028312964374815677529884731510970484395339283133314105984221565116484456729634223922278092979991919872272804587269188141401587715719523917164828852111681369027457161029049829797747589765254293817889293205241791688724323383152988905596519853147795939899775895059288248672740439796412780000647175167178857034111140939225253668277461673474032342068278895138891258999343660572884265479604319175324020766480573516034235355998091064038152525211159137444812740715884638048427649718238072458067167662386055773712397484584262719341809880165055760702361947531214006576726120788400697980320789505046116411535144950051031327321083649064540465263725012768093079313429416041728805360410197914468407058580427545078384988725568422841213061572191954351148097809631295804090839010915573857865498443347260357642328102895381314128240557970982169989407435230008081494943688845716412438752780591500059484!
 6569651934931800297558192132991205093866080209405757848463504917170046990239531286578855282920429941118284600937584854782257166052510108566105040518347869386991220792637382003707579074505866030325761040123144189545641530620936311514643256006166490929121053625554550207608688613409613267186126847129214039202828949784312819319142311064428804772735783112481622968572981220786592157546691153428628654913221215479839583882501763446552160064044293514418201505945000445391881093809858719622036348120024771332872778847611736301191908325541883637119540173596394713026880845578298960912654749023646895641299915843095942041969008178971446694458971237399154410770642573769280818705189165686151216263511865393437107841568970102481964158415095634757847801353465962098355395915380889684136479882896401883770288029007637179882763926630754790403195016412414622051443847267738341416102375517419881426772948266075172757591429878978510654452058272605081972236958645447174153330656116633579147886583005925017!
 5039754001573288153864739442959865528609491239657751736790894894470833
64159891138733639892775510149844275798095067371824243870042003848271253264628247279624954979656094211206201117911081526341219610729706051849208595130461573916377958818097002122503051615637399545761363702477483980890892907679040787433645732148452115899398211959410834254579511168626780721817473331828330454829349279777409317718370997935700089910718923244050868785613310059723539946666370494586045965828095583110977595559455907618478796902834312405884317000631195030564436378139193836355906119913460796260985440089144940093025264726467306593718142238658422512412083162985345634986483350556896304287331015854020942214646320355806566626324616532383782555779803262362002375629935139737661700309279182255836188619024198894536913562216821500283194677190589116336533023995465918655948509478990887304545112822639741584630651370880109610765311697943091590778594728258785708485681905603338742090855741699396938573282521379907649226178435078186806713925419012606444642424065463885189038218699923592425!
 5569378747043787139014994211942925939719992312544437175454195631561991344300715028372458633695992603303838218037122929103537280058176360364711738316281532207635009765637745968476212715675605433385199308196735690635803898851020624773302359298913156817458441502355448264106041736897249120595152038239964875204706382175702753994187237949037093266986968918386249922849382178500014345655049764608050916629394524986513642277755552349823300334224996083853616981783156410549400503317751740304679346776566965628088683401989226463496890186030553858217568965025105068503146046852641750631049697602565893985585980980283523966147681041023380578047109610866868924988390461077356344432249621089476227527026631416649457083518740771662173683033490073172723284654020810852238270963801810719262386905820666674117418200970257084756845875860814646656588042591764696703318999985875073151341097403495271981677379630840638561056627444627293754898864576545648324930024192529189587994070102273080638170478646754571!
 9548922024539827274482206103033187470541723393284331585878465560677066
311
49489187714296807166112801863962629496593460394796950153607352815365027158661391622605006680480992925878456258093220329632096717427757075243384479793630091162573318379079085356152088537629878798869375741650720418145252565110104868075003165954165015799298231654982870530237519364326892696490025145342358446418238033586979824653148264425270569856702771147667785846452876590192640724944727195876240704491788216479900546977782181483881116272166702744664222138869719100904231100582358097027477566483712924212406758501399494494930947760329931800558598356031152742283247723979851594984952384635555061739332301515101822495235736881695154671069318248445836761100673088195250616430376401599615465104430487975845908574228836780558094360569511917630224724574658328107144511709663918033831317924618592984393791960841371279844835938508730171062761465748003133955448687254780379532877304963790908838838814911068969994593935842061202040268341486244632342179936254774863107884302818656889925921621569025484!
 4405387455782850825683228935027117828621670026725487850171427383684988426463282295901388539993800126435653337709843805102156699892329071950281739736374645737389358829381357255381056872533301678113482527096653613520845251159301363945488011483859670373464603412411174906576026033186939065849167277506750778402783453924940055890543301979089196958663996052134893968661651129255960459305640358208163548170593481387203300103400538849675405947919989299815388944584974385386954426333055944919265462978911873427882161026183925064541984138263230374688882650061287469180657568081584241959691336724039812377261836945376345828278030434541196331523846714260414079882455743593380395344660245115706259420169636256943961083182222495382615873355176728788107461213910635222457095042174665800176082797443523831149855398213891409156439491188765778517790764400623200787701954996210235998161706777364814211033514853529309310797043644271127433584739785631437217758978754519905177194186061637024230198296386959801!
 5646986591521520122559462040312131375036842062792755290920136818755426
45939341849483691899171826346237355026880546366685562183128166098680899238871754286206643824702622060031793992235488555385300195454817658967404182376805914773005166368968746175112888241883123668323263626535712164964263708071317978289531954299830733021908638500677680799506722113153189295382570679425542179687314195680071843169979013758126866672328325293249259805709184875966785481601685119547217651408628093188367666427383191431206760173361426838208473910446150277644218961236523442562880799266525045722623748893427062844410970462565159844808043853640149513351346267699795615804101600044531923109417270833893668511123745399438019159376050610272688955107641955058993793093977499934278799358071873300620002652544553817650305384722420627324686117651833018853219154856962619368678365084830836690457067113618309743812103461840705910998223102277936602030344343528390423271596332777964473343210407167004311301279115428509325983586783624112154792505374216351639945923466824688161305093053498783100!
 1094652233840159415470411461664621964550135224915785065481979923662668009149390963038180541968538100458817762423826549635190533800365125166309452071535325401479582230909443544253330914712959286898653705045543310971354600466580393794419876706691365134742854758840088272500879036768845228371119145903900391556333880740899320612950284712330238918725507015846422225546036376069908591785980617323977680932596264964404602477296067704182585931535897407222239927650592209259797616119656738000767797049894450867780622910625631420676991244461677573071777711334962123734472244735126561464188730865379531407649280019786940661955744742893063362833454103061793585623527137589468217092729753056168768822555588096743989398503951508935351473276844277153307179726813347534737161113062632062644844525179366241286008898838142061759525033759713944710680513217827276697345788083600252977822762015839302479178602523827043971513242271977995460778440796747287581718089348492934743979508054484662741255477756939446!
 0071736216878596405664867377518038661090405631486199445801089773861586
77306544863053720428311828759996295600741834860111266820663078969634163022473904674076770689562681729747904704893613691693923805862029386568163678271664141525947074083681461175127719248958598866909781852693390544841079172869559707726479829533660078615225618542036349316624455384824022229832770426120662184793115173872617799639362167174382683707101555842272706705285247685342577855207833644378406838133844794705695644815209911557810418562284056845466914438418965665376820215099609975590679445814748490734094808757361556446505300928153280420641840042305879221204157844374779812541875274734829254339391460875249383989482365213627245666178700701632480774821522248556000101880268762631287760841799064467128889969607927863006685863052825616684425709167827966225752881755705796790511700970522928408783966888570773799764107676385512776419180485424463515804552496685891839743406256702973282063289639167244354725923913207136489591172143674422893835270482908607010540590105205331821145596223889116693!
 0253232933426056109049978301104217748135055006961930436369272671988100660636400485726283169868949741219962870194373752087530892303855375468896560201058785428187169813112998129711074601315158182013097079794189015981656556447625808071312602059045327651452054472967639455867373359000368415367915507996282880362742629238468966989951931448122973369240384697224552700268960979247175881896456993962478459839060099111785855955262619482397296606078379862075303009406711454734538250825008539484262371227230547159864328234594412139263746618261252410960733261243828478160204613882863408060780661247414187737219732140633957251757976910265840057277994061372378593193414789385652868743132819708813235563847486590101478087155301538902896733806210621987286039232293473219331475827818502523223545007714259697722525590200010547886728706194099610469193691962137416394744335441083523548990672042601706447953022766192657850976365009324662810198945591450116664474923172660447276057311544659700894473720805315868!
 6649755478670935296956334867066386916652648530194824343161804859533887
21231880440365216463795316646387561183952557291737956927286319898385311090374414608235432073321313203126081393248200249486267365449336022691146336851889559140522290898684518201499507479312385499540835980020757322859565304164398209671648036702270771108441077715645554111326315107545978259213003066702186643027362799335157564281494726977921897086911412974349626903881554141768193043938579317766997553264645740604831495072248211336888033743660792986612024566529384442604402963570338876489702338263412835819358957762833071808256306114986920013646750044083370115999089801486443915971382747929367610176133213951792842373077682196471681779472106332167913586551079392846443682622183447076195080132818932893243052480879335183917447904083248769019432336462367353390342440950189531129062738337178640347920086876346553972896831495380476302228043065766544819231063259252369582199836692429813461987204833405167341300719063033421939094234912680228529440474525182326064928975114444160141432665372898368796!
 0342602843800211866376921294442763358758026684947678904910496905208243310662064593136214391390042718975104388629514466535280828381349076348459593710339504151055103684586306450873789248148424490435212887709719435141653944210260412801092966817729629884195892335060196489291593313591376206984023241481829245923916025709996557846393670801431889865510868466815072967062066518963750356478377731049930303969706909885687099242134939517142348674505862543365055610715662466563439224322851237231121971460350167619142966101936494261152161547446719202271873917836291676948068203029769142257354368815334750665581975144870033579157304816834165787595206518675570115951962366612493347922089740926579694513408913084103949547439878196658497305815549879540675479424998976128493484255518911520294244378263834092556362357693539829104982969313337329524482788319305288949958951260201952637148589358875374875394646894666670057171207860048042236290804086933882331776112033177499732949074817760326125267863075109971!
 7884015821091803826019114190757125519326181255435930487877876186203467
662
62299645894389149298389172248267941904502115899827200280168853690275146064255982364961066486501581459161566778311685780252501680225601213367062770391354503033544043596288663997091354242522835589774121860910627373002412385641282252408189659649874004129563349456774351481592206862857035050048794690768495200569606152613896489357376468868924370725254289456202611395714893345607547130116822549694753690616023128020484953641806442104854241073631702411641668747874319012586860073319914633449133616751101266214117416752401481268431712083580116471903037477974941329234705931129030764651680970316757978314970926295286301761506602863732264907074096970031113469109280523803292905096458925759718426227753949469901720190328291964265949360142873502065398096247833545767064046905817818623699502142764113420744298624579727401482842224845354002993153779472340997723186960460801794276580793566610833192319148181006054176741729596260200596131851018656564776293595524381219421415701274103328162804298837288343!
 5212574188044159451728174388170955476660716155481717316134820394753372865249885159906149842756892332335806034968856372368813639994957792315472521973646973090957060399385010534874347542233493051381191508487236144359319441879191636052896021852124674523262955299881380636031354167164630851746184420317312080680229510079496018524911622506476416898953843308108456671265018415606993957647189334050029577066550146022823190563733043806772784116323728019971346269646085510661215143294414647218561994767238654142902810285500853423065455344502638121135915332925444370329782777443432206238376193817782997532705717810065383984570935713017632591247263229570825815452821358016585832421125943176611388945407838306066461034078816037999609145966304862605769780257436627374937693122916735101225370796635588757398637090812848425049549152692627023299630499520668601601787771623774012200556651861548507318971428408972730175751948102288057236970365589493804132288146889959159991639578395518802559864586037028466!
 2198976621725673115447819462600092374502365106931018521190022340739101
67116338691594394539792212443092247407921829772836239592433224715920222270105961502309489085210950691283779758020474041767350483832117247054822137480748380454949054973974453196011605686312343895162619851958392556408212127866952858387764769187209010412630001982598680034339661895584503315737120806184000195599359785033613789624250717134429410784185913223969092628863008716116785691048120496670538910235436594474306178149456255170838469000038320512114852791500864393811974289288254441378258156729679463488842281548725517331009913087337404100726902399168710574299404181462568458286147074934176031863759598822398439430452868945392212238790958086942041087689452979410921055493769700037758677733038028843724103123684633396823111920546430130239551430015301519793761538036371215313466837547974668680271697110397661679701099599567220873229934532344787636859751053556976701213614604393604767380187807519326071716111722507969461334091566130941866431078997480908483733789142870828460620983873455200972!
 6879219196845150857866854391776552128102595556967099816077798038917292480872965037283007040716562534313428388344238678977515230104631199485029110475207519829102805920956693937812928359420598355531484931636971332102038330350736503556188820256888482420659228066352971297688316711656736352859038809024284445444090241676151526642931831863008555161247705970526051846251020527682737491684482953066092563466044267573273903375157337056742051426789716207536271485666105385271232035793906707202691325773200386145829193375517379945519364165308174992362387241802566803414817445091897252635689006867736412025788360941355159510569306203642500756506798031931247411155135047935914143609427593858996401448794741851425550495074753683274736354385211768092807155257175209175227011147311571617841851221250163780746395279130411155493439903347613035472143072760510124405877708639867674751149855886816661417797014569312124745092148195497538014195834105498356459319223020461113667738981168146759488892206204363932!
 8515151428458254896438558405720916768715673959400514394696723747523183
17363102500075973326012002547350281376261738445388120755053785703371698598361833123246607255584772691994208946849618987579608349362062945090644324044998977100459875316838558268669303522608309553232625850740579786236875093171175969720645011189799174897969791276669243504801806600504944960171886269438658315398899644082937261595798430154151213608049409353643137882624423378277698950194413262177835732337544018398497981920869127642915849018047605439189052934235870438498024599141593073645358654096157380543193308230744342164136995771213611296227825959957116391872398453464213447755415639487397747281653388095223795876185737339525899575833329387201740067557522525075810853088276167963157588628010112726772042640090086438384456093423186133409942121112355001644318135730242660326250492534385575483774453992012619543226887453219564177740064792695436455681921739606729594332271979036677529148499675184729908576648944952970067043564213212689362218945642172964400353472963363593080085457722683070537!
 6298176288482347388213166887492991623773295073304072005545829979988994034756317434607269387244391877543798810462490536361123579763662486008271704424090108392148215362646070711839054561583521812012651361833976200041067504199199169616363743357481650463658570246806758084791990604731338947755816509476500622836505281043039022729684174341779540779210759583376861089343160623846049526714108224910122064853726496689933804014515055720505756861357637155178208189392424646959282452959241031430705178613115051171542400889643298642392374192407299132165308607286772472716903712408427931578371701206307772622540219833034264865516559030832397396087282747727882634715391264306435800979982612989001161507469695842696921176157767204290021107039196097950165603782565209835988945542711476559315111146005102747328434423549618504767131700393099072994580439964228025398939850449148119825329339455198573556248579034155980034326978428221979655096536441730842765407191363900877861034471340765515482497495244635448!
 1331944915432615974687985541179797885757888272570223164610530036939056
40035418785122680859967006413471888327243106762186904561057663281913465005037699015531155290711490244186804272187157514709215228268818626324676960593578985987274866341130708607046708772155832544519261293050195617977047985345924062086151836370126683487247785875577291748055603988234269040578106926555265586066313528192328596108334732810297093014763971292971844523955520382459353199585747176465809213899955230575446641970143660794066195726724745565482866517291997543449861548128026262869548905190036588154098393450489791035821042831151325418966531546792776321204770107005540903886128404078107071447764834251011864691020864832975087639062668046858449069036646961867800253402119746356648465771650489909788638905909858622098239363707550090499698752728848658085835926991320131498144189787968188916837519984785519622782895331935364200995477041279561178766950470065738524488479152898531291386266697602368851356542528147227419984391776526178480090439190860553182253334437591451374709521265578008570!
 7738144999595999758388529924611293874885664510662327594925715425969851147859319135155836293150870359969261957153710440955854160412634434394101832858402822351354950973395113979052600075734822303961864177782340559289210093594938884193781380517075316872594430453203842067594030113568010152531432118035943269889891051208167865292465845997699910079577772562871516849584655298459620531194946123901099321226227098841523000290161412043937445649180164658818455551925183192095977803854844359214416745142259631835777179122117230902454405959149827746562872131175976875707191767492119357074621035580410292873515351371764692901258391588199572625440813426942846834513797504911037194081665398171646088997092538804486033715874121999732960635051230160634229421744380255726433353888256959948733134963200805344729564300938298612804293108703609944843167502844984490402360087978190568044174047643738361211863221766266495301171845734010638742922704366604887720498848351452065701287986829683603212133404168334187!
 3865229823353864433883545921378360759567147710775862159688438674414829
481
04988083269752159216315116848163370856986510728892404333184734983236583798067317682263868871166695824527052455407896493966639908046560722774060505987726207743219880870927178810157575163621067811023448304087921453976976665989259752767758809069391986241909388543560435393714009792958712867366893564782321973868868386102655023142382661849335012526328317499855059281284591720135625275914598386416763976096667117227605665665127313093080998021259741105138943138974371308612867655304287097783030275661261117183112419059348934029246450344041580851677649490218609771249554133935838545999177789319430054764484803004318410810306962209521073845679683190798317237186755983260126069747250701647572650064596302637687483478089190458982887929784327609631559627157732100532627102321253022499276696968525980719331121424277158466391614715061002025648752278720458727425067682190774155554031960570506217108113042406281719800170567735451063272030885641389604628779503428691176715672253109435456822393599620901147!
 0411992045504292302904472247429545444218274820279640830338772114392201408625554164430083818343119035646014415467747864891332408960330041571251394092680626214701341822864602700335641062002582978070046048844132352159577226037010412173839257995222610101781575722556379676239653706044341277698195693058259988039290251100521806465823737554453616149487706481974711852977397770314295021201309289208259524171289500900084279723131665688348063433945510685124615615078364981635883150651597813849910063259244867888946303825582982301310045681750441181091942824998708891534157601014258761868805554191312377684633540323749662838084795116370412246765969200361099773089080703116719819822443917425482650378102658239056753031393120990457811069927586529994010839646024851579333829326892436565949140582786221868927932545343010809322559997885107561885670584148299903312502641514219555091574344115733618010062169902730058287312418713583666366498839995365669441994071610306233983969977633353160319399016619562731!
 3887545609265540780918912661170130495073455521641047428474263713223330
78716495205367918938409666380957764082099166880112066263177933963017603628627139829771548788002188647555500236954739253643688945211475732176411680080679800734996175835045406929581968240085171204639680675595043446776761571737860631227255225744371370266090227139676536470858193856327442739011952644896918574237322995244203224718477872083582824323163283918382774085971829373294168448926621227110975467589556345765734966036807205587284989558009010701000021480607360244258071531116718443714275950087429116528879100582689639595393143295802134328293102124691110321143309760367211474696343022438850868201262785690253080803320998021653485459425267706823560121348582209299463267508922155556434823931199477522694955451544685865566646785901284784506971390909997601758325857794565400515672857289174164534629293648965465868354210794854270958313330124576126807566227702899972360333140891239375342684738124283578840511601201556494885598597212512191839788747284489925323157112518441860380197081802742315798!
 5161476948081979912337274133788861225893225466079120384740005172045349931165194363791804586871976526624140855977329801728432490920071897994392462128125876085695096924449871892943585004578880915107823977318940141480393468984924238334464355098198959533794885598691128250499896218607472271771181127954755793500156224976498073788109670606466551910964362377929840328553652952283583145935534343291769648947799397615181749656316458979330874995893864767654356514036861749826992443686405867515463712924394225135317308453897788459280818869071662379044407426385527587562886262524251999057688844694858254065820075510297085551016921144012773150925051887012277013296309625487315314003318258159993626230078805695721273572940040918224547281118875123621750357098716593008634213920682427977395795808277813729719725396357647802423563176761580956305835077691327813812065090228401004307290034261468566496131956091247111654768461320863263873489070818298954247181016431053780955706918849504687465515105682333673!
 7700948349459398629360972357587466740486686136858770567628817195501253
99152549516627309027114204339554627533172840096419857881946113009974026676327321441962038196213488542984080061528132942490887219585308976062731397674624251431380802964955183845088628743683750322472110981578311657183087832656299183773630811266174969834082675039182828993689804981341648829345542315539746976980157139638439342965716591651089504341836287087112387254738572656411254500315543029481544718358410378638521868728712704422265597830416186980468490929157663956782223765542210236351050928089651720852555127260684792616951855859467025361610054780680663083677710634037149185208895871193071036971675683267861165143883359998439570526287272559911166287661426280448488523889969255958117731381380869855469826612084189629368475293952646266130749255789404314594489545668826582993748376981620274519402069742205477219477519571417267093871243150991133975232523908819317032141792278217366710876757599595934421047159561884083875998682922179060210870716561491952788753265167959367007346674296465071970!
 8155644144661900462999125000242216219053062146908987873174874736685444699873508937020686404641942758286261213888557361741791927905033687184925785202167118187460793075288668181892594411518052417324747657983411810488258371531178497646459405220839996871372973436539388112346343746756008353094903729381783702051345835074805165597987131308855198749545010202610813494186819143528492530455279248731285541013960982216255156646737128108048045338305651026735073137056092479868785062696188472059465398299747071893269448917433546730317783024661000069654932367699841757238946305144823287495587546219272200044519324293048997969416441575765486339581081115111330022465156608160328158989238497893942655144400313286332889845637337245278136651873153616417751329386328449655453688304333392988551481642991905483699088355791543023713442824953908134015495770727082902789029936977478980160405861860623486769375575622306530611237669916606762581462476690455332449440519334886239076666294141842145309119194083074955!
 2488908536018223572644354297805764968097497204969435239547818426414276
41321869139167284759043823195741316059719911743091449694654039011662204021700233300139768476574581392849461819187551361400159867505621447766442190343319898325163302018207047850248353767174332106771416037334404019956193099342588370014440830435046279943259001379242066200384709220967328201118360134143579420327574147259817870397719829092484239309658215853317477621402003852218848795429700210609351633296020095541793934174927111529328984700819849651629601334054064924500571773142919488661316407265269536969549268527197980542597081713207644895111940189671626523292490780233438415936651677841406071595116053443574347934932486304960937586632286481327616354583037497482247976577115631046559749819198702736727210381148240111050212191718906060581552977109919607926857055124175340509488686839892712454349777541971385968651179334110894148751357713043340967643071125012801315270742356622821337610482460096536811088945578699925873280146867605190673621112714083653453508841744425678570509948261273638862!
 2263918524152087430465305037031173276064793760645681524384387073494442451701278057888342813793432473520164346167090531608355978936367477570722380607184450015892396891283628734440127043983144628476676075637134218853001684726265596374736355899766034927674065865498201570270701227567275328613826859950008216464240075733257552765268418280100898288452906347854462681289312097652557092610085658648601932246754598033980869828711238308289396855996281459464649144399199786480044830351576061239901474879287438395886547730670357163444675960680583174285988156711150189791521071504263487350410856993873852620375329540352334600964833929150148008778358547286673887846431664683764346672526841629240603855440667257883734155635882006161175344540407564583670320045483422817670143566177761056831290685552314038267044410858157212436249586763101214047961439502641515924714071059931835782252533629964691613207711763867504892865092097484424546937457000903970914069496536938201312553851990837422504851266658889543!
 2184334441949389675417219589468427528344447262478741333003026028322846
699
21359332744585031181792803240521472173217809010970850318523352082639501788699127298920516876951947894906583146196130383502480892914520942719564511444574162835470659836584315497135805172402753407787219093071591802507904814929469381933140083006873558697970341917971696130039858839611015018967436013093802623549939286191966136972631102697264556739553229425893518936720544315916059261210980671297121433648405281728171816563375484169884825201937889223240295059328577155700762821404082661768452806497269180717828076270474326736719096508807755766996170208547954274961946158610373817619487217563633495791081188672958174745264067985319372024292599871462641799734232275487317169899219432329621257168960457058835630475577985600623784854785954639930429613249550255367458639128651534394240246348605120203761661353049079761538710261343760190444547852424785390180905147268283923984475221721649258590533416640358081132921758155530394395864191357619236759403818814117705392488993454681396967655105000290046!
 7242360527039476846645043112240117273767003297354896313604701374926324901292466110049485950367588873112278204505100755931010027633257423452208536194866296037421639236788719852338408862368987745810743586914150636026638009606809051296552543570726489723154077016788003224216960303912010313303586559400349318632289336424208230181768208842820596262092369895809334875312409570351174041634667476627697465582015577643936994437124802879172258538959513472075294419626945194958771443137534434383723750845959040337038122303762786713078073986309771240617799187496866601663312715456447469489462294284037134103759380693134711847414466820562669521163980442081070777035888967908030533724438630582462541476782825177702881594781682372738184785804772806399830069400297855131425708664001266089893283988098299525672403164435062636769829904280954813315824408215637552938029970810104389013493360378450824170282958026843005405692101513667591154511996177357544472017343049134971332840701452019469179987778042745392!
 8054315121681013419506362344024175677510171936454343929005664220350831
82826055091510377664917915310138577369798472070922336375228859536391280830099209097018178131384196389704096537065875100158524629397431414963351731124930205049696145630257380868166544645885567540509294043508315357389673931480984918357175898394814496456388746080244920460744287609249145454191823536864551387452534441814639911219956200344322021247814872330484559677310167979551959014385142177386029115342029325380561497902434805678824699425558278364499991042689372733604799704240611352733921351083845170754638032192666299056544594754276369687871637289914109251517451738723420881005568127379032935479705240310423552848539460858541576119039374893364605564909490528459038810149289035728395674482283507526069599638157271508669914110302416645135358988824360011757232176249857224168311495129656563290850990347194996184185632110169032062551497118815156148297925135359942309454337654264753940388305228053010556181579497907969807938528017618430107697068744664039633138080600736059906935529973159855505!
 8468368472359241080965437545541488962464576010138115467040677963681966851880556801839029662234428982931389282316490575798832504637611563307678993741859128144937123897946391267199990786337923312225307129168157977507436428652157985629755273695237989719745842214412193407156276983594665780461151910585483830274289424152693818715025602031713119116796954047592141303379549727486211433025910893408880298607050459494118593991709479850001131115104261961908068294872711470406388624677675110308593619797577580644584570494547452314715399273500455712073911216837115226957480281067154720843883902247926593335909481218938461749949664410920805365232625809949767725439478747144949793924726777768932456368658842252544818433674725794585496466534123958639692132277371378035963663064661326296360585692224939718004958758685991614924003977780680174141231113719326512789141293986906148065102511857721886457835703276246019467835697815579879451490105759321020968187654321068653111362928118837085700796225419558074!
 4173717417822713991087348743317605356730020319210671662331196669953297
20350873472725477062158819366825196025450810858354277657870816960604853156888030976253571366882961333995363616156408951491828840824048278196130406068200785767030595660793272077552685786723825176382871058081647181382285094200515651709692112126587036311066102787214921173613535477108292157344435095271050780254593855159985770115009118004377462234703820801786493698968940359247838603838958915899409544236420586016293097466710090333178204316337570563337134106855305478781254609345367281199011750290942025042438598771386107549235451511878374988901287967325507191526934885493657236339763927742048774704908025889850478892289383666246344002740554035414689101415359698282998668179839013458325925596306684810317301441412761078861774532024731213647406049938859709942856038751753711434474226483341556565754510812851621785000501462604554179340632741871008233456003657563372705234450415977496492787577286213589859274211546371074484996334096819022366914973296264630404075732328606917577741438506974911618!
 9055748608282842731095379018416436004524154379940731537292952654882654450329861783396894336962831275633057661579139873092832930170238283091468295120069297497524364300611941676916603294878418979373981011520205375089064184829800003792324706110394184399675095800325336878086415894257501026222115494314100251586645626230983468780804543804330162769207433321709258187481654523909378484900977719682316905602190786633007701671922210277385741473153654709486546916278501167195208098123822568321722634043711858050471997535083229266748602080384349182309138866215156682060059651333050572221460270051981379183345230998088996022894762827498292795186253721422838489490546743610287130127491745335190513441225931622381108688181803501956744255671113748622030429963958121488771010538487934385337083658433631997288948901558627463548846607074866193622063084143103561552542673905598530429588651034583728851257109232813555498352822951653952226211728465568142851446225945714130512453052025692776314901034601889873!
 8128727234735778016846754116545840005754790630050739052730754806562886
83733321743218304283200252654001869613639140635449955644704515801284394460998968741616338697070078235257500682725081686932282026580674449537793252034353441994010351468925368459264470940226146813623117740336464369588718028970372679586865514075375733492485299670840920318261123941693479944578801713087940734548118749464692339587920301587750917670016285721779556994225732292405837012736909454629931241043508959854719608507753118679297853577925674342082295316980979823297564678704231740621300325294556429031732262802080081103119751251678434388334933825869060026698678863097129204302612520687228552646996960676862542050756704642280044683930675149060184682206810191897209245789999636188930130957304685718047114002132839458111633089010771390699059858182078357148166522555040497713438742775959933000142247177244017936364992965209205671321577486827349091373142566215002209228087409136440579580510341568283617987561262174858282797704360402000535895481383295313333863511861345434218826275563681871912!
 3990996025436662534056381622701491464670003328822781515916534346840876646630066012876689366248327294935932089614390218515644722578793705544881031546184052091171019768597206448547037531015634428533604466643833326345081104909413436502716536516895593487200996207302539580080031374364087135353381573451060573516771651927429713899954144488984331393204071305731114522733681114116525256225982966226013143097232775468273839697902102783833149692194604879081044979038703803775966559354673914728767134098907561569932699552104544828415237341577223712397633506924110156936135624814588584036197806295613149946350016377810104731940959019080059327588969260232138341434171083752204230398403267961244983666289529951055028057818909843373016494237063728696208563823735420236802869975161926265621080056335243566838845092618740123108329648431613705690947916823867897584139641767536049184188015747911841223119340654224715374127685794801728927918364078575767372894063237221065212668625203156597854440211891119294!
 6847877512742196693395707947821251872041662404220577505479741760807343
921
83018552263837250539426903173400527200759633926616511309980104939035436455181334414307686926153878648742115505009574707483932725080240677256813688734150112185671133350997368064574662476843145548788401171487257046485674613575067939522246355562911381318684426426286979180071882329803999575527063088803518962909818808819995022820893990637961255245717998455969959243372662093945435839521867760121120880534423935584714876786221001333732022181289853607898247204111516311152744259331694821172892758868764885623456141287301431304983610428592102310854997156092376026970992634786020258339681235743011359497790640874525635610867084656167850766064640495720853108363901323863022330332565478251771187337295890300225133879893381124440137507695093243776342942665071469415006735219008600888203181863382969025271424670180838417398569937669257634756709182235457839998112479226001134775662692353371846136420317770359573144596149766300654463761497855046387235611928717856526741280957184834175174144328607203506!
 4662662467676649899934452865775916580042912844914162672563031927821806394214399292513885072707433060265539395276780734860201531038626192074921164861431986572434833331938073353409398888216569989505279813229982016939114996464529663946616422178488023105395025973430037675310633285808233013087891406146368161229087606825865304859575090697846153968034729841267996715338199021211205246111446989693115459730477769119013974615455411308992543947306008466680853714512224267387080404104724375411106002376756233947766882006583183520083573706033230911152604212637719380783710374887839055936829593707336337809112253079195333642851155267600301077214483299614682403496154028068877721472464893850283556520330769326743868036896847672167457684923997038074310638497755158327193222412159107315363765297245852451708215726366096425664518189569968554361388123537606880071174006815554561985648363508717342542143761965117635767047063399162474805188216296382983614411242945852410928500891796871774813963161566398627!
 9277932912941251147383070172864619102547102690594358044105924049670104
40924249873858667563666624295704041781208119959427621739883013260984554621343110753036950698546171082857839455585204399947111730589469350894620233735533622257756068938213591388144060100722208305305330011332808954033653245241515707060775003656844079547699496971388109502590640347442811978643995933200534413363143410651760656928388798448496672634378452780030583047657124184463633829502559107197645338009544732008477811196312353349444039875076458919913961776207311488252113806164326170922304023105403027071971783283844286676062741919537440878487110371034106111796618188809307993250511163254017746693023977663174521221992263659415460832419065222032952594000184808645445337047963992655182692305860552619803494195437031957404446173500175184752774451484772080090264955863859474330720618584177394001413038742307639270694857914007363065846569303812779014408373116491299391634895974946154247676813944197372938937031920201649158508750502656814261993375442331749094404789471691968418113982041718435351!
 9486285815472586908082125597707772808948095847999004984765828436787018120720244456484891954407459610478307458100372224132772387659552366658460832733451216825622739475361675632469212970392551801184310970583477831223737858922657823430521595651707507342062756007175052771543237091856970099817518182337865558381448982103484153862569280293602145650546428745012156415618691732914495778386959748978269219428194008390529176855233991424109881231876379906410912279384023265094989138845733446182480864254371968761955210495064908272929499228810874825831918093912957100394528934037549249418643258173452819687558775891109620829120525259201415781703255026462781238667875036881344249534243265914537914533544294734792817615504808388620060320981701217094885424594231889841789928343172799054027224454357002307029832039350321434704522066505496495269109919111959920011305512415502791141693182880242283093560512463666988819277057761470426108775232511454475367213729772023542086909109393827366577902554509751899!
 7779472834891832723859001920467821925514553911349577493253866566588174
67707864173803380152322079795936009888115989974649494270832229492964955870406317440720679034217995386949232489420388272452689260921414608961624849501897813246561422926687379853665698851788400894602241246075899326326719385201608837836162283717015790982532827495900284480428630844805151640927593662950190704003560949748072392664837249062316341798598418439408901042242527499928584333338485192289012500753568969552346052115358144379965597642164838886578689379265315359361726743116304879321257249303888042894246047407291144780994896262629870900515103848530480088320473904461416661925139357829652305779623135157955267432645883910266971391778783092368080465496265293061018267665810029972271537800568464858445234479359106950322363154364807371796746333826544313768881173463482385516737896983992271665536910932279411231313617876712109212570486280547090397826127016295373534253865858849588948334355052729439096424828984384015243188929957414978173750433581416182728376701262998682324911130589370209322!
 7134647252684800487687436182839567822695556560688498252655062847002120941369521901449514363977041435103556508867032364183724431114490582713503336287986055800361912707781736890837337818788710105515879561792821519808815193591312245053205288265643806763131020734313741514805471430374712456005987572021217537669972386469637236509456004312394908603012178745883788092719915740878922136521519553506608067080785546387978293169333498752320696646632817268867349799292119649383363280553869241941331280936503559142707829891337337111721978957824980780054152956832798450929689121025250073388229793138677176173172908887269578460341020381550274183192272023724365873264002680463741462824895251088098443738042772482116343303440509664478685430275743503691439288570680704072903557716385378763344258586603984400618131020832001835154471073602327704154503938249652968199319118330880151236269057387612699610736464597168839822896076322272037691266405815496451937408935492495143688534139769459741524507513760690035!
 9571492635429203371710474625043899849186414205521898909183713077295531
30191597291068883376073638968540247455490002308130025946214960823126555364578430439872095697229095607054554943157489337121590746871987692600343245954689726553751700154051123681393357977120840394164030930451171398398785773075216702947025837091668502682217372647970981188581743494122190570581541907374434806411831649660280987860348204133292155796461562807335168477803669019500308821123595541361058312902177008287435356857648939910668754668908098196381482954551855496409804008026845060818254540084844371051499948235457059869359859756779446669512295842239647610445954036289041679513431662385835814919584571038996368982266553864350267722036621935638806582050097665459038219815464709186163674826233016231557477195389235060660083886742906098752880245716277607875000087927775498207963303535003105233201678390288985228376345537000122638388977359327534098553396353483075598466583642574058825655932869819926884577325867020096445584557686716420500435630955580286248167842000494503677509165015580436970!
 3014065672634873918268921329349580457813116374711141352231675964639034495012760473192338176964193671828754513788568167208597318119719638386184742745557515440115219513608382938214004799344525872460689257484628044119494598109546557564663258037983655569390624923709192024247168042614215071931248088495653030286643680536803815761967779941302365314310624909983909096737788411889698314711464088901272719725759508485842500934368754182586154027514793397231540381126206650095641323765226647699740080225004278351364167834558671776019261709898439273405979917431570041963307075749100300204328733411832696969661625219100268812442147985219989377470294120231281020773135361755132726411420794857290675138222289498941492726240284105443549690138723553671617461301795174248293303845706427437677630665888937822712877343468265300378642811530728824502573883913622489290214099547742908808904912205394014656971890305348906058232406800076281499782685161600633453849746150544184889695509277470754252406599866365105!
 0395478548366504420106547195620303428553573993103465583461350256181673
811
31800280875236609781173342265728946955058430155235263008253596825924761201746589718222736114197121137276361445781474524740549159852603440111412674115812383796081064729442189083544310911553508037530685736196292810516038445317808143544507077675236870739127184500824219419083255954947668382862755611188338142972860197889796179701500755042532008040360343504335136582111164723729515422501394631272047676584108088641134432302596226626103264844165331626435310389174495842866746880524717605372361835084297231970294941466145923494245935152839801117407304146259243233833988865024360448327675630782981735995658316411095158146093056515503115576136367810742768110613098887665906935103192066884300510934257336014104947709021778647083318084669795763249113199738641848833911149879825639381289478097709901365858137922000269212151964745848268492696753647897075339785353765486118510805589103919688042489119394295482631939798515770338556879634445915183428317426161010077568365883131783455125688204971487652815!
 7308216477593601717008563394109387419269633444540240533036031002902715233677110893428990003462034117487181329281341727984204332201054381673020811431996943339995828173888869536950315614472265760302320038082146005559547816999467688235380824568868179568269581158759786074241261488942294148144696577476345109428602566773475610632853524348235748771583226822967073166435421755355595995889332704218835923686778320153161105124742141333725543587334833605226515557299158243999133069567881783154856268138210414215539313652408779759231551318321865782968164710794248115213685288561067236156552000361679617532760984569433065841061524392128439535296194777467118069175211839225087430385673512006618147745648916381392898451047211926459251241687403156689145637124548876525982070301364596535638873166939071786174439378280442001047927864729134798720751292990447927389756950107603227703329541845478231270362644535095734186295728009051220879149539778183272237313089091451220599513817303553563809545727652636128!
 4782325993327109638266162931030499382108547371129435174298430578352095
35520194462037004351444775839373858430025352662398427165528427137759448220683061238333988791379844787554837686284264706022361163746795926633299723248346413931234342070455489934178684073562518998936599016717615328569598815530731954730962114295531988478491252921037451162072041520637192139622808782938339704606732773290986371254379989762677244124615679186478489497561372782888172434334679567939979463699716253638971011281236596767883586023447132711525317136077166265747744667418189816429793180686533665780561079095037883706798552802292354006614453791129892670247413080083950972688095937546489614273977944354625713049009980265505271822229288922112063765359795934868549390034169455359522483947840857269014423575304905529468106206100480115496679571379589762274632567760847324367111580928465037415386118983001407672539127838122817188117123224359112691859710877787746426537633606126387825717353974436199398748388574485999132397593683533213001395457037358983217457999458376667980650508341978593020!
 3676313765310957505287034513100304844870413333730684091389935939855895324019629915698814231252258798574214638713772624097368334605632698764191215555938139854521815702530881857468681724364261345306534533579397043581930249673744616972576211264469706581944538942202854304702188620431303376375291813995931491495293829013973546079265155554834467596320104168727558015252573910934083398373919803791583747009400742055224333492248087937392620349325095369633848918495142388615077815226329458889282725257200794769618842749675879071582816519073085614908871295976896647369351404634195374785911885779174504318226526202023950452637753656233034444396340103841348019340527587687591325561062544789209508332733605309357269497482341642248680146711127048839900997761167140294972266169788208856820726180023739856273498545981053287476984502028528149484357211997704292080649255715195288924076813966046876988795648777747290672974563804112128970494896076839765173535007476361536535260427949362250552825942016580197!
 7047178659222771685197595002900220456361369249800494761864150112839637
13617761166100065659418454458942399194118695146231787410221842842398170940832859744080621767265724493230996482262833699537137058595991923116361270807182022161532366803482094025528368309726283622681099796604620860541518160759500834982076783562543497302983031662759292448569586199480556353013164680124814060393998246752690823450510694959056602887647366161802218673935702727408334281514472514410833464512962251565149929512199909774082798777101740052737590908335290738941653494663990689280982043099162152407178342134770721145085743102092939521542253038799609713129922635587502620267810467719062578577283078773447613611267938592479330958727340021459145996772613509080505623240536565560295352362290429806816210734891012523100896717767924673798743762484018407076287514624355535299612086283790460562957075305379350342809285688240957655074245356990411858517497545581994957281164306099454986610720595754809627610017082422829954344441691798172546310220565939779241025353696944101388736032815386510562!
 9212794972375834542913741675228007169054653567976985587604103634717700712702132245506706333650363714582953376507770952544757902564709777538422103727834097253927934162411833801153383745914112993349617679723650404128375739765591534180014866109555506133135703342247860375789972299997473550966308539464672672762880028722484439896856626370889066673562216684139175543079981285371812066738487762261778858267703218849141075891575793657633733057817823680371352356187761732219834167422826502917556806795217729731352926149390886429220567297264876721908193583330005714410110953584008750658901355695693544924571574448369388662493394096344825798742360821134572478695533020297242558684524214125646287576362772128804532926187483332690129675550762406412220644633178973567095767509464500491599084417333701274631904995567011988178887778240463642516846065818655639340396541232971953840349588009073494239835852589343176242390370672926045592185011080928166629058398064923376817386979308248344833748767394745506!
 3256660997349852514548103642829030536731215726639764394551386869345223
87523898850271135210213960275607287343468049700096102320889866735567717613958614148790912919838598929754021748007998570457419271631391089143093553182875056987424565904198303702439838126048209736460301485886446240754124694471759153925771093409664333361114803460159788931112548932875931176698640579719183854305295272834379045395779918713840913916717565200503877602163513147230408388715928387719850852327571513486269803198792273182137052574608820345777418160723630875327547715300788420448626448928107084281810102316551080554001684050689307449808701537970507521248530870739199507068264639526245077336469807872758064488232746596429251778124752502226055291775442257910940072173060487550828440952551788136670451160718192013073894299157265381096115683597298256408851919276317231145954965772889862683065298833999966064830198665157643795634626838078167376183915808762669900492953301406697904674415562507008458200846787012061120282597337219820495659760492341065010855658436631580922213238441075231758!
 9902451390437016359452890838609845207318423940134449186269578493283062575381150033268708596014708412397856052411529462149603759984790599642299031646062337820858137413194462496256793934943640111777119390914237970872264628337950350303369231703011205740925979733479554599166735333817266937705679238031027517209253027571856566736063670339496255650800706405198524714282597932929890201603639988289298934470528621902403791315604846969999903256734787337039230045207041509097128764369303204396587866286241870337865505070564612698362651426369503349185091540556057927059363460372734632267186481575077828710432801831207018775762174689631186761796217888629012301336914080684153881565155046136345041523800242372749312313948559587640936935960934945923708613600037104550401916858551500052659493285079009270374591327167114714845431685879469698696302677493784324609643271685997396967885091751481552330590150130245817891220063170597981662604512203294808532578300042872752599958074789635314274377244587883968!
 9303171680574182588090423581744043101443287102619092006488319531411245
277
90204516418765855187105177271117475977712574237207985308167847197901120051673975544400584462429107114392845551225765903106094719935744237902598552614477979330845796639198311668534244393770188273231031180514370006248021897350807152028250939586153802268237354629980797041788565797276908123062389160684648439340413901388539555685426702567313012204333855281117810447258056713938272193198607151853256895068241375797214547467081305969618206691544403901704809239287006049963870433605686196361911182204214641595174558735079405500688149200115692817502513503933506751345887860920829197416823318359598534753110051076626634398423410796161618020549512297017942824806603652883538071575136777641597156016246209391962154988119703367120153775710646741034583912483893985493973745222357034334509416453298212501260962536465425860836952084498604090185436205394474842973573941613275035341381044867192538002616525528313858443661743885522644878798304288072936183441023005655411326127591296878948534486136677506141!
 7481759279789834115899262057959907914345943059089959327976063917529591062346968215551423318076788995750834412893804248115372950928666728219970921337529762834915465771068323812355915017800845810391945615054657896360048685079366634309137248128132849896023841075822798812617142304660776312231219261542197178161523713372320907789775589839910999664971071855878373845882144970790113019470969627324025704593978130714914391427736230012159343005052884932296934529865364908254847885063723440468206146317483497160207277112402792831683349509994023631949997444895321424403301152061855286107150164161640189726030894140334008535952304464334568731438190170979407559189336575700867665249285533488045480504973778062776909429505955260914816885512299399982459543235268308103285904393482863954641315538091679341282082959766709737656501829823427160238985085289945223165126151277993396483354083865833908068389376746614063221365676127658973446618827550324557783112705854153085493714844648385906036073657186483448!
 4037908562061045768658799811648342998905894880510436084183240735707278
55628331539370017478041715336021202116799118677512358981503102604070515481536795139839794146698642038081710088462180182472346804775229431294503205902214621898720952588804163402690697187814613020131054336617074050916135671322473410530863971353901726001833439727372272022466302944043349821824401119223187880863651117381928383822842579032002032521261475790830555792207131562061898952776620966250692327658460918038290616002603227277274969971058491281333580195098085157104382787238362965384997616332947775707990157976204560761895582585198049179991209918989647657624848133390463599173073651883151654344384351845814059933980559983796629031535012882298815723314920496528451563384322660346071363693852962389676485179693184359844941935713016983296924761255373293579771883915844169204380891109061411686380127123922001040500183115369318447899561875512458855135700581278578417392780048074835672916308375808169386238453932841101350232492823936641664283314382409540865924456358145102754731669766817032803!
 0461465940046268869176813001530894349504635720369237797254971784896503483623262773451818596198407851944489247303088651853449280376199204053753902017481126835438988926533888123537203840786615136190259165485256926773659812160536712606371121476623530341664459277691794966543740292296967597218915164354288822131420509374121644681126402297378459477109437808404333748885037673010830584829823858847763343979364567016582609717993783174123591792814008843836061560082034652906926874675550145979310064870198360982939083994229526302471637086944858903193080769450237643110573810991223678202776004880247993748654414202148703368309864529592984077937812549856205407828177625194402407381298181700361797726133008776313492001057315853001953053079499140970152056407092165724913974353263685218802302212598049125870166041081513825835454320592355248983606692000477688467004504427921392800286637025394225053099845305183886169528664456583067190946178608965434365691079205455699485793751091962091785898565801128723!
 0274121971729152453542236098412496466859127069305813516989112989703560
76916188973533301392153837629348278228595012801089185411328282805074072368297210060027294889827571138981475127277498121642228631428964952933461028517468250331089762127555190857741682665855935694065956372787336632310487864992035516275876809737390348766803118158403596276456994669474753755056573007097515361602071683913058182275637671139869140395700029286614289616221351487249689275278892859529023787465437798048817231406194875135628112102778120398296403001287852213273250981945659560242401015300341104579838342591775903837627606790673876455545550047593097531893588171346722281812073045044744387663738980536120415923693931890155116783114176766285262302165241260923844758539651610043202919001365512666458472498125246514921692124386984665955778817407597787353719380441569898340972512176746472548491516494598722118375607805592916428590964867869534852100928051926209633719125134563464303819865823479572560759572847424316916924133653245492883941158386842431962945754728790387057507717709134629647!
 4041529530248784208322941500825666494556331625007646972768411461285207393261012154712926857086584386614226903216141298443864089860408106813482088785961951132810286710727242334518142234752453445943904275109564485728644681329861102904942033626765068814155831264091165229401919048341691544553239882080949106706664484709630405436724502799389446148927909759570081041003264979764189641778127268533049262116000771719209813784779864112664771465513995411823215323500194706552301189930168422144178558437265220217548800181507882460063218669256668971798138160077303039810394013209061939865992481033099423706138089044249336161892126379510937209625180479932675030099601592724093215221748775159836008621463053853299532067784297734907855626520144666934679125172692962893014881427704901333967546833297899998410122227742512825116660119319124385899112981844674746737559223190969769120426656874165565213191842825451814627231766838753678917732570276047229774700578831636909998238756435724238771505656911674282!
 5560995356575958466868843298657577441731642200887098507323243006382497
82135023272395975332303304034342078362762292436908945640408537698493227697779329240388182732051243155732063761997121014413469522330143850075720176502163806663782944626455770607392452341637750743883505061104450946011407227062485474810127743239481844300189857399780758233284548212612078560773184023094292436368396482843188816071582659264423106126151131464333797150083123437089927229982552962505618638054400248997338890834138027926410627257015313366681987032021432800660652510596736585843598581686689401704662523928850562137566252846051156148666864993127668375431929473378941568567050170229096838821203544880754451621027228031986215826938637009235302321942314149871737172534988465138026276075550331003401785598180174929034927115045472037975635454939478155543689580464491801293543629668323336247946570410120727424343466941346255906908028685921202674076413501692612005277046706133700207905524489771036970501741818896232774058199622391142795239317827658559474227740260983270489591187596126558179!
 1979528355390071530638996866143180637980356576970099859704169921381844012601785581576055042632826500856695623797092574716612302238356413819035675520639131612437829115860256137489038117413124957323303314661188935127895605606332260023741947245580419350951812839618769536495485671169271538984998311204426614040010202346555162861529396679870491381372525648217680573801557069305017697602523241712863525854534075962198953284962568211014138963452979589928362038031120905648532328407398053228378858795560394203645788586743394433472818059894783614962175939751205456166687496165993525489502595049213229138201380904300771576497822179096498740850505505087131176190484677455343902417905806068176052531099132397910377523455347910974701787236907912106110715040974799050967660414139618503271754599920617186424127713977095367376564547839164203252516945189326177858157589811926751621523216046422727248560087663568538253315245531598573862068343603897740059866876468837740762247549958133949789284015796583692!
 5802811945970005497294715905813157612596998417424947765553625051726188
463
41906528658162364261085218028891999740563378589953935309620197230660690619156736494861561502670062289122190331508030540099052285164327333413940327336150459126693222420974010407089008441156726589901996580365249620689862474919904362004938078470117727629472969474534446083633564997559386890241311658782906057990034044083270222829277690837736597432277407772305819934751929250434758172557954158649471191737334132949036715477667615272731839330053070679392647233386061565418976291966687682907319893945350392456983517234825295716107388626600756909038506299356724731352324848743729710849955587032252168117173565532955810682103827499255225302723636356143244659336667177150218422299599191618526411236653347062228901116387464319705853168770360899679688819925542098096427431846448482675708774649169450131644197804254198475236872535735164619460346368489369977391347836186761113875258903452991402843596454478776914863721580960368048132082379316370057338832160411196668071228538965040162169305322561049757!
 5259188928572443787647892479600832413377072481078477242037546354441335292871045948800932325611473691053596676214821175133773187544060222243644198222769827930836778758093024442550783123790324915250851749294812678792941461612547494399003515077027226161434343269195765605901474573888717243605050123699682025286963388697840803704567640225477794223720939142208778993713279438784089120105732577748624703798053803524274667566423734901673330784429004697706567560977023268725399393615189635990065714240685041206737883487125138977087051746887362972547331196128931237645720328223925451236502137722000583352188531617656594092407034540117744024711329360003697719664194122991805605850616924666568566295197183541841172281079758053585768151484771855055942418738109449715628648490197826494592128238639943154155301881579442015779677596755678833796422231169505967885775153503087880900557447234634867344649959129629753002327297700432883147954131857564532617324143630855112229683633370386138278198359508336086!
 2892241223767470820367633245267837442707713700236947113976830601499784
78418775769992735904995453123357068621175437645341204836801720777929746716980022008169707945437995420626150277109417961503628756657897456928501658709689394452286803450249768897628282021265622940655451041330938682234088399464949059070765480227425768926303558659624350524050647099035679252122362287153973627803103464026577193909997860242530532622350876168888763353182923534449401879992471337870060878507990422795058471552936331354984625547457929753888511577763606569116308355448794497769466768173472578539616685280698031003418010148476880161427619267429813015137339760808656117387567970712979687291893099624896856357209722555817178843732280087717458505112447805244966481994686022997823273001918086245623799073978948506812035409764156239588650331110726219762780817154476842985572251291563554804142169900296195828384601870599570099801327957820120676414675676804197696820636079991679300579092244625938278649866356291673188117237802175482705300280153160010711897542596442686136663241645964299423!
 4781240530415014275528081102431845784156451026709686135655022624875132291366604597403020337777193369083062822220486152327865386757243931195923917648226803200045406514887151642610927088097171626584278261166668695371497223666729557967698444864976696187229046937283825972882474572076451820754124492948844772016255603331567156061107480731706518865589903801496120343569707718753835215952434210570721798885765474004282230327708312997303989107434105252590492638980212872398407345164945275305216515240973800215660645430922228181032579971181601409710488195641493366600705584735692348388703324231147486439396190736886390503167763808468721631475670578583624910204272435808466044493115902183673220601770607638043229361481218689751624726830112237150788222335176872205716714787506390108424809905718284112697421660892591865142969678110476958574939831449768145885843966265403685430158579048966053873267408247121453154965356923177210496007469635174108323947183746237534635928654730096050130149883848489732!
 7140929333690105259086726996284074756713312907579512320788176365117346
37507072543126320955228622371350084670682795115673852192988291352535020937469168922367390553747223617071977577571989081816638937122993796215519902994204866191721886564548456796961270747084504061003663806861599223861558234527080806960370307528380493652121589587256739997328996410140538758833202489541106315846974864366713752305889947781824633519941616986261184135052474926839808199314451831853862367420894711020466149880906815798807842909699435468565750135329490887235544221943294025936088606460725181779161179491641006048181049248267513144527452271620226200093668526124662755828266328972055551281854624010777823198013809404436778236972143724231895397453624978026110462850285232828049439092902962613870164832321994472808035022970382786074954182888476133043724184094730635714760091953015181696076637912443754527817413231976904598429800471215636101694359624181052800314487088475147807024880372749762084597740401539233391324143447814675561984051471432087260159711889051690167734273278285639464!
 0892538678028791006899193776337385679737443459087899955356206841121068775397612368163561537776227794877325386634725203082981975140000275822045378222107112127935985928791088695611011356199203875613334587505134934034584260072723231974701344427155623094427679247795240092338085053502560523747030599164637229617901141043330421702956214756016434117717916991476196762469467966273501403653097595598272258037785609740262965656528393776301637917724290721244291539813952257525352291808290085398595454475536411557705029257312628883084581652154174298225045758961110616384842819601126620523945290426082490359407313773578933624022781992402145451060040327997485759420441029797482303682782038384085754066841410890680091518598452970939120836436855046607006546419709413507395072330726452118690547365609024111864611716768039839879284774897835593448833687574849794091736982191017615170100739330677496127694779030959540651860675722935779963532013754538898825547586318498586031855004773742446825268540778419180!
 9090849032769480934641139955537309537648890009433783609951393991952906
22914061011211825615808715065540326562651649047982694605959456979233001735701006015444139252548991906488635040606646082353389804416186716224885946323428034970749254833208476064941769974307876469932221299697398053621139109402519383722347628902127957033175005369967227340379903640887945559797302922005879268103227150705112810254178777877772734881258368881553640038433741909508291190380723342501372797502883243147715241254697152781970994390386014734073869754951792318622504853567193812495175342124060922044346517637731447101863042379830060741955073002760589049979861146595737543830593120194990347413459663050628692540256756325189249240967068350057710689628011400137698274986743469829975726384564237741953382220583058199991406529514229021382215643080020358644088877098651150686264607213072899696939942906343308018874447051980591037217753473831401404014819174223315828408877152838773979013638254021096089659533212710926704681354348655476781477636879395566815033576750846997138637472355945257755!
 2781726534580272202286126603819833081426775958014426006730534773207625062454944211650935443545641052039506668148837290473159677938039216971054742768721029622669646180493041032086983363888870897310264437400586615056904222613690582001607528912073139923578370953781765046723300625452782836355813762885767339650235815719349268398285863509248862241101187400457724588695896206345519518846499607608785013667820688522928197866058843724669833232368585662823861990979807587403666304763489552982514525188926041433905937274688624997411102729307837420772331756843822511942526451551112641971095695773169644925645856758227964605145413620879444544923572573762922055583820718905665575392318072353402418898091452536261235434339243627904310890003499045311594826208319092064852787485892391205182574118133267037558574778674176657654726764189774878175018586740283419033896076216457369096867893487541942062001540437839302795570115979048768241343247909627996348142445036810361969933998086975798265089801164262157!
 7350522463937643321737867898383894192225755432357960515305821549540238
462
13953830376610307888934578680569744974330113534339687282386829013127765129094964175421253472771414116634089642516281068100794014055307888200721084226649090014863620520509906508774704781134479753364915458535808903295800080041918556322678193790370031259828066558143847593299301676188618485490863900666649220991604208584531629298545165673346509384712157375408446474957534595960229120222842908385093397263704673055481103371419677371595150962166881621483221234603151618399202927990910923422213433629858258868299507750764082525463650102074581359159956551057846611579298787216255273495003710150478104749436265430282011098768132055931885253946884461602324886338524150415120807427630290802740995366155975226104382409735950811259063924274486043016514163988764662783256692555970725448694855038540509788384640686462230978876117138518816900638231245896506928752448462763567416126199289842695153449137306356590080689013853020468586257566010821625489657116928197989356707517648229102331120218583328734575!
 5357776891877247017884514624969806373739047135549697332049317274119818790604346480497473793906281272541663074072298889758697020562792329364678485252184608692801335698045340184673981174398047278588586795800834033463112103905347990639238000713481932097131939934093404136017554160537653990543968045860851148675348195362486289151494856420607357071313405522721580274594354604699324993604269901185487530542702289879084354004911882835350598422997664472615777254115666092532313249239737730190227322268273416947237461309560624233363032436151476110390268163600752683166644961434977116263365823123849642011213250931534378535133431362630550058954106131798160209420316271428146066696381879668525256461285028414120306269587810761532341896153033472951771098386552219942749203093772717410111911774033218015187660921032217408188278476412310940553252397740869689217681540699763126414429293687199311171437126922384603606924216534996103521059621407636443894092451562873312757818734897580768880503080754219695!
 2924669263610249835203600703524776770937248200357387406737875023939820
87431335109695132826399482194500836198005545347932800266338854761545474424446036399483836580332769322450611631231193263940521881362755870437735952356158868955376649562713603706565580186896086239700569078300421761921640876266606806797471264983648716765912380357846218215697418234401376413420644518184538681115365887919746366242577791395381024268376852015979804579743837003953871329770102191954439270291529265188925343142503115412239040249544186638114700234266362722517665731910926889807385070091886100113344963789659330837905615235097128227618252120683188151914178787217979077669329357832887270809932107818514991925627102233913353688365450807503924231398021647398735597535433334098171275877062487509607284821649366663176489103485831221766617356352535274478337634089786115170432200514908746522060785876981600395795536564921687666599975575765574817746640788512914068722072182038537354480565878077122315079981838168413608871759707179211211699320703208828455879344198189991177262317343767240637!
 1508265404656268297106990881930739085120847910409319119550956178063404963836643975988102463728812223351627665552237877844937493495268607653148496469868409427409474829389818898405330768736114197919439054550282121416634724850588827701117129757282499364582373601044142252073301877983038918061630292650145825185125099402419835304932878123312611790462758859959595386322943922734743333428842764238136263618195827305861354223451598738755020764612454528579375414051333999528698101644269343421507273334439235816472958302915917609000474886374321067418214336033349761755294189413078048769480628082755769596126255261746532005305017056539138256227767525668619688170441881456520638242499519183059695482402715488750360256658881116703308571353182567707843929556519762718205692512283611116751030050110792113987127644495267897959244351133670571198477031921365147434367508920980852155317135150613471952385538297223213343653591154131601516067713533648423325222863976623271220941723319936463333813735179472486!
 9224243384462806698782081062447031680671225643169946791712820123060731
81384892398562278552078223016722253581488864669089646911914439338337581295132405838980297087458270688738846927589609635304039990438674576489700190635113188578037403397815048271319289684094065123895556246641110721866110742161992886811870178220570521094838096992789708865769906285711270352656463096272314438155378619449519141653930416082553764245854917523507178564974198679107785780981965634534668782748506939915537264364427794681512572833871434416882977898124922881923341246143672555318422779167054182730015315394116883291964057382563058281469771319627916605189399914687876687164947391508314019241615586309075439874824670764240190624079002467231558665267788679787181934784307679084678028126294047033056927455037801314155394995723425148483614577940226599224250657578713212039456066333518331896372440052212426383144643627216332845981086239686625336672960014805899361528310806237050723388185155531461479441438932357561352213254809473959112841937411601314959854660535657282180597982351698607437!
 5009092104049865396112254582528717008697062570359368887185578641808452317601611998942916305386019126143268532027925719920167735515772126851154435024998392955565974062136358912957694566817310016342436919914304431793021248405230021191229053559300757524467368148235378634185613694882582511281773813470448809878567586240229667522599901272825626743174947818554450001016882828590593508309023239140589146787092115745317746933778087458535529625512984175454461016747079851392911819518391083520447094557094947226412298450688897359704530410256652070421867047214343129068885615808665616126107898023057144043726145828908546479488856955824292639333020108275407579011704057142095364780753517330057330658069231153223688626538485275197814862951970667449892748708811779933784937727421988037713780269197417911242256218457923271199970728887584477317156801985634093933513422226259073556995081738024821827798533601609106168371846524880905183260338988367292516393880151816513217167216746606665948417579446932123!
 0630230699837253416063724645605713293543295399817569152922086045682761
87415252683831478588123965320581989430505972714052626608741472553949829498519798307591261139899673792987105279181042952962199143250104522615078777249199835621209758266234409554184433359834542414858419247193017492661474290022260035280088369676450685411779745632477273358638112456140709289655892875786932397509452555185010339963198319750833311015758930924708447086995982311686878353532476400607456996539144171445400590091780311559620381688105525950831201141015074603733546043240750797986217373039611981440489833734121860227353258336392771937593981138752256183765491119708018371675902315236616637064881078330873299370062371663793359796163365857739595216820930738834563689976964815169791306523431815419107928410650451940255329358378132060126348170408785860525674795533309448581201914861629810610529805294176130109012395119737375466245752922552679056932825735107014138700568712569181205185403363583669410354010818977389393884853131023921757601149753566813187239846037264260680783869835262889092!
 3745180975959588312490075847135223847263982062146229930984676941518998087595028171503889431833772636643550207158216523847924610757980784203235014917181036798082571623538999948753925258049480101795317063364993472931792965883709177860050655799937113693306633556987049634064606053114777590553225682239677888017317932873481088934348070423654210839421636899929879875122675442222076388475730926468472335460543419724532771511639929065333283882810549466557683281372866790109240872336235953175340484031973928584990662377864195224253362054364266398660510361967790955556369750554597414166822929611363723122997814186796016327498095336741840291239968764256140419742492254938084479828077409955318343468448974958292878452636849911511282400301774529431958982068063679989101751973645878023040749146766215624688288722038035323750101735371180517088473900376298050267932607397706457031570725556370144383293894068897324629124627930417096534363103540502361745021665242391137950824197334556402037629622774636479!
 8769389715572533581302453243414876453804748420801962958229700490005252
880
77478463230731323846044116616744031446412218260931645646201139104404446422590587614452352283979345254630946450135384632833115136977658341934263600333614831888904040957427271006755604541101966704992785536112065600993864655241246664859127285074668989444926426828283485752300499550806015873767920388054291118365657751220769373731752644633817911446969909289379158080386617190603051743214327752154922995436429397753676822543605574794565748974029386165592772942669692009579479133839190259138901825389237307852353646368477287739015257491666932575014555598387104020374024393826141642830291135933085640194952325258699023574199467595535293310277577477914891543657490178840377088605212079655025171120459342609940086406470093295579222832854631563053868729510457908843336171318399568872120169098606854507796066553566628107648650788588493404173311880445411383318743831841838130235979715544568417085859305178402307019055069438942575884312634087441070313448149997445415523137937203977245925308038935047230!
 4684313732351902042366872119228991744172838081506107613526018835509301558768727285112899930155020615874214435928364935890331395924059028284114330242906767582251156012068016363968607543720426640490479649467659029751965680252378674151329013237676092598023263085376214228402958290161489134096415086183358717156249095540577073359785940632538258799207374339903360689703506289530436400730698584494206905835544701140086231972888893437523175404545542845425549345471515703469235347836684892937748920664882367794775468561962770674744398947976469811278109653646616289935209625934543799842600960891085083200727684972835105899032214052670493122428851545955221537332436558628947890900768363642986196512907058402131688880154428814664204059123064901709042851722001646675306028962312345051290888125413212661357318372923484757456622476535392288814989844305795847270039910159186365609243133978797065258877424610758619443677328318315716231455284782207849576084993903561548509537316518106486837883707271585453!
 7196570068059545931709010115084045563298538562793442959418553763961271
24199474611037332663878251071003320355561802599428999264684136538349052349801881187134733538518938929877901301320613372160618063351166401623591546758813861311526526252576613957138079504907845708211842103913790392046895886857984955767497327372498424439694278017412231701681999250680248652356341309444471677624472920873977267484995686142616897850222451736449380753076481795358989888504518470765471288166122136654644402386877194184999025289589612998467595231165558824907062926287938579226797342428776458993122278571453432577060643831488011668286752754401516787356275443288875372618993365990448931046708535648704640766970311960894522590040866066169846791614691923003235326860157972922056581530285438790215141939674917087069857066699923862735479274797429066266109752917473990567084882523474413307562652234854825995072949140377972950177740904506728388902235238179213312441855655002986962915454678457917636711887593411999959389895062059887440704938069620211752916726560882440476605358346912510056!
 0620776496101631073507474748734652501554290927116739183472659646563873958912582455096572723350558727043160472536924146813431737616223460831388961201443449643563319648149203993785066622941412926284867009066642359743098394646706105718807146518108545327950201748071230963248503931567735826297431183446246077855577151799719852557771221232244814453952418288944841672191701500284849315614000315216387395303283124642308546448713245633756244728800163686234888378755132773174159110463242294094540588564986531497995593122373876465539013984329105878721689376841149438460612040790982222902728670567804947338814595222088969903878697281253566974927212875126724688200051957223730121689831377649766106928850259847843932324815697114289260148931801130407340801671382971452071880597781823500129258682320713239452393416439208332686936302399501793211369811941568140953391019584346787846178375038140685222839541231872339121708378015680037724333676881061220846425170547458936810380491954596955791810469708781361!
 0364474622507157392094061059275099784297995220453389504736253634006987
84602786581294692795535431367431926981390454530492087046963934654569737012400915137643777794975906349726216611984027847999613024029411480487616380826952877296505826090003936625165245793077004965742312626783939373485274806458753276604308150960543126113407000609534728992157445493640177136605601948998901005691755914565825974274023401704318118917171664234215757918219784281098000071938413573893716782294580335353912263301686026763934262325565668337429684543297011094927295505348711047048694586947870362771534355558666657828165329067414142781753510385210650936845009543665716620733970696842846723019691021261243636830476005679801389372427407396216075334962059475220006410615727177567344520845854439576710191029085630210168362705664389216464916622646210323441070902430731973916128938994308386114582281097700589275123955892475996002626193902571906730511994604785957852373072426254292812695693453780398490622658552358549202714259475849327276964263934105345493973671040495805615924325180960724741!
 0511794158578589948529731288978198564360643498215019678785257289943359496777526265576339106870720513111987673115622107372039002742693545512801030310744914872679924607415398510261433750483310865029592878036937505495864432089707042941541040558455025963860538295902923532659804669678687637215748489132102530042296108330469715577152707635247039140933434688272810447534973379557119724297135180791793976864789203375871407090421547740206181294771984726357346953184445301467584829617924919228533733045245265375283416699163097618790774366074130859013800505583038227468996363819083734755434575943451415525710047559954778322185397160843563050876533233496706885231767404048594841652615176686859800711383746735131005389007959469138726024941239106067449024469974927481569887802087772969964117922348094989897295188878012617132213028832377614831794660019745177884700287864050250906262823053919098467665086965843199913064831069840331440307081598469000984756748643955319204425356546433128974964441995245347!
 3883486836334570274051704785264765772072392585087289285319289671837679
61792963811549373054332106868109854076169794146378572387072256865289655166542593144816033448321107085517198975646927481813742748025569685357943321927882366152936575887536257987825230811011910671266170748950951372994502017338554355187200723798839889813580342558510083414177947523492453798192370665122781219574815614193781010459155184287828591931454455074525324312827516285049499732264480351144538281899488538362689693162402085601507705122362437786809138090291593894210931116352405923086460696717107584154100827734030038022926748267608687164568415431622133132782964671567316534303627612593034578993935906647047238652300733863460661621594045502398197728493098312630384084444652177570179323078282318097407339414701230839197176870022340166738083978122962058567583662503958380613971108780664570361712595867875846995077050789388082346596794765054074708509864061437063572156252750871329392752772821014687949231086043185483854818025674412898258613067958984946857944551563961654132197183806864344372!
 7669521861947521377564565341013573379234859213088580100405696212488369520660448668029202378748627788317688166916228058467558302203707555058931662392843303236952554738819565430613974968065287089465696104536640705087332711905607840392763069781690409334556949030355213806409446381921423302087710129262389633657602856342313149277209139939913501926310852730777018321160720276443261084986287070292852170819378848647592997030947230740363824687742862089736377296829308226259779551330243048548091393322209486123034710866459813430494908172172056524340602741847110200656475230756455256847099808418901614122099108630660830613042351021449893256511731456567788333693220980025528382253648571825109623642364163106874569271949387361246247114703443019587491463756975240039763275127451985670453030189607901837277448199420612961929826826308047498781707303740420369452416238224521067450715318068361737930883777340112482634413365504960470536969475258897294424894688448138514923310459780169183923648340194238943!
 5493792474486137548401235552611955911966366529384553571990209861274804
280
23462810724577572981501465106619320077786309006594484728548829832290486201230023759173330845012089351097254499675924861454817177249644832585630463678152451721931282253913613446445505048495244892080758901714763227929884392092258616744669215388787680933819901079111849827000780517407549521261504899506362229894556034673875589593787708002598414001171322384564081718467524137269322608605509497672765124474463566656718694850243429324990558868290362177998521390138306769328414175765822341000668369043855973892681526763843592610076221611616056809863168723911731308840597198404983012367898038059123843272293688834403365435643919431903102974633750005083051414849399696492324214807227658257321851276589280765298641730692542055880881452336571722417058676165398948709848103037393642649506574026710761081280247764122419367807639365250029234753610714800283410754669986106471847992729340890970424532748119187987613535172395119161968503578755285215871403751526421878544419521890082116327575085368798938797!
 3353177369455397860650573725994705247756680259165123639373060456980107253395465304863325504591463388311829578844998094884825623493133457348578365166746576493891048885475300429037300615021908248059366062615981618710259863714047709172385338138913482560437947431046351486579572473328655497079635454046938102082691717944588582748374675086966583327303907827179894938540337033758374473855893498643439454431114360819009624480774572238679266178251088555412301176162357207035903465587781944253570593715153179023384831517513057088172127637936627328877670952844507151411120860073386529442130754152741922992323971881861403371018399331199097012486158448346247581371238975520088936360452421548827470476183064143180699456464364415906513038473644819665296396560999585630891556268714640283449629895318501308061679784366794715963057336374197149362745871335301596830788631419545582019239660451990209966808685602885480588765142467494687335085463773789854419462208862942601385774880852743260412698493133040076!
 4492507968172371716098770100078381083096090741164781455846218893264728
65684069951458144109083703286131827685994684922769017330863060168726347013215691107371518397734924273751170112769346240642503799851361207506777476999836843387531962601466132039965752992897928063467980564669310529491770892159158893314515292649442461637713805613699213972941030091697266526252817877111817023987894603001352196382027882825193299768430593578659606644416800773462485461500931796416357885489714072445978458831684915092785822334515846685735702860198700047939923652192140115597283615042082774764951748395819875363544347687402445090047304233109826843362056113926843884525518188934069048990056984372536315030730565149801361911095089893557086429395031641188682318324365486486543940290674346699933702420209962029163105797129643606307673636334344341809099885311945441168218673832912875052721405320611867311275246950508459631193857088924592043148993038453058855558692910439061062388431251459368200485618043025403356626381852655265907022274577556656438639495163277466576329298716977792095!
 3119439955726913114209550144495154152770513110837618180868761101446700104119258244645411540231873789097852967681610753053661181920163677861829546485705334603727912836685139231844415445170016716971594849810270477515874987099181685482994156306049477089991276113148946127982469974046380993297973965686061323301788311533787252507451563702339191475535143508920313826655412359830101082680616906809524334501609755248284661085399990649164966983309764787669179152036465323646597098615762642905766898737793223105071442519488684981711823350967501572621297859791000288174222443923138674964034342514467099622035336775863228998283947695153020230706133793315568527475359526573650238448304199021642730593521318545750416887049030826478576723645667176840281822918907071064007398548606851173433567097263677442007855435638370730868813963296554784005934617243042414851766683007239576012050897748336447257394049031949487026822936411253634489546098109063388215589538541494323872138113405041196751359806069805804!
 3397326297862630669585126923515710827516311551503560960530986996168390
06995868017108134801349017885005349971006291391796992229189068576414810158031937708040036176968653620276856208124461988175150714955771562900951934580030715672787287613845457155525713470617924829899021067324661268790542398191775223748710774896481623548700404789450952839874885817474929496428337025343745773365001533648598990293710831014321161683802342465016295679249093706419192917146175202138913747393606487320479098012818462019837808552999012641619284155869986658775621718434976679092583489767874426228155234111941356923909227443540596054714622787873500774710517804993150062103226870026207719219086562959072130555860057347253933244862061902194752324299903617994221426147024646829331424067197658910335655499324487577858500160459928049049292970406716054803529990482939982278481531376660515926430721179770047477084162503073548055980640818952378058987419590711762218038321434558994154627253535884787989464598069458198033873479817145291306709211904859094156609790945803812488041423457486078083!
 1624049564135888771397319924118126737867119154412192835445205325429926735474874825668574264320406154991673221697961414287172037997138082616093192730796471775494660941910838838229182040286174436397678970176875404489359362551938734921656973416500800444190926251537340332878212755944506217088537600277950914313158443379852075112971171840771710036247992006084985462346659012695115331170951075144993519786343986134333984875137685863243425489308497586664346923394996698003022040742481317858192651977394969144954736403936066199347299669778624141470992434142520109893923322809954581994613607675989894825867406561650629020714639888401978293646832020590018307426512402651840775859382020923965586723681606736876279595332996166611130135577440019530090483941502511093775364515120233957857786043455673135419620944269844655066866395640307278567560135135529180861674737156485911100717660316408407116191815254468253060025727248419754296157512136778408601118298291099933844826784693450833602209160871294303!
 2223414006471735118989171027626905121717530907263405604998412820838082
69213045406217271310693538725977070288928373006182045797708796247246762540435994207837436766155126507047442884899758265844438964481680823109541772383373945865602368618354343012969270208078835970860148564905722519445867711926540345891282359755787259775393412514426173739298510620472021222362817605889754056806537084828308875634823519603123915931715583866639072585578826030011669055963076699230189044027961948103424571082988532869519722904169924711080586789320497298028133457753839927266375931067124162773405471314966455262344868070760845711470984087329256628366682877806776606241482315549240523290745028404543935182153536970272416764034508696123710686764561158763998778544327759793419038743771700142003860009923793028131636800598977044408896397310254412142611835863862716072624038669471766664328469226173307467818558558529474489329953096175716577496841893959591548658285311626622163314524704426641776276740830052144400445020103719643311903802095037455578336965819585963084259765130784098918!
 8276752866253251736778380338335021109374862202597493301358299470213624718119190420673320021229180038232891094000693775966065900239467640323006857910741687159223748820025675955287581550979173230363672611222174534930754969241714068723981797464609286779518202527355188009817634473668502390892494956338988862541469039159502435284453162339131926558268896542635753138394293932776030604389443873761570945459949910338598019931174313182782061409738086524397506188151905272654377655576017662800367849101254523562447069792893587754083580251503659722855520441786202342838202202499923016073769246714602744109592130574333487453792248364094472398680289391405481217107297368710707290117213031799618077935208586590854313273247389989731048477022156399188168201081445066717671048961281241459235976860728975883435803055305927350271132300873049976200438551008470800062672758957107762155485716698959282731753052018594057931224802737849927683189988009070242647827808702543961318201229185211225605157493957417769!
 4408022769589677252111855199684467048988947117389189354362802766589098
351
52539746689308213842391783336274156250747906776719502601692850215974327911021792255852021084264347838757585571884652686987382039577774188818808534597790534727059168572340044737687165748308897767539055301668051331044587701016875959528209199739877620209330637300401497034244657507668596790071480655757574790238429786923119215937890613616764736554991212362198043331047934146218363818161975143533365923588245165044114791662668574828950106553881207414313116156380150447994906019464879976776842187204766828531159362547284652764860398572926535327601199432135200004275910534809407887527705351521339626453310336993603804066753524256258150143452268826515363826721403315851091997728151253214431179260034448767174814291179391758388643083409338439798782248344587048682117156848990509205633583371642288423316312831066738659836900078541030979482234401034038735577921054287181995150002916478892177426763057290693291428152388526464372998648011807533887762686834787284670364069924358053601850836388069692902!
 5692322027544206894419996289433920204169385886169611219283505122803122803279551756051069671652994918104645470513860392197769911627956319197360414804156000263469695299376123996420727706873105487769319948017798684407305914091067684080273916690648300445747155333407710367127685577603020894104818221664550306538969002293661467499507812913425739376007956940497250899727411493344206569490341209666411435329905326791304993595312226636780077493677539841919309891009135385858207186750876297211243819864948760575949204539483566981618997422850127683444353691700040454985684856205556170039238067856175604144715129770902864754030959657930224921625965155430383616195136254110061772776107369437232027569882871298020619564646912723826682728305252296149322751728640892170464246600668019339883526635324414381929978284789778317007607785187009439557062756163876672196625851307364352366437769531156110454469922311498949991226295735741716120220219679195972186305338598067057121327190204642228319847066178726492!
 5926453707173875977832673807173875385754538819232570287265389501176141
33839652209014722389233618026198368605695301153193940186737176916163527679049879769146094159120766470355095990583398173761664511107344998822604365226695421446736614236181318632165228676150201335130519586583875313992070230521503748598375391269609601803970359770670217294266856954834001903573456688598794051588944780080670862472030606337442114899840184406538274242895240328535177576416688919917081981826634697005855847784481338912379605087900132597904798959775939852194168060521407235344660904773650345919507667322245173698415261694328358780046068688120132503674649785019803397433771340440179272714824866596803433605436447763068418518729072179762164053623627025674402191051413647099690399789377698001639793602532723389297687960343214880473600292551101438245718808540118540677439836142295016554859599394982408633423666927400080818429854884750544381128855651038310496054065667139871211972135903923083948819900672925617807634912670143316450988420983950286514273574012972374682377097965564148692!
 6492859368058494517892020103918228752629583052534316017370602602251873516679045987933264994063968831648186998539254600728230316691907669855261761690961357739885906937471458444511174233777575042839177931898160007742558235682572783159990520435789704394790280405909483091911653157417178111572356950951813599634925744096650402101052058795722279740307409233389877128666877377273818293080393408854045534401340218202418015118732086162635473612227525683327836292325909247006184409135510676427881465535496640025267829710943653548564376310759658797821774241919060180790441281846398808830779480408169586812904161398620356089727581590653149186031570561079271036067465835531984976075055156558873953765696068327258824482314785657837674661508279867488795599289005058228943532118738842679574389356041152182693570702868037759861325411578284518536642364164435069327432544058553905399566123388014611283380967755568775734097608445902967620607509981862520828376162950287824612478372448507985700506809258503380!
 6232868241269645375161708402774808295260099151054219244701560667707737
94814149330519581569718027742716320222507433232676743739598744076013034730848727743638951960021228062016295770351915194691796222396240109864023133744089532261805438552370633245751451367098993439126418112871273986404306135637219209916098425334358123005915700263175633963760479413861147962166787824235338020651828732169504020818401612984155526447468069201455524608851963924658022440881275261797124144124350064822296251639769325276956882626032484652938400189495174555897355745491662941236252211568542855851943470254252105329047464348149933476450063536501625089693913264146340949798856045983816838349732243382810254550196829679217058210192266861065927388646115173500187850898428134469962401661468889812678645924354915131659683742625080870789635723240095632401736887597982634441089654970552292875713797481002526781749280148185659713246573938150767008232881389656307078175825679617650901634781868866613852232398080758086563679842798855195983211268945203900450684112678116347162316303225370157209!
 8635696633660384176502687069652493364801179750472053783241011696379898187210589063527073823087777064490202556437178969671472614051760559069923916084879932678644124569775370396108937181308174903253385445168875554909947076390097650830451848512516657496826010246253229334344470539515212471484540084409388101807167198120195687102198624433378988490828998855865779597716880595470509607760381285529770346659160947763325543410092277926157438721667841802612566687726650457075707937179036317525681754148254174635322826671041119278546887116489846143790783608566559397604018995005145959542444349580823605335250621753293245273251069069874972002623605946239330767554202430879949390323434739557882931937589608589613175431098174021983808694643099924479799932986538071843577996109822800287813299476958979816568182830081728833367107760199178421858663182485104339049367716967613196776660183656342214111761820931295140593628791266655383166385803977374728590258505375960334894945799074754907481720532783545520!
 6050559255556591693104442758692906742531293015341648844550252921300730
30414019657639938681609052971919799541494693671445415192150320212770327434914824862352659285771097442068620182893446538121380733044457901291503784039918242864834140545508252184348940003267341141882469990594549098130030931245744044420427311039619731765930945456388606986340174927991572248337436007447135713366819290892815352344417789978099386052086119117898323344482936317259277076700984294878284408188535710926948985990731908014081651036880009610732697717880361032093154235706612457264645006647582526585352614953910317245396524662005315874630794952664304822016759289546916983748100991178827624330963511574965008997516640258830849717136805075046383902201170460907567904029677200945220361214516736404849135020558662257225037880257291247853670827255407337335662005879311370818978436266728883418855682173686933651959519306136919682706152616716551611386891970985356642193106764767692158857625059829919809231279490929556828177669008476266916096586130096064457239268427953363189027370327086039891!
 6463082598315858382620855549819572655282160191503313297598516113377812223450709848188597229575289159164744222562295549774124416041390491442909422664943507910254338175164884006376035226171397615717206268720707800406821418345144915572687533367134743802024083049487844809429811892577463710155210693138905551134946873114130973309979578310422879523129992690884612332348506979673083743370090719640735035812058407105611008369604202064010813987446362496945164921510703036102160248096510609735519079235881456802928065540132254026571504228757148445263468930335280269334786584184232666852064327368732839334593369308851544400232205324862276894660092762351649188624655938949138070526048659904211453113697909536511431465048041020913371809737683998258625918230819399890563244581598876460882131580595586707012654418481095794551965794716125983694738929664644917264231484575022458079511538306624989555457254787887459351188990737977065564161481696375133757012785143046148044890033435839000347141268083167692!
 8423819267163616044567104406135909749178528118552654838313583672356354
653
89411596890162107962566959100990535105882039604992049317668699061099006381191043012115673945209871953149723240781933833766407929582977689822195737692525093088977048623131753469559088203016285657029045544100849702193027558944746955904783479678001944452547751697943476207754296961319409549819625950080045547132992672711778060707504188233002631846527981934834275674979540409648237830615682871531014333724127178702620608699778366951157756045481373626591908746540562318903128878341652917773507843806293686749140268263584584622278537775599583939003023758608655777052499536690230398018836063639257367688610126062683440112801603338595122771846574180457714041238721197327335116692764779557699274612670486579213023229226096374723471512124388540606729801531423172375253504824164117036885964401375976210585818656009319387675675297743028625853395826191539312640877021034389733728631446627185110166505893173630655514988739098033244815315717693946786929863934570572074555483521485631904970949227160912984!
 6535027187003914028709098251870731378304969019873904823857370701043387645133350826972508612062923233399620015924345386449533103636413290983672494263394972954767153896925106291203260894277074477640470078410014029663326813869958275192702265133090634955485025619264160442029112327237859296566628319131713489257060508529460978244813245792839434362572268288198519570233140037570548032330076462404365243229056179982138523609813084843506276535889400583715074666996774106896090156984576528634530011782761457716562782678595390199278035249685208196661976085447769904896324540316827140049549170759427129975719691773092951199777675533535431983393846151061993865911919919050819830187867399077535792533194113164558756286996562400847080179504391149728800817743922603692792717028958871266026100938628628437717758447329315379348525378887045069963677894672902245826187311011570611374123641229975084780014929729703867995114077750991210906740689328835302395385517296013190724632412216127012824581782937015420!
 3908281742488550315725867664986748471704911536708078871541174050464227
34624248463647116549898681196092867337320556509916105782473324251819722837880051106101197140879495007527942448881859090839247865536800989938988013455637259239843459305565895577680789372590448543910131408004721943879527543590863141765043837189686330750649835411977235473138159073777689299549082079411368621001048436535064350343393823716467890407701905423196001168522078583243967764338228825343723683284608760217188640553809756326695322241437649469642071132255901699808494835485024723697462004066281779918990432626927285386057568401419321343782076983371075731999330554732549630961109996121951548542961794164873145507316392234086939575656000244974217337077555633082983180919688501373138495451496130729397712318330939181374696872422527585265138817046320667369400735847931609347227109145341327684441705380534245269374847077762517473570971319466566467007023498384369106000688697887117449237140499261322811800759594734785522303283690948575856074749674472121132274850660484381560608378750877146223!
 4289145973988994208945096633832949533702267342384321132332522686053949932692879446346039520230793714314870310348200439541544626514495138199303349518977931836312556020464874947810660233527137166245843890425444431585347667005575059830729016327281154039518523452050425520277456723341905386600961153572189766997424027870268878347428991251189757427593312477974051619314700898062102880188971296290192234652489458276557864347654592288482439991175739645834292013146098264579023354002688465094344629371530542715710766513191356825226413770782216274670880833095932768079465321472042935054920161634804530939687973338567246016556517670582783583566710547316044916191254177657438635868990863528853058328311993083891365283731555059670554433265179899438815474046690075626935172967245389167800023351626969683792870596213053536637275341396501625788936338820889008856074166676856436826013055794112568614291328459229289765854107914044227139355711167908922763788922618182420106483787902193311833502255422943152!
 0217193671708329261955302611625363617960270469012084315762328874517880
46703145432970751566682125109013085193261719219747463460083826354627178180928034369758682411313934816036205351092912461381685641058145742228328769519579061488949712102008064300995887341484748796068941215691798574683988976926465344009678211023701778134511858121276257215582275097689312347507417783349509298305217582682379946895090513798214070307295055643108117673714791302301221060285414229307539956228235299670957518811132957362364000710255519305193191133550451252800797988878615256384220044629917222960502082145042719211573347634812870213268593800930913036803393457582514432728322628773550090260223316167233285253470367364729102203031734860910715244465588868519607856363971602024708329837690803733055092147514862894927967318216678361475169290890049016929820176568625506862213895391982001596095869379792334101457962748061477065156529075314872029317879252544517476697619748223401824102224230048070295190551276611025693525362903225666518740447895625380825686060494882090188409423679432962696!
 7958597339199226660003188358091647983305531935690327589251394128486678838990133236093613245223376219844250194722588651246672916796719697701385892546956353561497666593148035131984765962147803994201766482770003249914336305795027779977519037234921316470362777820919698810568511350345661045196610660755776872654764675449202186926894832739072116908679096898510821803953357192611950952313685607226743674080211985868742098546694637273051999818463735966864764542937627948345586652013149589655004846741715355944407313211759030159877573975705983504773374295853259369130366041025510548443980483791874590270883581408557567256398130786146494858724902320976744616117060752408521945370989928226373937873994082339348136754170929707510330636595692134709316534762109844720719461931573377630150682806688112909205864716198617356345312477193262116436612021541634095636871613034345496024956878760172426334962540653969997304529590248716556821507198476923780961899001747473422867415703344071934609148640590428660!
 0633341748637388776272831988283022119691086291913091536979598369317390
03153420067320274480491391345337184543632909578396511579347344051638992237500311653046131352225066339818510166745083255087234368992860040346487139552746077368537599751817007028397547331383279714513063027596055146506567256163150369691236803106461814481454937846179030654580295402259028240825978144798160748161314803907258429711588128181730891199321814220010457564106404928646882953959524385964492848690226233706391037959416650694089299703855574869143962987556963413371730083040404262547524513279413505391698937615645744821763623785404237261265665686301669688669124548979828310391613087253321699463831497222340866276028385895726070649115231012088917132745214272846698280670988108199208895886693503127842462571992304324386339789071671291037941903628000266828129785453096858609924210242041149162034314294008426858171049137696603994368686595313703105013106492259570860322823840355467262246445725889316143127880571110231140742446819563764021956155887152841931356782090672782805237182885486572802!
 5296769733905210061545201263716371781007651225456499899173593259010131993526765725313573139434463414109850396995961891363801961508304113547580076400753973987955804404020464744657421014492992666581474653084164624054589334562590913314940402126548141904481125353781787084185498560470572497766759842718607199497165418611800459261526819200457969986827995581440478901922919256173645561321892285275175775071884778570683500912528370535547719848096426304929821841445698333954808830257094275397578642360894546887401297394200599225985965878017370735041891655558551679583360911828364224567166494920362064529613313461532961116699427270040298136684714498038052741549808990663894386921127006620673599255926007160418348469218567346222353168224334037522818643858159085198418295892576741961940447488951247872655808699835931689462885970971469035929754454564629840632296312494040145649673146871909119193937664679004579476687520448895455594884128693158258786414693097885346156407985391549503056651650386345153!
 0120667612887129752145914071624045969590257625767070241828238097536226
509
28698836348557170379917628264365931412062834776838410405377917452505853911963835463103764436405491316123160209243352445638361435563968612428801090097740607067193576048726194708165104612030550685206083649215950417816513314348610986880327103141047006900340292291542154638633833520451598790186259056212857650603422698104235662674191793853579796984665662792226236711526102989935399703884267810673053199924107123877577411882712793266477647486896091381655081500247278712581190654921149673963066093611802050925749468327718958076879817269038579963053363009241357574268489316312085531777445616643246245116214684958706641820131233156687837498968766532323653520601164696651842648542473812114000709871220161370285673668797403959869643139559448782197880340089100376536260018016110480444575787837141264577241699094878457986159268134973631228572613476947433562315556683237751032763933508793042742753648622336960919993834330806943871814163237412222945515538992540944118567827483514247983597383161589545240!
 4414956257360118939749786315434275101553035580033512302498572331162429561035425143247147378087173130775611662965788611421910607111834087123008062568284030840279986565271920495896312286928292335676036022766641646905721886186083137289256693227680942008046874313253406103217256029921926072370684653080029412023659661998157520894713092294441557088412883160768356100625882915889864436576564919736280248836900140517396278782859799691522019624894881848377788680879734487923725104682691122653351758029133314759493927555251042941569675926933238469668699634124811495506521030393892181725009957858692270437233471725051239217361328343963942804574664536035680046535857468278929231398331458838371939716817028994410300797164898669782014989717874416906018555460506968549050631626913349972011649372065720159140908946612607302167810516428363022070632454073177239287924876264898221595409397598715065829501726046463314681982020578510703362086676387819629756862026867173300754028816192804127621612644144869520!
 1046787415211997025087518219223537888904490975976798598501325108773122
66807336814222724074168914391844722702213479109845087054504159346033091741517832740189423359838284480961938803772590882122046959684510487229511940968190824005811407434022623287346641507313735195367536529155422646009910765970576239091378648406292439545004179770099017955538938180210679611089041165285730107063408152579910704607438444726172058887439672725126945225661799432229781946490670516406790919521364040515880116936078265450616435069734657904154770029764492921056216867826653594520078387397419877102764097680219771716932245539539415121467101099179295072881922788037778410221845537174954100829990886988753174681760426965468242893099184795486574250274568790751133620096093660753856130259510360010297359862109896152935136654224548712540089939890126673538457492498825195724175947987273852800192928727940132044984965549784786803336426083768340115021495739501781306857171310063118268108448561317979820693378941903960000152287753583435092006775373428755806555817441631597040854038276858249719!
 3896104248276080958635706712075243091833162517539003903105677009182482275187696495446779357205030324719368862224953063176824640708804423036676031178955034067846268680603990045638998747871875741561097366805408517177559867394553898556725189755624656514240224300555345062832615148556143302163084144277652225635308179856939494009410848742112896794788787583183347723557019976362737916142044681715548129801768861285191046381984300005410029943409168027866449674165294316169401879887863749196636926984462809273028440714687172944089792876044893948903652421627908771401416239092258737470811942518440914214448193130486569830418153764905702565489516779288661084827311329207704966916325475378054914805381075629718121335067346337914443734294909125922912966831965547184291880850851470843882876347773986264693463884487026920552945223140694415602860870518204849299029878182200290538100533438505184813341328680553396750139526623299685315966261274148766043164709478528077517085252563428624523151310974995382!
 6604560270905201263205085619386683394884632562760911409495958121906917
49401600096533404605186688795137126500515143465404633427419833421508144402324750213801370843562257881774124856817930996656131003045366994717656869124352418481394326599919191707640449873156998759049456506199454041181558477441189397752810352299569518061751913138832620670363184455064956445041268076142165252055449750465052268408161529447069442447250622689641511942481612751259292999418110577519958995646833971627652216648124957933692781534746411841424665638121005444377391893504331998882244517570284165764046369712429365984245162266056307990718862376088551321802253626471217722965161628923926165229559333150258182747506471800084753238768321684665634659960405201214081706289271551171280086105679157764361956602329101139842533089933214130300405497631860971024442535407701184620328820259894269594350926386054149102433822927528867859351886161136416983296596167816108034644458867666176343901818659070850331284414625247774503947969537987543127642496792144852819690815628199834300264389256754810507!
 8612507098583204330553124470892963574248988104386194973341539233954191814829545807892398333768020803350149465004214835738447015592530468775790857633330871320792573163818324115768578141049600369246733095110093958203493354420566205630500019087632644577935122980470820907677129102305639708254110670400566130416395664155579624399490392032216906272810578457156210628085320785813211526567742756200657470784286047378886526583281165606300141398537155507478025201986527522920294273506732143535637088860517530506382024598560771903357983181662044538532089476100275897094747620029216796680653355479220592788275658278399383994901734760129719141884422848515147544826191873316688446123446107496485551459672060190737571442548597478117695909099753858488607191461978010871477097468045825237631576322540859721790591704870397467069698704752864575206685174826029057996698607175683780746829936293957671724915533554500667734709130748778627101919269241317421132843543134172820803359565337156541626873669295081577!
 8236433532498659694146056465107831280351230327038560709845589241513199
96101087670849320033460857754763379546547459326226899280762722445699604660447254968908980186757223004047187767107068738034050923782173183736168057830483629418591833009061828507857557637407937725231473485023286277815207276786541785428679433353077596679007373500082080997391237508660635245157664778124338075005073432714602952394096818844514226534620354512218049688816908958245800043966818296376679913780713708894401865767915682060884509538450557765859959883110939381217719308664622843774071955665014336193112542900304155113087544201115252233821981489410528407594556598927770889176165071015377129382556560707675603005946733102802160439129285996274810804869811922101594294865359326489421637793175271114189185673674005868287471793346478691124005966495096008754147253350456338804047094477908006598257015099772703166030261960326088199568235193020194636418375301602288328523538122360804823773494220468924671140094332807505448223339649100832846562810164160960102652833148156573406340392451433342419!
 6989424821026111543132406602983559445568730609494192959696114005946348921047552074287733717156272915189222753173611097600487472169202206630633172876426358729208418014122468320747193929165948466375173686066086676900090419364946384538916398621236575592485763894883583693726453825208290727261549185703177735147626648087609756006617079259122098798950737118292912085368254626103590241273684884192361808415816680655717299278404757951256578761453423088982091112620849218062667413346187243704763372348903857941744401030317238766989855815946910745218374928602009526955818355554887934141345996805815039072238191756703582374208380387246143756913971458761322877480010484077114877616098203535204450157873672904092216021016527363325346512609936037364688629786678377896791164781309439251838379416239147289541448207173617871528308083864436693389132083452155095939828592640394392351357909160736676713612877097078762353382320146731521778196429642298903821372313482219439808628249556505244389405665522371478!
 0396947541325544158371054802791531879964694825413383851822167849247129
549
07570637905041214890716085064378681508046266303834305577759642696258616127551329280785993765213986706443184815251161302581087309602367469639105776742004800992501675892779269945837769351332276772005510945651268394105424407896842316820772163911640481891136173289649468921239982051528999322192837355622593964909318886870912233450753916432774674818420675955061012396066271671193836297397068973936638994342256999609055685932480098491161052691809898860557875783970187962865477273261359221486936461672655700170834344156327752981613843717228494677775673973939310965393456601233477479253392387948184212266277690288202191629338981376770859624320657754718600310822457206591416573502923794508339752311597946704112500744243610859739112798607938774088019140058539390237514054198994576892283286093131755586091149266508604541933633419551178680943679166655915754377657926007650962421113836245338090300197514133568623669800505159791819532686993925041699676475750988555512322018499969586419243822043895409358!
 3113502551669893290115412874518255652420828026413360435867664578609964441423116123950528700296290384927381393051182383266786304739932613381063761303164741194376601328270284623202753703399854443706164618229529340522288684449519106889529844418370219371246467657352680674371669448572473858910711547639614490095799599934874141116601902330217505233993798989636258334551918349712056340403161740129589251568383920330642673232159273499532566913281297376723290234425570123039409472169982084066744644028419846721537330950873858183972315234550094399640289725843460775104178743830543813320244582175687176767739945972195048031734259718015612480834027655509402952868092278297859443681490987537023179675513729751272324116303554004053156958876593584813831297995014618772764335160031293428553075275028392871388276244526666753084266708392764948876504736890011060745691888412111474092819353641614278155887437526357071228515087638507964826193821427891592375067909750472918117126703445046139535032281150927625!
 2302626083106740434207415864281345720734276032879119254049137772501606
52791560791911839965241584778660959791440614103195109839506201996254766831395644157115134364739503275650544168106030753019875928822722066052682809659011811659851190849490648880125283431044229571936141443040364965471129289673892003739647230185158468486254533954837915166189482829418237424545198240179210874198712211455222016483152885974392752841699780597872040295164496934553458238812192124102002685911612068981959993778655930888081093820993204550725890833782054554667987732343754129374547474492796513530951536902596129880599266257311405194510105218198115250732927171353157128562336061895768696179090375820741643075127060381170838009904175921273767384096385550691037887281383283629082276775321845436090510150374810627421135098401550535038395317020010939694911448691720431414901871074046321478535060621091470226405394346190689256328242613165601936301411567302098002394349480957317460482939077785688842893424659385066526152166611212946295488804660227737429881515531806193955201262330279255565!
 7563904541321131562941651505015416407532201876748438431626429827859733080338871451882756155779912969355117698704941602389675342851003419239990697082554678102019364548845528475321910896187554901345785922896469198168574569647761630213910110007887284452588887328966340324101761877527039719385847160978425121001235865316430718644560392815523206834123886368148084295286019258697809229156031819691907240833842141429874099557352387762222377192254789776981573692687799565691556384169889202813684619113140868613971465274159425187777551529888770849602527090492369954918149420406275292115186933309322255357780676547109412367242242750792733370287001233968942164211785835024675704889683336012938434168865857034122548177145345752759668927968323641756560497233906283613467859740995797714184578576713844197433871075376398792098406841875453437283930887388371889874678274898760145634127350076020683368940794306632953487684078621451933892186016274363457115754603457521289437835060393619675821637995526109600!
 5171056472921580487426188811927540247785418303307250738980700484668446
90682074293211591560150932402780873726500454416302709543963584024368196564424191955403221156323764704948514042431823415479333932605834481888267556498794612736250548844653250072327969900725262427763994941698717088433459430883867821154386341557188550932292735760074547334347818103690822698048363096456310698208348769779304310707628994095419847272585306361992563420075830311232983646181337222906964061926274306282550272651256740108942417890729180749427399143744832017225288051925994566205170421988989437332322756660901164133707428041318647231122100902167112228751399510568150254029577931343478809017613244380454270729749182688867872280888960488492318714072006373414795382541261919428950903871553146206625603295203568831319236813072414986721366843796226590875064149053036778121042293037862583117044434389476643354900408666153849130379407929664541417029168437315219597680251084983611178434835916381104427774073291406488886860120353081195886393602847436817472904935073443249534828491308432144341!
 5491205272615246263073781766571170420151272109325416660964143698217609181330712246189779103293868263719161363908028443177280281304978837360849468600877789168600138030489666755290259062177245526245535411939755514369708158433482040459896544527458119879492446778607679930445909193937525582188873568105684108490084883991463794358037623742151664863544380045547173246591507239863457810887651867879220573365329182338099136646183434926850621020869369696658079108029488549968243279335931195519394675060241374162925498556672566754058644436364761853951388659749116600017611753813306038894685624883688130979268605945751762320055321886380945248387964412066997577381116551706742536195939718456428591636054771228215078872814389322670408199654632401511413551729848812181330466854133212821620383737043992632291621251140190015356195075438239689169349817647645927417559868700490279043825134300271891880592052135630234661332430221060499958031739594883130973120707155027014475049387905502994945841073229524696!
 7980782547552977603009176076512850470058130956651206226036857717091503
56951470259834038029917409718469288282751202909466416877346931176152952107048900645477281494854423519729444416632437829365362807732440714885879837527128020574569332678625038742325011848221666405141462252742487506608931446407885192560650069464503516508589043377292213818376328533313377032848568804287216517079469545797222398624690241192400454168254656228457730938685306556988922243373871403609946660201968286016011739171217632565270546048867611684402493412986735445723357566014959722249958834449972266885143604082041066433162234029783435559497175663060835383397434569990329381441639206470642794994890301705757539471663262843807038840541193963686524011578058640367979248448615480490153025388614916206900654193515032248105750233599597518434199080078421327191122421784800095311609559486029466520415275055041876587495447189624944361338399097804009207071020357280399371277793298698751577064544815692566722610344283320212025700864028589503363847575373845362289480796824865004542411914506515619487!
 2060844513198237907095882199677906987299087504609134663902253402290944078392919435890568442762827260655333711005580240948734225469887082831823438602663800213611630981391188132416726892315831147468518215699307255825499373046174410075300393812045658439971596609042320439633893429885944990970412701175540826735567371169455219986826296123957469716937612217606026004943896668779086394570101348863461374002466715303247274981594563697588038694605564586191152355988858293140079873623268387220809783672544425107390638845248011849128854730554325213514378397558106924379229836056006412073136071219969765985072899716211987301650595975590070539721495917216908046589047829876386801870584515787944699237125242328925735244038539926895295139503649135759286606061859673590934455571405200551516816786604227776464555446253750288730209063883501700313183048145789680935597946928675109336423066981375452330051606123308860805368767212131245997537312373719417510248723992388644718628590926578184190017522010197208!
 1503262325032569676473861911788913954847619189160440452076751105141105
618
84760067415623135557150147455734043212843418385623850913425415952072123884681776363181965005460885919884620719207964336684456657705587776009145752166918780095900200561619620961936103077188056549450112236583576132657341760776231537009270711197234044133354692468999602320050714371197547537406461275290010827824240353449669916415414007876956038093529813006637682200514608362241722260541463574200339837255958931032922443997760668552938783756256566136288723546977101306487797085754003775647629805216529588346927923495527380931416672080591665825793157525559615803703767817606289470329750620630652041506441145663499877978843655830872741645653274311828292387222490190545604467732846080299452351482409730594903628615853096914890287277302013721450697431339803251042703548521496242360995304887902676477884656737798242829864742567649490593894579329880408500909893996874812582367526151144077940374440424246589574057975095716201994180776738368055796448420845721339527599683522716703506314481350684744658!
 2969921778679863710167288412797698499978246208769865012413166901939672065606712561984818367448038111256005344182998825219779060969697957960907112291927127102308546979746062399722778749378201596974114537092813348530341475529686541697904266605763666339290883411621625771492739308453037177826803109633233970530276686032534168576659600937129807934234400443733505343289670407263557536156279640165052373869798545140297549686831135209431149740760920547098095680433859870019700129611520817013968243933476346611853035251476916385808806844614965082485702623263800736894953691747660704502171415367391772611885130100314941597673331363838881192239851561520467980755350181144765574420061624734647374490820231674322930002189454556366687575040127197716773107393422092884358450188113577794521773910538500579712133326185221308657786757779386603182203986451138799742139165957047528577488958116456647600945535428834432143746918912951483704459324401065275599750336662100542578920928026828202734899862820459447!
 8124423002223121834209437238969401098686037540848730873418911849381938
03498845481630846599942742334274115916032741086315025068056304738368366327378464028248744393970734116637243696243405624347957308851085309490296901140541858421937935988462683078138849229030965978812486072768852047406681274730912458892537641708293509798145490764221900372362678914897076832113509784934164214649083070488935689245661864205707386293419140842365418109968412191138192776759070141566286034369148161491120170561527143747873910731489145399395130987282063192081013447203334600216593123496443331725927133390017047505466226558858126737739516364530060112921057192562205316515977473092046079582441798471941391446331553654421623550171367292948161696493266993285383678258872442384699715485530714643774213160068576340115205770958768910119769563123504323304199823138896810378489717969416506594439444472603871962552387573934617346904129958580660952729689170597811122823010929775081733325426818992877361778171306467691325766650293079006807613690134624469327564704176392997428999980481971962880!
 9323569188508323933948701111682397778688614706726080560767026579974031230759284519816837830842094361236211082351364780748664130501340845401507226871164399574766996429831836948367797500535893869493577006927176422838214811244688089822712543774140727357867695849435555604683967523791960473565248185082539135937121131194192424139057889734704890815904483619569746240055830460305407699879574007914729263120858815671061655311745762644111747618491470291242017577517606929252717456021606204292432446336460357002953439442784987842939587629782204910706879164198700161511800127103033327412423340380354800674079773658665845178702174747251438498117363608425433502388253626316145181022860672531247947328687589810711585896080677778592125606595882829231591912369230137054015609782119584005672649716013655171259110007768667920797904093167242426504101300724644227523573620897043207721316838221023218666498591700017740590721306825777374232666862373882712778051003939432000334677727126446958981388087233666364!
 1398896060578000268630653996239253190931293328634203351356681971449289
42152198350917177012579343697370274854190688275180001152040478516013389712946192778213925620076272545944922348807732474569787043287961194080451178549463368974162083660693111283367768043300915091685078405385845153908251979957934133419492821515658377458286202160074766043663505703198309632863566576462511402192161129026043185844237106758898991156398021437082482984200630411849744829029320096244148697091132339582550472074491313134744665385382935012991352625230663685165018656956327530888771309595388626378817637271015448547193677259311359818570208245352092871179268294729218441204959040858867672133768022085462933685844114532976812076858624205464074800110959325120518025636921715356699303210647662825757531446672449799339579138711050971797831361867366310525030285068011147737360513531989980166558659446448773013451800168054870873156162528608692504032136652398471785050419607778490734297550943799621769677999628900490653974836137586366992763150146904513042456908195628417704015593597795014175!
 8512152902343660905329755792991046173115375508207912694855745785998197322611144377530803929299416306541805887159586556853348900302618329230873258553508704591636527231560107908493219386636484586088670133879709378762521664683677218049959750884736113306543175213920511384194463853077276011898223242638442279234849589271198292903808623926682488202288778534692992713059438351394410926668262660328434313663116631868053930465566116088504953224958337047548515747719222192244461447243754110199618827755982220952110420130073551543078132367748414925164283717399103443681303790470172149409675411571166717910800630326944711289798855829649895446316756359080077462627204481041629857753082601860361541519564381868242375785163660184610968663355654109053463460761575935738845614912625941431228903375642426735696468060799186803403164174665634214945214658225098394443495931816525399308270211676570210381318207077276029736944235612395565055368309566958954752832400070914385721578326968762385020970758832814187!
 3014066800534983106727860420475641664002845918956587044826793005509191
88947143659765937010791892172446716503421438420070867585566418801533614586536351187265082504691866425236414297790543632222501382806034207195570428801289375699108842961710299114863509889378521655992883051980732186149390115942412431207599219135623594505272753666130937434625330130464226210036428262167166886723457668058796423339077194760783490785535505086376911834471235548834023305281249729829389788722593224094120588600339627362205060024892704497756812725241364881611489930885330612757524653940717825213583036940463182128159163595959048757113658866838808646553283421233937348456325305456292681507914032500838319023819083264554419364386353024812582783893860857128951930482596926620440616654312977048522300398092158529232898286410287842383557939734522488803394429721066443292258972429099010489088780583112663748892922084323372611125133699375469571289935436403142815103453393233457374874778294945670595256171751786862339687733186346901921178596891462660526133533513639700735295135089836718824!
 9313837455842156434851015781594917200317258655110209393609330713482737737306625335108691727907162002770102484246201852261979908710520842396600409841924394569162236015265345839124838446065064285867204771006243159331976060348931145831180648815426811792233273213264688569467057131277141551936658651047730408895079379055542696784042088909436319310096472569083660920503471883524482215455432132353271933145054031067078682083340805840481631831518774315398687784935248306732810967482578484447013640500026684507288324172344812240328996787750002197238958115403610056147670187145758491017567757907729004974619571004994674629069315441708985836328819715874619331194971219801803011491948238405885110843849101233580539339443385041565416317350258186239606435294184436837532162550733705478045801106969468391050116213085316997664967877384898458273488908732745396345428746014489978430625972782640757122303297749966080045104483449244555400032545447685189216162917319282270670003761824881997574470700412803380!
 0620542063441292882243908313753959056934493422401852864891384539217968
311
84598705437935144866235303239254807181374007976143429653589330993854281206463108450398608746450372258912488481783928033314100475779486405927750435215483485049442737310877736560223371160311423169804738634096368381310259397219260811549550495981442231776930967750349631241560382988560438053456387278526993350119490091928281675656359239949789882734225707364200161745014047006000441865982348128627851110723888726062400895926031642157632752918678937298489658392259141454959300391431389012858310278468536597990993181516717631589828447772057739049718676999690581252512443614136398014041370989723933154395041870343871823129262229730960850721414356134131147260164615404502698179377894765581800975550994839325287561439126979078825649055699882277071317123473205080113078582708021255864273404520514816716578998534226088402040595910406648938891388257240521850320564323461411733718158943105966665555631743427195432904772265484030002648461129120182478945269506077419662712251902733856039029739618016763179!
 4715253346348131551696467881291082542683208458546144804634388823306042334020659742334414247839753318769547680357081570511841176008186705142830920138805444922957595032597850540221024172872168278611893976380131462882130506989499416129237391080917180737116253612549514911800609353602722617317875349900439146235928652020036095032194775222127145427706809785744981059167336809044451898318691501386284328593461940520205490100987771299821210967279983270596243539218972637322623611252908551687601820820483978822047500822575191467278494232447546873890048548019110267844258790963741112224008608252216617355255836611532434106571642644110572335164195308559755947247297490251266461050586353387201968421401967009312861638930223552717883719332041944356991431513420835255846021479357779926745516238754065234392910583375819568131050908388999293461722159752378903228937122465615747480512083600485942379338246549064495855767820963397457805782733656364901503631190003581634834174153375825597683369618916469230!
 6796972320318351703453807993092988449459422852637290534120851261629888
49495742830088161547677045995416331141267824789753138356829871241304284747231124036930697697052783202837639019539297018357499431314614943774419919637131451927445056141931639112219535405644912021783377620335183421418961473606295854028058542735591447800122996583078117112763946622944107610019099440581479923566719608545248417657890466070656192632743351712185676356736084114320225853471028250327725913101248630426613209211289055688318410195448631736406220773384028332062667426113124825296913311097400247832375008454074104943799104190993077494297731446351443541989830988634004299158862490205115523181727305564570790951326841487914206935665195034742188697914129177501868045831265137753560988315859497634983057572968860610901136163724965380371205013007669918126522360430347573574325113423846076384788629850194539450068908104003163627406335083500638537931236528740709937814073754885911326008044107060904572441704625876773719688090355264690121203254660954044796641622789229662379656460231668819987!
 0302044679711184406130306605560824564419181788163781490257507212590489179559221202851474337584746411006043497049229206142418603422126291050390227288637976595138564788839706983784704678895517516294753133509996814462420024127568699503626804646373097682133310161013217703168135207579259469637074751129567716761981142623134350798664814453194992069827890800268519954640525078901767326099305162986434493719873485212789308665891896489927828583765794501284022582886735767523508799817359452608146465205922170672596939458804392365079279016877105193841714975794416398352313134213338194431639062429147079171578957931336370712731433289639989667188392828636455286119239507363425465756615952347741076526910328573166740988576422044947055727439043626183556325257809219863021074311145754864563438484319520995063706930261501380426416605528835436122515645511304769815949064944834383863901560094022896785474629642622171522412818508922268352899352131663265042523672198211532528958340369723735576473571429599168!
 7974144480670444755857194808942586781498049750248171423577483063922398
57357540229004750277597818970903764500129873306546254318791763637689902851296478561615710309047556983140384540215172763677828951796699354402069437683715874646310678296912599690895759484492700637466057260156024482114711719666705040456099347306718781039286033575101535396573911984448158624207858054171004932676367938962030907765088693953815308530636511999262990708335200033199405190909942167681839292595393220139029463798078551128816923636294525450860740204960609209915689422124482141872600920188625288935055679077817101326648660265213980196117261455881299467677789574339370649859023241486401725659765868622990657474611831553965372234949716976129986643584305212326430278756875359820064638358858866478866613708256368572903267463315820431424259666801336756318472125527041053947335747382453174635956471912845352642711298404582377275733316377430928574464923509789089104048730235659822681056800867771823601166170413568432864579535307612339488381986128921341362262844454632462995622423202641655066!
 2872379685886791640209409569017175952709920711954934651396268245338811513822786637157088379481348379656530607972131770906836961965912891810771043741692393174211233184300390011383399000834784828062903734148415740842768081943334955780075317800120968207064909588501200195498270315145329621857672440261280898745972846843804242551784703041046751946090413132898230048173733594472041956370192397994706318247366207534960811286949186041773063277071170406720077085595420547287755075539892690593693099098116989978360869513934198644000872925832739928089603145687457633866672948461259615663791750720341981028538442885917954699238675992759492430121684217903475593032800989108457089352810619966806853943138179777198109579757570278697086857911024049205966082398647241926725903865507458807892038690076671400655377531968129305932052457837792026441535452854147343383145926862645173303180758094272682105495262609768431247799738434992879310230959296906087208664068761152915066576871219284792433775049892405730!
 7475074435900083218513870803998792614315544417222190224085156534304144
56335077450190065240275702070046590637585704756466624414722924642770883896158831093869827621063338572055241040737692249901508314132432351579003903133088906783600490973663123076477658822116250386134351490270487305039212578090142110010089716790141553324596770041624292541734611674525157691409416993290525486068557510037000002842142008726785181026060275302464681129376688841881137406616969227410512148393141013462692693665396927794575090052785306549486103033096452008346037286579499533512489848212274894715183015386933477680464333429083546563055389396529623117270974429171256884416792326709043551578613474434216541585819435188916475019221476918730535003365324748091553846669576509827883994084657504144064760965032894401545098426509707892594522698389273248970752955192039007605908480968077763608403106755945869052533215620726213209187510032930331104528619118433809703897670994994036369325373945807559217767410983997231403842236644634711528235697836942514096869732072891032206058978879972048935!
 9855970475977371089049935583388335126904000381726912765749625534324499984758226571796726564901208440609418915454609731225793107752245883357049179471355718266532109320278733562041596772892827977236300269435839871773600839164447990744440112923264955163125170501970609202763446989340598020275725219682917156761043359514072035648133787274903071861815300514812263179574422390847961531779895623448394195328147403397260758232275419091261659901188007598863560185043031702519280556039370730031941424611258898295763158592484663848461511353463956059429296742146724857911229175140616053912074718169347683184095827711620083139888368307780453664923706688807077319982423590406729469815148409499834151410369896196733684605494929833818594166598088942365784932092489307904024193675901885116773911781650155167599271668961254790684674950807603728585521475398939396781705395455766774439379675314599168252984550747373316734372901177932484117392642676353847078686678182858485492035778714105017735063399304230597!
 2756281203438672493545688481772924273314492400304849412753960707473617
787
95841809342121832372819105998816319258433117720070538344412049857233651428137537874952360458885981371246416965389549979613458335737166149594133636250040202260226376570636916475036543079453619730046998965348921387309335083613973887754066305629575556895900739583706286803995442367757043804303500544756182183324794224984705319457730591616559749560328237543572570422272425616490346926868393406970546435925991402489221338551305012151068122017855956847464173438883473874852747746768649368604832602435943796534037768387732820925640023173696354016928313240284167506452836588404746456256259383356358817734936460175389376475509718693720752197059074720809417347029886960835895459683470775316096741477895081191870568999188638641691419300965457408559051029813565874806516410565629083665231737383090848689525669011040407350174984913672590248562458188189824009743089967270171029914483061182238972469480018487878685653383731945895948887683019277289249904856040668521172749816367057646799443557702349964329!
 1965992970767502796761560258658920267126925290948243621443350860626941536202332694123376308263865207557457693301594249612824101104956720581451457567045760165296235825291810302504854376151105296161927365572629681154080219318341174892517928783012194472270196900031939754526594553223560818843874244360210815084957689373835788899342995069662959540652211884170912671983818561618357995818464395609094663775295001477680760336452524481483593789007743748040209514421292167487101266218817328947564147489454844774748726731723738879332205883216507343318188088810284143916103653690742527224647339239148445208004019214779269855119756831264253863474277144323166927063213797320240795534050741939042141098498016947038569204117831127927504254082297739324443195908030530877449615735740986053065390128533423983820216787177532160882663240449305876580475386869055716685697650656692276281873010205425881236490226047221313065153495096936048300150193585595567067785373942735590651635488553405402689704226523585587!
 2084717982925336930463195599781134212200819254929207567205255913868912
60383758042092314265220260457049154950265219471563000419924547458213438172968532447034014005443405945532380407507134746349827449255942068058336887370767987782049357070521386873951611343397238970805385989278086945948883350338171229387619158835957341943447907394497905980406315108600503847756854080412797680219136236721812895877711915504808471017528466004942819268998578553236620211830890300827936078635193787432043104488047249550143573839898480727696416122380235937915193700672240103117002840271269011377600545848423275444681745576351665023695415846237187583138823823367214704533290871884657602966025800188360721701720430706982024971400882088639793106051144005515593688763967340390506002340469166904907263903726886510867318677026231648169270899003936028151252472104074399811695839166221743143015183718476743882150899202915710847645810501767963312795980210613133329375830399640431274894300160269337271934796350534417620314487456128226448646106222334708955733310594622344672879869789226173655!
 0935616053071383213515585353843221518356369082295760270091366252029141075541780711320777969901098723651232644567327443501085003802506909992391466022875475909675003787772244194250385212821514174855999706427018685116821727743760877850177433022997116781749204887883020951810107267161315877707694588009152609558073616778202915879117293264854406864757347018407905847196197468139577815858934085626518532193299667150414342475341530167464451142637122337071106268119736977769609793697681130921425050461334118671068156993987548023851389899500291252147931959061859031782312103761052383180140337913953625619151831301062827926175149820110724543513478801974658869753237480614078226335907872626113245641457118775139943634551535881680411768427118844516065216574926714097147612807041976892599138930606646914638598028877175975589673443313720007573138447944778412823608200704775346104430467568409686656785903121262119177956471351198430723880752286359486324041023714587753536509888057028060577653568621391873!
 8472291005440872017804734286380942373965209086843333485733812876093855
44345205636605737540059810806459152584361961772642593597902107604171780046020068652456452067797894729623397108042020985431213023550142530075246761523180379579117199562105970743157868543211782682476265646187951205209981997298308676238246493227179379385438045342704924108872611856402688840057492776305211290297996776485097023751009799680293986101737606594662440066265015839662513071242357631983376432794627314577352999891412618463449468676812583454592039001053256947089096247734214927884419384143037238408405345667333656206467361209556637384567335167986762243400296733110759163066265789434857798263684047233048873892595592652228988564251236071348607064387882838629333597313153692757514646002056054293040270085891579225342606597061052969678987514679788267750478794001920972846036563493057163795363364600303356129931599971941877821041726310942365992969106754001701959595804258765363941382123405824865042468959039894867303065749607762311424560217572054773803149880327504797513707033393242632153!
 7180160782121005844164434543931348629031556038528195459996677382468334361765615987898878669382246978149976922087690250900957273211882346692637379420067659454999584945914069691109794727845149123558473413604823797911953789699987393825797115186480324002855260599221685120735388994692865042011468352819442390138473726611912088270016300956534642306175784420773599718940122152908504671729484720529291554610124565239222864030972843995258965768224702535509692397805436903381440810226668407191479407590647243920370796429293228641514300390146935242549058032528599546869954129362207570787416697863980469009153325914629366601077198413987759687711916065082781222245933813715854825367414765451787344548425162795804822383795524546297018588715016092821010958762977665688272861188026150049465953072337113408211107232464739486715242326608413081384476219831653073564450338132117761612689421187056588431176295646461007788195600094710447677070216827746694620664107464448707877475006696067988941339186414520837!
 6631790499155634118819578855112091583669547987980491619182373544757524
82625084249939439755428706470879647826493048827730854641792366546109607861688781231995075263539759746118524061473548822673889478748322751355526959178315339605962920640187502268490901813449345489919584882559032622451415930136455117437650556311698854750053074073667713988192669799912375812137155873754126349735074596495064770836634593347856590683725048760339911694405090303499126091492128669598648812622672683938839504489003015013952643575916760793220760996363605798659959139492185570753433874257420722117086397332236345071863045491821549802854525320875399551716975410957784058437832462431784870028392203979423393495253260150372201703588493037650649386901876757143071262651208918733709116123258728742942974009960095770430786819040498785376859699601762136011714638215623242334483895076608768710683102525336843090261827586809490916273410533304063149039593413322678459318830180808886276887691916316020238820183896918605552714867288594130946186099505326675808038503913690774339827149387115295552!
 1709681767202826340632875679030422077517101528637413632899402350018280410188331656821792489605464320623213148436154201208513897355268320370171206670898030752749425240952230101878745780676745266048908569408063129402940578079757136052285367052902357112528232028485621682567742658889912975214837147494238502161950679736960116728861017625047867169087743739320689883981499083996371562028200176920260902603583566997025264863381639164428723534951625731083336248068437622228701208105252687749954563278433285683004589864573236316006225835371446819223264409904019220332940284297365434504971696142727940972050473271488151535065814951123116339161113356552718470355271349422894694966916447815785205766855147836028876459771940794776559839102479692737609495656320133977075240376378831913044687184424962056298294773277995831586666271886244272349107957493349393116531948058538799030440618518791806801909903847516488378927458977829165102813920244927588768951674658351554028062578832023128595478908026486086!
 2643657583897795842559222345181028959456159918709684610130014194081058
663
91500214614813891678556667559868257303182845106948256876963022719422557940663466377440819670733078112737372827283104307692587502047984809220689771786473344175890469513824812905307168352915571474880648792611638744895317669399072991743172854122892076173919877420019707331622032262905999650952428849432231851239977298400390503105309873071036408813356372334692532673781284474779778239101551424973397584023817106640102410789586905019810936448874669992210564504754310913928572790696187106575266819826951762737488062482140527399795787399481967412197574720890716335475555294160807318583277411609866108199939886466649515768800377766015570162077271272523262806357408395890545914658617581762641654060100486910653270081688134700287796777147916126071994729816554918948280257232600601855764763820948836511968408315128551195184883333244857625919067384864123304077789482409118387379128873423756629791660088913189721537203640350557132848854755852098378674386000524423482421278466617044565914663204965683168!
 2351764972042366778250546243121708290582337843394160861330100490183490224048051450618518508672060579746627043690339322448178687744670535812023597073244435553255586616483992552236452631451428483308261428200517171871524862411927666764481984710731834635162794427878378694918586255280230601172404919034564732140373352898872057332523405248699543738993928564006917396224413515998781199767743007516716810521110994981089178001405892646256429604728152752739967863895626747920596598236466650972920021487348644891661865985429131724243777440997041501543442717566635407423976368283631743477995964834792399145974916851845485959065945641638821763824607172294345084383460464940286029753081250593184933376202226491761148829375117963719718347336857702616553526975383676720654271181091718040674323319019389828308493640104621737254249357837245285970639298119205720455671504440888071994706418407695216490972700693892904857145030236416285163608919108101331354791529936678770181463757013286367761662859755577264!
 9187440114458968800494528404701069023020913346531936725939506251397306
84043551150611256347106899630550574033853685011871783785716994046972169951162689749862421895159689589689595030548732235498448368895649948709685125693193071667109249773243812997994647446277304914172201497704907013187080110815693204917823658384453651526652552401885219339724088500638053856338498523491226215020045697030609177739253774402395465768836822132588639845015926222240287381061108324704569085881248360955262604652847780895985065423495482072549805690246565951011514463687524325815286368526221369342448346640651611762959602109735898992104720194258131494648819481485462183379425841318898519655433106672264800386126863427641986241921732281278231930937272715329985540417620638402068725534664235266106583521913796125945266286769348856164689880634233614264761510651943039394007430304721554608523169953160281541488903024088010238525313322347160108915482627041363783209720046735068806865217242405166219029487864468208829840395670814196639529301444646935058632924624716168181395621533204979329!
 2342844184686338765615186397532473021032686087740990124446566130791741603298330729079227726253944483283448270316562604040403012342792229345017427203603722976389792742967055744144021380811379786466317169327915948180988132915058912322457229699519745987333827940604988407887795613780476234659459660122186319694433740109176058170500048708041076448325264815879721109520087240202370313530943864601412700189211584143956914067297629437077724409825021643900512900495691704218187560240223900259538583497407635578333865251730654672050901086587308819872257085797309113232794918604881558276845703954518277927714849030964399305070229805736976659040307799994291291235471436853670615853737952516481782079826026455999487709288496532298901852394519609730406024453104089758995890878734642279566011891632195758090039323281582506572787300917460917015763124029165092534515187342671845792013752970648362862236890384005132883409487803558025179526231663411935611235475777343407416810294779663062327131927332140323!
 6457800085062445637135458338177401738086153233245000661181819849359578
10340172023833365579993067222982326061322165937524513423722804036368681143555936624391960835065661315937737175849086296931955848344963652997928143294253406872746730293177732851803449569672476199704598004711785791323774046613480524710056228236912317464538028419812775396107271673023285802242989075027246126480548382573509413403168249761228328616432224609339188013084313202058945430861524941245973095800632575950401353821460669862859581722474183151741465682868517666219479831504017636248006693736960402338986891837442582960199237644257361545109721605031453053704121030198712729661960125889424298174352662805209556122870685492257223157982680508214530213252306221506058444092883146842264114040442385393771457972139592895819752696833155752982349808811592976479039736266671198711125654340596632518745523806511569998917240398281770262881605550731273415746399697388363741920744076656216945944084685090270305043761587008756573601415446490700351536459732644592988305827809924112785377474168239318268!
 3547574654248905654639078313751673362213867305721738198839538048495811717315028090728698593586018553424465464182880167467459177121909238269940274687558285910715778674167632100656278906645992955710214747647785826707665569250942212056264261480071834764068918599901063303677973964830118572444995916083117892987447649654847481631487797338879083687438887242974957382620214835613333389856667086678249940970432501334148287679259658296088954107261455889053032108703232480425004999225823896946510292962735876860109794384266446867806495245637131314211310676595234969909581870311269733071946777434182284426485035341958988712911615235767704532976432206162956182406446009123248677872077222672095438807318923711343881546290333958032039477996079375805340737351332267820771846487979711323661007329998825297046455259284724113355731678079200323679391722125483905193906528731871899058335871680375501943371331035992968716205145683487598182666229064236620859859705389611722702137710166294246607896612309181257!
 6430337170727194405421433762878591933397379065489402702221228969372628
83466546814909450700338153198772307380218479552731928686231209447269225088787923426617711117029936724633647222395365262049796426664802087110185617766787266660305420569695046607230204050765165134158914908697814806518612715850618037362905912016889868073386779106821983938095213698398519653161942769960594257482242184534717896014710609545979880401083264840625900999435907549260303431810640368253838297235850769922894021358899077173208282413754986024539254494834850825052243989635519908059539286458889361603651507512700162053229292502576729375015196665110673005281296116511690414191845977400527245853937853827741444032862798155854950802425812616924715454344546249683081015426586311836706018678198803834205298866226613261409468200110635409786097265239542250190052688567915289106578548205886592355676941140071905863585696886897815830313850742821140484128069948098867715669092889556086581711842374151987979777838249969381938951141998682875650346517820596899748117848822895301027180654336722563425!
 9405452091450065508944987135945748453695358811263383059218547107473352071244783953856026412907533151789620607760006344310455000187099041737000487022471824295434751414275030547115766073037952649911905733888659529822830768050392850784668049501528264882729310205841655260180918675636212552389587923768616321022731733437177758814741340739048308612994869064925309296222744333305242287229070409716076746501852366490617196631369249203722807556284807948051912718543123088739531849779083453169471571319973037311828569940273230928919087266997307742332014749383463911741484752026871107280203650852560217294236566141979930735605554275139692771444656115324634141297501770522822476038079022274896027970742040661708933041688808402308284100062900496211945889533898012991859340691902510697058631501838023514601450263215570103706968057857042977229364885704314567347729811466630539818551297352863142229598715017995746999669570154250130689401655293294086068679854622777770247238258881122005838963704656052426!
 4750088677472412524250642656763613356864306055255265839241612026678514
324
90753717655380757726842062752069457144843372925103816970662766568796165019604507042922842052556726003484031931378386700147864635537213536587463936343522535888613557500759206229352970946939189178636047019506827370802131456989308145650386010868569084196500904619896606035572051271308649856355440471300057960811782593390609314417356050065150211802807727709414001128501889789537915847064028200572170167648992478275050490627984794452979206243499612076341896357905578388049386678767702042392403764871363517083278489234588769896170539616007982142194198721465436259669118493844687270601271792903471922734276206272636924272366375534457896695238097891427011541113439449537776931412614292657388227829487242606949680093826977706556514370094726390020346390153133421265387153428770277997591689873379475202336151647540317894867241841344587754894450934412136858477126791732258071400274566233058220074140377770812998021515947839099579735322210280414060567673775025314754248265728448602457099905054237141043!
 4897475910408324386583344240013424181987669986407068060603683269000327673107144849366488945912380942185698621296976755871543362195466339776583001699937362488831568646813900771467014307234534335372939418175838320272214494186496435116820314714476133625385418926989180326204136894719522461589067326028717282536558101493704469176177724030983750003584367380137308583936756469773048095557404372558525424579450719338583059261087487048787374754843165404887109346029007398170272269498618004163242198619826184436555950734195562737386672500257262205953387458784693982850586198864883033228464099351088434549810803632890946648138721035207647257612401321730117600383102632553976240384188962850196307671334429453156192992421499889542348609888665802702508904284430324208646386242700367366772844051350149934523889298406197130841833633844434669820514932113529897414514298651619614089834094116759991475361050535330012869068954461996853552225889750609518208509694340302996168332560421997942197759640881157469!
 9818888213089338020179819403393337712740529305516180464558660373393658
06389686715846374915249220563795111181276534191667425426699129484679043968722955958698909404424982753184561710538557064140510181751900151809760233938007340483010111868394718875005804320795439795161140912547247109734029183645254029737646213458375395049055675902496615431402308954223828473831187400744794677503670175393533144670876757820167931225793768338196665647130722515197760512834621102226643601240570753732562890073907803538473688415223514510393080058895195225277096723189370262968053927338609118200462569621305442086863818746695463992082977829590998326967848040881744629847022173406699836829739826347021925624685803012525377764621830366569098914101745578607235724689832514598974730720767406058045551886155686919333367072879410840725161922225270507572500759158651445365134927326122705416295788358926670121131508916075106720119371659441074841089085236770844341750856110114113022108198235062864080165227884776110727652945878775752553465764304774997223566170708776779111156408972808081140!
 9659732556896144947563290750835708155923912088947218639138102920990224807507985348085624655348429375930116149266206635925097336990325903009263592574462306617329600582398877925786159936205259070165740635612961467080025784817284554813261339027710070171896513752668296302459613461180782386009730382448527923607356742279557723390622069322610190759261876181622951815467200179999994422269579046498205093393080395232340080884185454659681507085533616026390150860967020849806464746396481265749733245064846804828878988648185257569352360103288509867170821510790977617593723723406718938558623769709160055388274542047354240718780163275745390683836563130797806418499493223199261299354199879830105407750133470380791453217450924585373517938957187086890045386480702349129475466444031563069346514673366766497946283357319672489974971359871042504557882242692064362662183676133642627449704214829948891967794045454497921690959588175933302419389294541184892613772754730882960755876186203019488109545950597908572!
 8089701495165132307367453830979279745104857820164617174282114656634992
31528816257803140099089904827699577956993671502885411430650442956199786467847502686428033093003102299588645528661836427554313024832526298995154538100178486336612358157524750002545936889753291520213456455608160482718425976665113915600490807323326914117902772046084679963018445796213960060649357793551865492063377352041767283671866536388341747303702130281642541936974438523585715118947703481106074460904405735277294148206994576401468347739481196445205280847058910431682642299856322424224491949099252211947045415409324211299488076127809659125134278136040071445611971339644648536190842042258857241109834865847538575367554513461728888213857612609426972233950486722387431116764979448311996440372180291660557335759503743032946944372960975777266963069824853766379829168575253228056209714810921680460640840283507890136257057538582819845591971245074446662338739600893319081518891938741535434783076064251553450599418686830919043058003033711229990142782188778593742911368081227912168513740422570539168!
 4494997247446301958774548228369399277398898847121202791383190261173531824816322793608696190328517679173450026461283864218647632695391951305334159307970027572035320169684350832787794358763862403724741976072638259402900536841466139654648021787071372962058542915783221303899944377087693801324823225348757790821917858144122622368169403581052609328113400595693983652468861784146896440883483647764767537737712214612261380697726490535019167759789392408075861555406837197600706220981173586710317704055016180383616010136620215444735924727281691163764284129713920566090671691506311252300073748337383891033492716818236469799643259947156113655284717225667407827648174980050564095362800238750126125821761344752345355740566509551370853840269197059863527386429998181461459662814021397594333162370926078374137066887673473556718033418551512775005159030874191660663172247177467014883260772021995541850899760971416786472163063544539411980768511392197525948946453618927802117712714190958018593926018167400705!
 4065853463494450870045534610781965509739221317524502044164651202331541
72426643235278757098879955168003141764143050916296216385899016091207714214234781855714313424388310614897422499846311523900416166446581619700751868708013417615702606536714650180808582646436252903935900705264042402836107560981497490676134793428703297591793817014747851848965867648515518932297731745611617223092763199494616902421057997457165955548789042435061323159251593747273539266941133948649359433247352333314430072035211480386268681915959580301025552042348211878639266963955029488259039457979946161111024031142384339157512514321050053638788783180953614836515104385265178225429068686791558027788041627130041686984649983597053138059463963230185151758517528226178654950564893230595543563999979689539739753417465797319887496176336892321702274544389020373605571387526699863871915288414498715481874438806762751942737074010538832329177014604559217869927507349526153752018466731061070568565332448971694099785714185009333538334520033823225214500471822301027869134256475445082073195273482211082974!
 9913034095607393119948841941324119481678012374651395997796221290150176715488206009537016590814200801938345561339543606822565945945888848493819751261865402375158537682176101345558752214308777013242512031099831352025865022959424091910564287373172860738864886816408152126130791988658852238407900161662606478438771504347561286891895018681910656533981130558801140380111120264692569934311116205737910560568528953745691714338693076705456259554256700075802229487520928378237233536834666356272349726764277700099648257738079558380918730870281987203148135949672185701180321094500624971857601807503664413724651861775882243243138121624983548904558495605074845977192925710268580858750935619378754955728163667273941057716180898545166072005624541253319664643543743581346329883526045554208180134107849999653076867896097313785195043448175346109111843299837002183308259073341455860314141104200907462132609407372915598245954043576685667036581604840968543666838616760431433273308282843869664939133379985596840!
 6963376622532001416248019510202173731205753872065118934835242716181931
544
68759302951219996319318000928146929569765579533416853708359854539765545578174971811933124435190556581109751993886672557066298902759734412629790042518903140441622630779865815485372784126151772054520682352887317060493123830671733147790441154308493948336091384651661757009071305524576900090304339523188919997254422355048468546180067296449129794657637404822481966005435059916414728420505832830612144111080740423319480352995885989997112180592358829066409017363729976355715298067344367502923456334889642907347930277615197051856377802251206202434619753968436721954222051713059589594010854055839273077862165554118349636779362125174223162257945093665258340165000123548785744485720612508439509498205590816301667277280623239217872778190287616875201272175426591408501188818165600143987768213612331222552557080080473176414143775053703387087011251049914270827226131062276762257535833318958130483092402244185994345297807959735773989466110848841505047095146193595532326484688876531240460132494957006724475!
 4065065366819318700960891987296836161910406643388572118944304415193736375926652676565737573914502087060266873794202499027426102016667962042780358324852368212632127998163748630974790244963666965128117612216790387088504772297774577026864718802932359534327554488339997980879293259288057487884597075445842915817908352744030117668267106835351388474634934300565493645134209281336198367420564173494130080371236958736436853943784259364039671629979247972374861759474839042210106815078433246045664407175167477588263999071268946967916568807474203852751029100995785550997870689285470855086563437973636657966157769978259944465155952176006792177271742360632474485645573803001473459417986947594082372697560522727861691215818988726040919443644408936879125966308404384399584485175663802146479435067435711249785678560118597141438439363306631291690371166226100894684481334665023033160101824714468269164597322010805901783661883980628126150820678355437673143122364386619739117036023201584308337694465043807675!
 7190893883413788225711454305978060029023259354885343012161586298616621
54445125475534124509855513281648162056811187719737992929662191102801142205877374475355199662202612780303423111849485418682298910866843875931730389572795091609242881577649480739489125796674057100057440045091355258058938649054862843091614811686537624399427912849129236132783859470790394126946530630811934866041470500448662605691658760784056580088266856911766392996246526884890623321601460193360552317687817830202037136547720050332001584235085134680420447590104240220581323107072597958892629633800800451328263363697541139011280705176778817073222432982242549066423186327052807297331851653590755083726271836327447271272506334723981279741921510912504867236036941954867943116960640952674269935869580333762047071448311895597948965529227151706972587241123168500764377936749698623954690122761752740904650418917635780591082373966501497622418665556289214837132621104393350179118239019631043360855406923406345115871584696169018185935463546611641748387946138669990329235480601299442362345843503108024563!
 6571051280421748106686229227250066270424395089966328490279861465108743578886956396674268464759035513794601031588598045741036579330863574258181099144619860174056073051867235504407299680736743587722523405500924647181662831173544630932085935497302958709334246628462487939961139564789574075038623961874282282675124133401058720350307474175927347122255974178479728558686530496177210732878079580350101466090456282004514530100189109343364932838772103177435905628352529545939684292646143497931545134894998570424231042944997802676689476193353163472857848860476705082785399017216217573622031576162729235615235259329879966968665128631050212422727285404694512720711895233782528326165579269481550669089972784577898371430375925105259570245001634382262374242373484670185510358246917351864844435690517122112927583812639596874164093927960168810678953041101778551713356555056450439816534636007662835505977984753086170862187325904473118891161533785420326824282467989031026977502060305433182227397649642550241!
 7207129760543313540852506002984047180365628464158660659350645335462439
04305742904420535118142492653759604982235050818797366711647919999889376585283092714828771926657895894093218039527430573433080748179202014724721389316989955112561595172601553843909388361462260527160493846001102079765829278059361601932675765678406856808763324317397587400585969612186463447994551771004927796340408439520407626001452972773496649007214286114585168055885608688343520615880945424957035287303484329018717536770129595740512792134724504606836002600673597913610814302784331626945157885943323142996711966420253284678941515901658033807957332331504384901317568720836809357905937718865026588424478598073855632266110134647663614094392049234436950626051145754458126202626914535937662404790176742589843419790116098651554522630537975969078191183155064581897760201841891931122257540111162344812137017084897980335283379820661370633550673132413137366109054624025565326140339595932280104185025629502580378264637978425978355902640524532813372386883184014698923608944091706871792947512390775903962!
 4305229309975843846670934939843390819421858321320630507302272373544816626387138146548946345307860318048076634389426907254131327191912148538094322689707690564478442413893159570358248768175651394010291247142619578200045509665856734635580737025717680401736197715581892869789497353823131240143219351841650912534458325582689167879756790957428821541936753900411723623076462334424903704889587974893069120080751150309651982965568628556611775784576759186148169588234006838771567758812966271899882791822738417521710083558853543193051175356519246913163619560557509437732383670106382123283192655607910816051390608373589438506078077649240040185408207453666910301369902758648065298756644969685158822753825734166104462020291535895553598224098507601651995937844035407381708619517335513260682034295966512571668682387045203016824236014382139980609934006874372697773339800493217956976454225866364566753363475983117601525556696271980555316437279650049406611851222999059737780075814320242826127797686351812621!
 3472754410830957358170888078752574980468734971970327676220809516256506
65304996433304565814668195591457899823064259284127997991403951170156141204958686147615358793400692739910908023315460304943858886858833419738730901779878326639231945007400181395636791906441185993270202824896361071763508452584412053727858532003172603200138050949822021078450956098645781511059108414991854605601338168873532902508666923820614044063289430893117951150547193162490082568160726444307714538851680690295294555655955572287123685167678372003245722746593733527289186105237914737299513707063884209007989947140177773805683085987691715278913081959456791035772000493538058060056063074810415140525163335639100395545702439757435322504409354368861724443033108533385339778333508805145825493760505847258656669825543260103986733629972432624254014865495763650691314693227534426422655836669222882748500697860858102167032934074632915315863583990774650382279281416386813715144332199984157970251737845167594096020803809735468580240664970625129840898426872262099639398591057010431255778563116860800866!
 5592260396330126616080411148390872544901096603349717179259144436533321161354903629745354002907549009161026259972904387107989868027797657155687162385785447480634839156983628984345224260411877719066682161917371189254730409639036764147090114319146110464694158528054428537422817771532915834045093616445305249414637556747729208361763871491087219526948905019395915051831633289753461564516740993272508944127897028192470561387893078358355178396145460834099652111008423562299333058447282033927907312666421508106899914673369026342294356404772107223047136527649169818762681598717150435470082415132390198645779787409210589746986369171278884206261568671488352907034199260377515372590737966145787963129730234147392765266434033931696283045247816318195546372762336548770743527183474407724377283338255528267370247463935323132488351221516476580486405003123398682429004758815519235507245699275492620903981013557860422863083707244361602305625029198896047032314263375064727300988531562305448555566364725058337!
 5745295516171187124249697262455310911191039931858372514756601490717826
254
30005952098178032436397126343235532204180287838901844600677481453307215839106020169949940430191884177592885834281659920133539996610660919670880131594152411352669564655881741820556866941907079892210858777056659809894871806431987093655848554866639581502354899375303890746887572948909504208472109721399829030392073437668640115644536071264845596558002746460750252759424351725037140661650953708789383843769480540254331774137563869445551083093503220118954038635956418221113098555358715747089435896032083743901959388890206710731225112804996911031790014772234395494121752824380266086561483351357146147140925341589489544537311517476941340935442585009796024779883094382998607883178056971166785227342200478299274517629574785843962358412277156504229365377604577487783444750157682696096753335396896540588204365181921409442470995507437419420311621078276465263772404939377294425492198589348764290143207069052645171108952844914401553912633012675011950763504961526703167971411703255028775266107010554397249!
 9307888054882953922620627084427645686666635627899326087341810034193476767430452320155727295839101205532032989501933568052489777477504695143200189987036312322952407731858265605600909791704135034170400853155814474555057655277088633327093853351368168287052692963467250706082706379313105216291860867131522441866804533568542481659624386356674651322101308070967105541011996680451860764612758682608006495675486036648203355345962849955177070936767223934777468540837436975806006636822424603845614731252712688066014820132888995140500145235240389939472270948537772049357220953649968590325486911694025194135989009593509593074002259347308023581443128531171950890381727127954709725877999697897886516592440932403814665691426790870136092581977404268118734693810782415679893057692932828545448387970280953615793668736534880820498705481665631834280767879397062713862569277060893566127275125233165418782075682422458889620750942455641065705830982355210326278845082270813845038054611370116923475368053126676202!
 8703487737731762768929193502390623756952276217004224996395421309398916
08826501461011467107764780820779963365698198873459063336274160435961728653351734352040112892162231034762135339342815371646755105180001474796228172921775188145036000136895411392124095337131876287564288235217824400865504340625213221693985829634202631867287805458199933652738449325922989497946048452667073358981764855678625276610211514757960255048098414780337863795771467695041787183952109129173961436991038693556230516083404693888605827692351351508122980918014756159464521667632993986832157150005635658456042446009141783282358372170740241555441199821887221515430290337435899341354395739650986851102584061051648689421797193456876407771215688490461922748096943971586211080956325489716545029662959065513336099251218438467108789954345616630247051443022865742546340131393303156602063325920093644993961858918280475949734056082684690768236311933165999280763272291049048234396211807034546379604728478229763487599420825112223263686074231210740049201544665646620520828100899320640249310834958811872195!
 1859021430639878570236247060031200070415496971398041025051381170438310502412440306596496506293608406685636951211375686804745477410907429430611371461284759490048732770909854647256810894137992557790068415458949151916143479432693687021954625026422220617159167047425911226552000181452313256778009739071551578293300274048934105579700828924319629710736600116039955878770251499005556739141241809034998956977391250092373158583210305639128813705207972336884136730472529939273743202624060547670469719158882666327629090306413032352337701390493988800644644429641816211059202672073803739519426075020605006874702291091552144268403803656082012707358953882124136044906199715115252423778833871339260035430550748418340767898029344847372895884473710089701933118677848204749501459251803601710974918467715998483052537753194813729480811571739828677857894525579228453969597328282993275378688456124579752723715281910095761601971648063298563912489856864764726013290322611767953034926916594449627984748210939631356!
 0458973136788404027344575525508441242756974548444013292653520934003849
59703041207607928102444716266845187112708279733012182631348444917681015004613892535916153709537224357706897393147163939100046787555726974990294936233298562688219666415809794518424693234210294535937990175056951477485664149680885792931983212250627198708218868394236634343956230684535492649631371835322032203044574531177234923345079383930936052065241627130982640507313407782554524714997101009602477642084561028458480557476831457744974689585830942997700816604181242141270921190819501147801830035968277503235273534113018473899912416457916572750111122719662522112230015858681950974359861367826337120652302971907821974541630111051583324014129181926320277256408195294020589869131541763279409898157569847700331676146109469111842000091739414031974480668067829572609594933290480056386662984129433994399836402831423942538215941002565745922137992310870287660008487171813413539177354767523761662979032121504117667343501630412938781484168725173925468330395597525723179801299257941199879367531108293002378!
 4865651111906660697807806997441026469106730583696718242901545977299697960275236949210420756178056231283148968734572095071876258585016788153303013236075762132812067441299021208556892433292794187063902764933866292299672654953021834983169086858210386799834151337800547911521762119079365991817042445439001950022484635708260843861428285025281513537986055252969013976245857024117130793656783501522561175988699068196713751506887194069841712668932351139355900955135728289333937472524764529385697078926097379249011287762399652303663430805296508476652185673581143941348627379156291126589084076463065785609621046065080738845110252262539506657671583930488877865689556396390227946447967850222146438989889383669175866635762723035058016522500550875545697157426228415061716236568940012875524768513301594109351074995560794913453129160498638128126176485554469177755266425122205466769617563212816096165579551805831726503407692437836229777285487059336234402486560202996241943892418783150519267716618479156463!
 7421423805106615477555316048205791293539043757112548068286064630283344
00721193301428620670879399422449345242969288542094743899862770303302780156467929792947669872279639967244550740316109581730607578811259323819140312141537884636927516912170492371751056092351007398262792056703300875271330396742117261917441884090832468861109396917401700461003987057073256879772395549447401210327631833908508340311903076829495550462996508948269239332232005823476662074076299172373758708703807175722502430111931207176875403022513816401777975753256877387565982829616530437487649452234041058198608388675048735574750884595370409824443642143682534547915651838345628937543196855021184145269141461905031775937067283499443150253094112522640741220227782474990010654896768755258789802373079440727276341303717308314859606466389469618776143218339937322921930774540747371982361929967452092588830669321162391381995434066151868412630887434807187695782532947716125983030473378832318205720430805889788974826333625092487968254109106953231141263013195943341295029001077259832729392777112658617046!
 2504810027886257684367110604440820800882501590307950465786906142319567601184808157677008673572004862912838957715116444225717011553766524156331236626033208679994595126195590258291579645841754650848503132609111190422625056143547208160905781285295082289717398502612168756663242957449767684730616577482133650114426917347721753033782951534962582687870460218911125474188131624862201466179926584008375902152438623255755645150088461362058737995271989466644091145793220801675326946858642205108630794972395324726272147065882809718795553886375717787929060534477617769439516129027592688999938643293294782373797386067778243414876074439401520013015492546276519331718153590388727572826594291807373501863547288457574687795151916730809127854388507475831681163104933332205245059072829270284226488469173585899063483747253069501498076685409852882217903262471333078547263083219422379492463135488576207069812033131345376577548621461192471153647103608440525197614730379373449776055301974699028049472537666765996!
 2150780602846797929726958878673409761831288549044118467036441568452730
971
78822646652702030143099421715251754567898477081724986810224171086113855765374459623762103201383914016182774704172805169280812618917814542200392312302601390518015845455685141402625741034972413332109006909121748305445028474798107904369278496416477705726989230337268309428637966625105289561552987547433695930331873382833093614255220074677017761020933079844005875715608746184575599441504384253873596055350915980071067295262555696572921088071828683605098312322059946243059764286926010827946258434289842332777994868242549113049010644569300031575326162203025392624869559981076709714178107898441689452365410271779091914915349229348447451363164754832877221493070747784493807575417648835913308342133307356626179781952654592603222919749584363824444127739148524430485278394728750533040116998753691742932440021457695085422865538498002969071535649280870104682309068625546183047117684697093911048391493936129648613530852935745408902709572900264672559766311980176512123488479139918772409743698756729966239!
 9575111603747357706179098416693579752617470593154539128092951131012655682061765347637808941692051012060750769633638020495652198408146967539025108562588110062675921336775599104072473140213350438084363120046510868217104860259632664527766334003139012029442562713803927849360080797060079730660625132263938161885072957459579300477394322495909163891636167793426150944450789895720080684858362759789732116949866363857465498709940030072393631309394384639507043452949830656881581280389367650231489444138728913257053949665769745019468259968861528085472956226554029969037077766470913803860080836167131061419653581242269326135631403139051024755577870247109862973163153499882167324430247149454210012317804635485892513956781586350321966035030097105718360638820620925743068150505942393334564639434476563173154643240560236602535864077066777286520601642710237668720699894534238301337567773621913908296201300784504755571886739368480082783896133502788164488008368086190286027410381397478728206868725853517960!
 1209674763433358256732846755771985086506979073455524511413794533094144
95760317700324566858087121203354054030251068301682827282675698680873799132600756398209288169255483981759617368137815540911501555043790038016723621167107041793185056311457542356756669497532594042070293850738034616694925049213081268034294384636843335352966109255425160092579321559414849889695239267575994357539752914271496172354373727492957177443813274260187672885348083300812827484120841691585524871592473940254582385441643120140542663306565317856546979275158699915650536216804721791525838461797838506712398454394315996319230098825257480450840335849943889752364882698127844150711437268580131178674137132200653026061757158163694192519863436270704131731651692479709134361606208074628475283052726374451228367132423691575888221070550497887801476521120067510696556618070965350909984154336930866865561298952175650982739298939727917929259299667974455989407433975247633516513133370695678449952761585831100635733327181500325724017964687921907463149497541144960208586378843038428035747970852038539013!
 6587035176235194797818307581023507448918102769392841450300544387788775969753596007237568992108702720073845220124467303085343494101389122871877844458360921322682582809011248484249429591725216793586138758140393597912850233881481040298295988806796782999432180082776288448616533602171191211198047236087696494279609451719779756772676569194525718689806226894552873021619677679937344724330457248477214993011369437079961853403655998176903469632062004808030024905004769043481094105563775413293146429043424236534320370299107015456139695011304728879693762883829904085946218440371294220486316918919582096810327172601767496970886126350286243446528028387447434698325131877197335318786180547081587823860692139967598560913303992884711841124123385360823200525716436357033443133958926663756973632155990358374096598123712978422717405429993556477675819763793365520517304384883227556220433094572146714551063877682225902515778903441019336896260844433085666408450182764760739721379360188260043087151538535022017!
 0803488635131277062853574749346607870255203560619283944220199243096075
90830679569362766522192325454205808450718351002381868284686886571853785432145284559823739659228579007376504864922331771137788153303948282496742435085724030919519691751939469116806646419013260748462203477319272469016009337244818637587670955124854115578973012794636720667506308961777575277044885738164367921048856439552573663018581968661623457887340908020649458252563335890694394502125727105097836880072878613215248950537388576986609726946266785105889115415703562695051912050491632208379152938131152049290673840366394812128966061007472139329679628959507769334829790128729319544908168269565745258618368562519935038797526063379796992937159838195088476694837792671761891297895015543781357268916779754691398208761536879566366199275305435662675886848145758144742365833920391291905291663795782525574676412255128872742485055485331575215479120267591846291570785046470875126114811047107789106908238883961473513482757846449813985190307124273411608921294070402407418413511317722460201008313744240563356!
 3244001618507122425422032870452967633983752625950389663907260342787138963478112489645325078663026960128971478579048833825080117644485986181239223009176783315559061042836676711918071563955020644793080010426931674052910707016560784024049969735388744147928544525907165880795593681949458404283081766051741910142574371327634168981995733990783119917415029822525315249774948729824303292650714821732363641615022789087912415712703553518234426619106431057908456250208625859136937169130627027328620846193121438693970928603351645018456498533486802993370620631099676644975441260913020543052446365257753643604724627987919878931805189460983063188550021602176051897508637781402862566267797686935720164857313949147071001197924151391330981249696063172304970699071941510092897593449747548703481377257656499932710316590340469805880575526149480786627150392764828690005506568608286403979654891842150042333440501168173614936659747764833658035210109862836785351644656442153865841784474081076097603895624089900261!
 1041358688503830712178229700227131878610292197400254633834594359935889
85128302288422445609907761965022054554523210809104113116986866185573240530348327776976053782298423371169533890694609590917826275828627235333489680485768275737841803345009075442654813667961395492014749605355241046715574304714985960676015050186904878149240655074248005683889757863360113934239197788792203009935780671991068983983148963724757986377420147379006045832118940230852314779502118254122895589814925648395655837743998265959293539231743006836761349904417485536561295896244927985895230423436940161349073448492730279297825789788463787399224203838275077017272464705491947641766552305997145692910885713025655775090900796929187335653669959004782649142983159704779165791660372188292810467069634351623485759793070444119413104507695074040399837573333039832022806197749605934774074164670016241268977028940592557930636562840324197952918157026512214642371743980837929485019847747079122744698706173010782703365210720687990942129465441953112973334832093264354526441445259206233659478818234796182082!
 3299685967085172732516430329495872034628431954908671396613196902365510315617440665455566886366747463461651685540048220044315825435384301421553164664024764984227984291085584700193117984200183664028897084762135126862693219007482351572485117674825104325392940542392298267576452698404739982519388619283672147661617934543571191749603193091669204536376073416099366131892834268032087618021188767727590544163235393598892486608026252432352597324020439989785500469851303348752929322419562911019686114904480510304327072710090390837236670752459521589435293932347387143694074039438954962829807750229037767566796042147974756519720328045511190481263378461347774628986394114238891752798726519312241067620669459613583411682311181501577870164532474630559641079903115285446653375399481984149327215280929111202942766425252787786345981038809624140035871239369834414529606026884083547276361815000294803998311724142204081502093761803536112879068123255921130439102365634582738737034010187381363923535227561418712!
 0217334833604439138753923200226990093545117553874502835139879902285063
213
17619682306509720517738093971584395920111114339282062075477175463746680951449892722204915868641644886959351187914977521062234310214397108249610043096361651242399078021515402954566019069656475722038205282658703341718594928814214868161091662538949805081692064616939718265533296447451786271181045857050197678037515819541215767401627283906214527579539946051681633429969442566121262422956350712700471060355972415766831982947347132479571110333590370613003688844169246811500792092736059084711121816222409752975341356224401563793385283632979668208321431366128670439099646909131522392995999087839570093938869694273023257211511859701546767250511082850186845403917536916662464490059354261902228004183803367426205126909284447980269932873071421549893922523132814474807707572613997602928448259747321377959762223107618313980147253568870518295334612833158764351567482799612462196130684919018639331698154414133669764869510545327724869452309362703400130459592622454066316985913029425127153605998979747689092!
 5107436150857371706524571690902328254581045763833606578006654825669308183475122443596539987345759898332743342221923252652346570261279797651014712975993886019884673181205442927923052169153994434139098390872320942745056668440610849587545125002198790267598526880995655322947352044385569025157426458741923483955118393715056304247950624343282040079667373002177350500316842930284053083741514269629864388128248468282203355552950760336035369798126665029539937571559741956612130825912367086741820184178891332999323169524378157992407128117774451977379387190284416664099675591862111106254983841337116208117440596603431502804514293496657840152682986536837755786913353363686516920183262793340828885849569204900071572902617911186981567411669485206735462290923566396436035617966960521873083131607132193673222373485994565055486972615155435064007620813344766050294972077700456258579452125976563981477071183413539468918797817017159123210887268521425265357890747950270046993472664370215580830815676808844266!
 4328346037215587085008951146446544317873378559111187871410888376677275
34584774301947574490071099751588559389426005869904875860531935246277438547644191880804580558594718506401447902721841882277877091629022884368743321506218781224791153237801689218151254503351847633031824882385285991509002729012652949813778776736870720210361614298061111367458962565112690135896368589426255252346268974730635057820904038468225246752237531516037607482605520090026898885497348806150464652039489536132514885322893957497974943997942770062828217101766061464980405621000543893910401350534841168960532989415672053380613572201453126932360840331986750006253940877917746198524410879802113468480704386262796963406536224088328892362228941892181594678073580707658810867638783481474047805266618697780270540476269128533676125883247858192492854146302486886087475537500423499300065024469790039353754011316955972804811611193620140123465803062262677390016349205470543332800709948319500466422991449969043676022256261666621286061498869794937689987038807787591456600381285201102570470379983322410238!
 4006290951305449705493621148989054337211322537596644107629090343101666343049265002524340683855105133124168923075716952744228550419688185635131586261826964188597155643786626466461890133051560906153133337293621485211185710119375796188121693979045079442737075097778768219360544775090696744829202400694104441462818374380205447337621925401640478850810265728042056506998563048652452136684981134692529831524151463112311780392648117557212539332306483188529207415347826287889430463873379005887209013155527130042827552229944834582535949180871065478334688971950674441287991358174097048118762314727836862567564486984817775383536928952375429779741656715563684908947485546331470383195384281766055201133227943180985817292747963840480060564903305800178050822175318330480818852958526729129966945360194848168616674650543819142217861294529660918182345533300570745308510089486915602924900794271514943898238714264799188022231480719599907725077589065098626085676617572401719437792568132354289355112150062440170!
 6165522312311390772666893956022706078459953123595085071639216524623517
10562667496178908886715215434149486280863003013317880805975381267648312817811043195079233213532909391561978700371581067243253645335915859772732198976520557142652088751310009103719924892949884808861767026421003555150387460919324989579170921144580586663485674702355029446005702521414284854459613411820554685973229001479638080138148211335058367642139913491828341699827796112059603997670090318567493737756012612190766358533558532313065463675480615280112323534114400782784561845828690433160681585265292945133135638816836112066180017337215661650909920719623765704982184196560996175599010671737501011792885981956882871617561342958720982731873714301420992960896522833747778445389877972302657338137233709208575471959438042387493895594084745753926913367259125285949533418831711691265571370473113856542941848504081771023763965634090446129285763983724731067261141820072174500578978945169733382295967920117842896243592278577441589585637166758715066279276577396766351275561604660223257895227661860570680!
 9180523307967912912637733393336859342895874452565061253500562869954234063314767477978389401028087402843055512731020228407792464338544116891570951053603039235062010988214147001127997993268381872044736255115697483369613651420678087262096110725576486387749535968627835914089879786878497615183620708502963450005988712295552483213185987674760010179504181287857742174276116942689845475420971440490553840667316155113166092168902635163871911813942199943927254089399719689708469853101208605069095203823957737406800114175918203800002853502872575376131411982520242630090379790552468232278852310293207336895538552037361722212484689390564539865855002517571745167150428098761056347636719268748392886536560644404814289768218645159314424745429001865349377939429270537473441212580417028337281486483406974515637285707598835811486749242773696851346156131365649886869108514800802639691389031355484433360010126744489486881303779163269199861573331510474707320814804900280828359274916025171011776802500906797292!
 3749630259145709866653853553203593367105006306188498081879107620972299
98484277440772219999664821185149646646757680938820937984431917544064093364028815829159048878577941829846946577858436638105519524685854226474157176711457275145296643846635236256929966682992255804139133870358406860878595726297715791409287503802177657318152396452720862453688243306310340473804068798988761530751074124125852471993153223639505943439826817656911036309285819162620726063962495271430553934896571246643212749322878775894462921548122660645945038989850170142344995532949193485532210411912169920428300392542669610332805470451187437216010574101510974489920044906969054865383264828732724286440876001515984669327419093556795005518982351245305613761240221925995349590056432022763180021652774099180197401012511017839829112561681856197343987523357958908139679656014702114752870185156652517015343905809775504182328300602100821701023888462967182210376899776030494618360645834361559942261959589968228373476256927063799317857166881147462281877285090262106729855131325032469936783729675450813540!
 5534994799532318062619347236580457228997729519657112983406523052036129492592728111462482562227533627671002224326702280103067560959233671584107453000595515810126489019566575223846666959959067706837571719854938507449232996480316054049221450971345800675748875253433628670999386442036362991034739528508391610641754106434604925757358429224638681955714298875629967364217945462756653593142222218881874356347202884329805746796362702978021353842633636532721277241517728050777189223581584561462469817495835492151212888628866178857610360988480502815885183660105001379597934201865954262536509080238678234441478363664628312516418703762049950337639756606821408201669271744654143733490764635368553067215257491848661919535001762917047802185337202799165201086666065180255865284733698186501325856462795850520917516989379120780942198485563599921413558253686304490023138223984549897608895074690869812199555110344728595139974684901819681659050526987800367587536392471885857766864928548165520237885624620026389!
 9011985949675470504254422859649813878749258861852507592253586439325547
220
92409259755738235196039603758851942261593396288627949694159335231103028527481194920538878032740238491825882108049850124176525130186563607719266564373978636243555000594260306052153938996768111909563962983581498066726990738037359162947535397675071972063940855100904001165611865285688630772793937538698212464821217954774655417253838116731574372286357559666325465104437866539948008889142485005461131780488030639141881643517861627515020242192138853172051086645929119763829587014807770255593029248863166659600218419860149951814477770832002815075814980793910359435145847252091574008068852742031356788496524035611650069846274090914707289824883874472999399544717616584458007726230184287577498946115210815723739808176737674941942771567634576273889571216515912823209917745485473759266289365145966925341856762271411084086533587480708815098046471623274789321415109944983252862592569284470037620087060709198342892479504633590514377131182731343228263207295231699278082878933865853541259196563225794281854!
 9995533868269901136410082537424003497010288843470173631031829598257369701667018108626334526879258523211414905615684568624432691297426001145127988904930548754950253452037962164800826290340226697733001683918665982096531087791386364430116358321196962259542407624756282780210407018258456328249920994673047026283840730143789366748652706685433970285648447609876810833475857929224878990857346819657967719376262050623746408590957894240847774838659538673060068725826489180210006462915541726135596343068225738125760479943824527646782736648171792417110430735697710358450367256258082210838553714140995472638361195905938153992679343317678402120944392109227947708743755494746318471782066381469533402695143271692527838060221899310989952821316899726211386445340144468729345988556021197265062467405898907123254874862707398844892264413960886534883250504318473653003894302179000051176984772876847773414835850310477923747488575668376306985061846222197686497460838137806861331901282522391411863614897169116566!
 8886441891322014739034739134000434309251118518322494788573315052397669
44098577147345710211774557533279984731773049064112015045466589718237351563080305168141818467921255631619191668701893865978558722519571254565337701376339075225676708873976193379577044475354302845810097331667938899914063578606986805197218682479684197909462283690766004883017703343437206464614728127548683468498840318737662446086925886658591921054941227458509722640712473572426830944906239922050958989154752682662907954297260403419693028412761709258219513293616631122765482883013497669360111296859577928235103872041271918668520512432325976658838070154160630382785613104370882044738815142709071895569106477115009342240820327489795823056367093257651300355714404449432037316309927302706836281526331113811168379794100287167855214931957426668981868206177995952621358173760814105229204652820509892658397837477320269112201925342607923540860564713907556584558212382798652242263094654938385465338960860268474344728572150801026213583541241129718685881515825117920153658486168783452220033980591567746473!
 9624547906306580216880054515107308380314385946220693912542856631549775906282687142710635637241754620745611518502714944873725441975361320213249434576408370668338458656764648471709947018689137003300203207819925711633721247382648446780384446416209131534256835158276720561319135373248008124291282160325065663794453471656516871431691823720598522394090453902394599489708090789454791993515832873536745820899604262635223701448569747533936220240934102324073350968808052625622830077446990190710083535472668034267851287105005433907266432377623694955323559970020556187636287269499437321678466213471261521461636400734826668473722364863966385346220351360240381949884618607811765052825329427648310151311847567596579255028018001073878633789546208673932921703926350041543050776834619258513095964209734692369078451278059854986445910253645046596303122315801444868900644535151578408224866879208751866468215139384578010534932803164776626690469981500039240815486707895957721232713026264016327579152622610529050!
 1560310715591459307744393213414776392219930204976726249212885521963274
91083191364068449241229106715386580340347279109910236000607258933511084435146799684653590200934175373959218114703352573381520723683917707534416215734414484156658890253240036332361083708209258727132755741568334361497846193511569840597568325364782426519315448035502358103217647724877840456421186995336106826944087283798443291697038986121463440230287135321817646359266414864638833292782915260090336165127464920904254049649714744540984928938575279464758967377336661770062837495000765571927445373010196160580236350015067429642847555051145889665303719768410169803885806154412141551706144097077252106531792785776352233539011642704147722464533898026168480741784472771917754688581736322631729079961602103452193130466003824562668532218040514412866486980273539128343366604706918080558543314583946676245510487222280650277978683758836791429659055720257942805260159857527980560956873794575257528931445753028248434805633803530069880696223957417111624036546571372029487295963697967030490263157214225219445!
 8544099980993614608411746675972202334219875933815514350353184454400716431120369766154473804106061178933315091303764731201273421756328994663495177940919656306752512642658392194128295328883993775251494753879467877430381063708410749667294069874121009503139177692082182318090525356963876307914912612088572623851804671648906802093195256015121694698645620074588491684126307916459403923320521944423364379557823712607456836893821399865316663880405799202604024782035311041709601716471022723494487876629577426411566324307954507614050502572133704588822182392921970145347323863600350070469690715173824129214184841947876810325175318828062893371425952205352874910957484878740614269314145360052849275066973078708442991052486721829129434935669474818807569597168961102635834975853046439903694758265073396225686225686052733353102949484579646327699989193658581781222495503905116805755204151992265571295798687583195877222104983884317847858084276243876409089299728446237049807386422603031935691975123791512644!
 1528348985798266284364453300949413456054892435307214284764847605743907
95120527533925027599041403542069950656771118924083633347942204158346375538369818661301874817747779268657760236970663384327365041826311410247192931812322243470139932980247838911064779047309393342191254714731020275393366080940244553723127025590284029097881101127235934677385819790852084314003523020586904501342877675208020252005696726187930506672851613076046452797485547130325854282626916603813765840645714034868267885103650669434830487263828711793967401615429392638956855060687367956386575893687685293432156741531257093721957724557723055574889607531538761770575686715233391649392907234545374583404400662225934376063020496239736655868697759482521700184682510128292105032063430754168807951349400634702032880128732307769994168810928856787162053349513227566181630941397142633652153418775064376689367912249903253593001669514778576935610228172052819288762558379510606709874605378015434667836013592853644491580884887615724285182163937260087671126397867912051303198203053988166198296797001932318484!
 3919629598761784740278373390399358100176956955935486720968025952574758908574850532493191508296647825128337506769230598928433304083163150358648095514364832210265051575043930480491688828399243740549914377835844176687478132491021090562861089821248692716772520661403254280352235542957728893907903942998256706262802370254168849778891377215941382480461954975419099326330059777579274125841218218132707623749716761766070954437137019516075161359598330900634337204964797012683138496568265469736156483239314226873492715129232060658918769748125621584175363276523067996607123298370168169651564056903515934228076844413382429070168834922097463403543194357028522874351486190283429663349680860074535663089896765695355834744747233689076253353880036911166703355534238029598922617848515430423683346244773884080165508844909674892050101484090045493959533081151480479964715260609435638308034962136938085371950776053559784255824999616637703731101517474712361668314353500800639371060796399570212596299880761386259!
 5040775738668143300693714437642190414752936936581652921644114115570986
370
00743989182308834867722472328299908071742295526032582223861760266429891607116741295895416165687702465608950591033783101570820870855712078941909379476160822673789901340815000597139187418952358178405177651347620936587663686436151764033117990297432479138734810226498741512324265367803637624636699386998421606289283200134410273339604975439889192819217773434436615888276157539059002646814112745843376914128694048588159077285588547997574153062100705045308408715769908130380172483303736254611783005652862741352950726084148767419368563210873275016810509015368583731944691074192770211181531457699555942433762638901682782908907861835470671887603750279032887811757419501091849364430542681980866301419752675996011656926927310332041353552683754900061562734259461076091938417951505825715708772408524316102525725733351190929934399751580524930252753635530736963799015849056301273379075438908211501659415047497749702583177172684755160574935254530805511795932613153782654794838896635245973290010515516468947!
 0645701973842037229589713483413975523742882758347386813282645099292012992779426175048007436726298959925934285966242876422747317893965652279169229193600758233507073702259323292812796401304062627417893610355938491202798161599843126003979717627321371779106913695772691777641995507555268928708185381519610528667131952141367963640917447710379739285654547700639410698820769338191615466088214743521771211478664557677665413389632348508890697025485588909063458203318220080469829093734519444085696995624329443936668552356701862972704479151692017309222309022758237674570282403042368818340986847144785131572748468761479472460645390146293379759076913366619899323881296841581662060936034701400714197212399175611254492581851322302923425925541053968287703019857149104714829061409167992162926133431705915811710025557506224796448087849070267297723458003751573449700935924228573161793074574080816942094180276642726991773007530457494803248716585125196576320971766082894910745877309752923860647288973431843983!
 6590227797566103631966082764241081361299076731753026651776513920045805
26369370814046259440342915707602463047608618036275470990350823161765576393465775078655489680347363812694579020706318625196430136317495070558019506221579888189569329429677503835263390862381701612332802368918242944052725382918912850799515803756445333438139507851627558567402171147191867119946245294158705468677810051892252016711793864650986977157765389561964459473706329564176140920582452051724783700798231055626706032873369911246232520879672671982935085649627371076678556737806596519474240146406343071097898866326562014664947584676595368615145820571661068665451509425140820480608271802874677780216471541778194917317084169556005172341893797879827163213409432323381824983064859826861819706192702570047116384786886704817175972290802706808674150223908991028217901124877516793766850461757646174466662602284164937845100916930478486717825284767644837644208742326814352704645708400605851690536990062221464460299514552386259194985323298717092095021345760017880781788050112104690093470444461282026854!
 3833051733971737820064208395716335983361863086517979823201727348178970058075934441025313680318244586133823290516865156155925393397487707923619648779626556978568413849106511489709431056827198057982482947712433344421687508341006783938729278546551127592723143573572362518722865932865504681127780150595654962699028613946620324319244565627844000022013995553565461047779442941505647425025135747527942228036961526587286053175264557058179456176488035516698024119119000455404873344416935826012017747741923930882823492043418030216822773123129772417846976828285168170300367148603479114500917024170219419389167947433331343658255906615424507788075613868302876281706822915276601708314556967320617644961102520679337769397332979403876471128810150442808401073540763682618551232541285397710192568950139251166575887656777699477396828168343890082236417638612109252539615077174412705713472301090087601851662609903380183001990519024464709885616551491469215567325086313053410598617348094303465685782628995234332!
 3593803969800159255507395515684567595049976076476396961090305650315380
97888936882579033984985152726823626470204597554581189082713694869408470929346316745133980968040244637741784110779297611388853257176794677546976698867354335651270020962390981674993422135001013007650884061457114215647534991651007644505778450894481944055164778004902403435613284731268337148102451448802336035814592329292783889067525727204659286527776238756180701205467212931600416274596535323464981816849248670376188309164275677270142438795048600108381106481703528490688803571277971551905236790707995663348707587816632949366974361102519510621547397322155688088653150897336369202843484970891895675474453787808541081556695754498445505197129397371623235364032870404615315781356258698050888349143732159651879588634687340208350158535111500008452673602473319671466351467460940472459512875044509985165271224403639798914672594674867914513025227727174752742391569031335868274977274026029757817034618557745491127221845476445773128319669093764079734031095805001359643191301620260798582769748673638157121!
 5100994857159065751286778411648832032051890780140216924640911391568804558428804205432648507200926077269372838900581230206338255114792377293507906707067620353165797569916685539113086141262170325146009417264341958683180067071527953080897597300152329976723292806748341311988780569567946802767909820298118400234806455528186105147727882038375324810888096966231252824261331566553282721365543346555435483765141400429189985638952799895768614498704524250283589718980473047557471057053995468890863171002008214845269574453667659125733212563139243838416208612306013688528938364249359335416437996453672805104168523973514930242418541650855335829070654938772891252956437904547263052654518447909458508327510530588360339840507896872750522128629839715445582231614889367569114572645402847929858747619820906668339298598291023417955841944424839858424498592124041523069477489089821621769768538837778249020082837268836500886814295551483561022049677857874661930329239807353446357692720170515340284771111554488356!
 5158557957981874953899893745258928969793804724143530500709754735845373
04555669512979782890665700783845110156204561480915210919850337126133396138127303885232956736461058532865865192299270459803928035655715716998361089172456099301413841692257993738904999054586142758509253527570339988546996273508721465909004787038565216428535851810171527901140435228997247992378558637542379312458535545226367708844891818139762345015549369095453168292436661777725007631942013085103793289055711087609055943885374334443647761105730881255732166966353692201193241434791300197706960979248638372763566997987701001861396032927117665773130420234687813558108406418711985952377139003510510050685244794771359736826460151535332388645029607601390469042113341029611698720580439276362488885521871887019506838717539200150497118044510449002248878764793063008620075127579894216595668667934775761050735360405020446058470941382529918132135901965010790919275359207970929577814926305189489069719336685077514398021861100843803319545956625614144780556698444633440079673637554642628597072969382778561292!
 7223509420882917596935413403099145310267170266799811489586747168017961210384595561448077682475635157024911108891366546330006242228161270998460535101771687990166619702132651460719101835431177290799245528702132374919798617745308236160146606799303917717282541682031028258101913085440373559914760843241154275237494862654709306062062444427344323953512482314338149182736147605591720801907267229781326845827727966078340572660256808883084593366880106758060492393833120880070586559201963255458516505438543926552751984706927195641379521283685300771678909949132294493968430188807880274750345914108058919770891984579129909959831690439794586803068065510874199300056672898217733649649084214027368502252384403744444624820327436938117587906329952144515200071959258841760940928652971300230421999322115679515973938367693468387756847023157452442746987122860808543957147314047568553120301523156813155304682948188717922387594816969182349811238617711033096759511482836281908845071814548175099448733507510787485!
 2127972305185491165683232715624013557846595376290510780700507004875104
094
76370651601331525426584331225244139574908920466204499357186903541358529488786938318378383235976071011134810278748250648984818085243864370367817563198842169425958082172765389594811135204992089646610815302553321271930664293386558644673936722133941513951361012927669508050068639484231078539053287311094531298217360253772762827925863837066066510197371797263331303686091586292903642602101711219782703164612415039044674512600550952534791091993865711612868829248840841691031469918545551722287762381065824844234861680376538926958856850002730196332596738337758478109051081314933037162042504035678495857232156249612364409289488593295268155156227977052017694389770856962246545298748709765727463283730680909841285541269881958601101829104362123179316959759289601844582427791781508433839113553683153264884637676009251352454649074518330715765928825619591255815800472406343212830869068858240502567672490904307381744000610950151361521885549811811164065404021834937632182548826895827213573591094654059149594!
 5973580824179407329381161877858389793536793609498278691220958220260854165705545234754495662775722296109042463019652902693570933019160088335083307847686659281126738850841378976704036590501099286215465042191380168607342318336657376084907033989110754508488535008427841883218761385826430629815766873585984742467128619223046001897140590887167787173066672557018095685741206082431041611227949166266515545432713998586727284095944904349220501754444933175780529659522651292470552453568406364874467289134658089573795804788488295166434147176352366134595196475954308767092468199966537645015398534271187095459448968378530434503755482511467144263251007410123705699575940795305291133328976263523099629757438382387373725725615577858094669486722126758859171906434281394051390285509870963556291215689268188097077538088712903818345725571280621633556737834462951104324407020341239262923400158730785082419453175184606669575554715336188163902928325270083945924852617371824057135950743212332549691897516942496694!
 9851583641292630674793000081250927676295696932439137287356914035579980
01745805275456179454208048177993768446459293861298471157842401666073477288134534639499247073540037650754167094953004089721497716381798248220669429430916008464943404110962667480981770576343581892241687294182338728261188340860617006827387515066437955393721665337501525220474691000361426181588195584471296773995933822099490172296856091428318963650187364895694845644174885835476785671642099926659365006404804670754267638428600344134072735812958763891998910620193499656903766656945965261968361266865560414576132552680320819337080616793692837105029796938936992262707821929541005603249910984609627430909268312543050039651197237306609260797792892443405976946243904640000146468118806636897500461130363679779985887949472128578886544822881133776800089150187808969275811006402852746332024060792433034216901274467942256063073843746619551147758073551607728326352035624766020041972611425171878656487817263835785941229447915807916199082965438850207863998516111044954178370286628420717447555160694594617308!
 6606084531045426407099205927804391955031298561501276936879283623519967795706795666925656565701637422308965207977686891914744008964408934320050514186407334229163762117226559571374300920914741854407820616186609883666811148645417285890305848434415042937836596065894869322476779459716825607205853534675926377947240851150130401252779662724651576043088504426933712891343799574060706905362957722987215237755572440330886840248490270228455400831282631238856588216285339535604719485123021237595318712908499264601373814737596358985316326142610768430314407332023612367686865466424266829289338981970162545840821534070091312872854584974383020451715092324892707119035707113127900039288302555720192534718378620259402112450209333776791543854332020701257079828648776454635618216438464327214800598686715535900395167767705320430139332856588549999980327392475128623640714931110382859171577345772477933198714043691828626154722046284258524110653643469489281161185217220675228832931826149637874106198859522785363!
 1362123617736134089752239784633097547796432755089510829985372373105695
70151040713620298884068745099538280520212669714071813307625457505145783969068927009334369949929184570106410847434183027842924637866066279025595861993710373816724459726502283707519600195151027872918496544578928025801941883571978757326124343616127111291663566874586703895876086847848417843325019332422366043671889697951284994706543503224007879342931868003371184332180775633841172432557505222425256374832311179598503695300442697064181197774845299897886851162364123987628353227730405266540998462443226692490422673469802480365861872408268138982302611882344657581157956713447176449911120167794043170733017450697712857526763040966551805254492857341501592913749501999853744833628059884476533672047177351333186055120329830635772104822090853677351956345790081101261179022052063499056914179097146756314683620632915974266040712501208048124836586985875712767563538136545539650504477068981931385986625618421212157542028806356416508868837439329113736968000569847268250911098141838048296823681958208306406!
 1756315816389052791425181890305014378458963742638211075715587135848018284525475333400472848769375615154760599183391816232900945830498206480844838164567342428185502462895951863407052241583721572231170216771401314244221872400631090535755070177615322899411010591961747898241846278270468485920086858023238039061494360803189367883984793454095762590253670819221681507295057462408541448660480374852046735434679771700077713940223794882014140871289126356999495875827644288699377174666280185182723084362815216461819971374342319531417843714711140000875145293527674744847256252339234855250151375258389692574815810954619388649021706912683209857988470616263680775931321402237844892061632684443893800042374177575353627752551979911023237411216877016198357571495590557166512912853370718282567568132887301301128058177796002121368361949507253960633237471403907421349130098832687454129883178132838624586743388819221952648086565008988559548118202414125367175399731386090754074231350014566120127848232572185306!
 6503498088758498606622558803563948019484348379196029281146275963581908
93924503474484694719910489615081344834184711910363112209425364916980947120723911216001243850519985280862792198050925772603299705108527163746487876873425961747697880839478761611275640449892970728386130688855085924282394881535552648398724215008813100717277622742746179780543230944846987986339023985286726290975535637779196858364210006990626031503392017579262747381575442413165612833213262700469251641983513361553784384632712037519751525110151686189730906433692465615168991245949869340574471989711827066106798680884245271576157780679458166370557935489298198231444045541943979318189041330323682474219369484241542358979264773800150752626202739951183257307003201115503944689854269509599013848107336152609238908937206229052228326598710409098941738117796701645595867595127583327236165032055979981828625185625882677924104715485700246999733902266201688363484857005813966752593893346212826769122347892507415102344739983761430824726723667479621811649821291498003279436196177084695448435666474361481840!
 1026831480436499915743344253974818928468807091280922443296702792091053187196095414845128390801838708915074980216500374542478409665846163554172054442626821162905626782278897872623559897061531393750852226131455340185369539705183203089771046097525451349165661451141721500371814315044495782499524914452020303218890031059397006898871011097336587520865815624650332954912680138942600725873638719947838010187762377470082550610905991653000425468910958538122317611605952439572458247526377018671691608302853247243357427692182231826390236490935032161276179899060519487154643011760590559420761084567785469442823720851894031977921455106111593166673587026780741656752498000618175471837751641662308002775373288625236006723512161095090037872283265298259843176433094631718967330809875245607486419814919279658612220949933857549590416893499225956051088473769209025630604989102533917738423552088490345729730001108643552920519095562889638010872751214025993864100995638817267842139531762531486053897420934779327!
 4619076477399408578646163999248369008238627699217489142002997539978639
549
77383693380020445115043160954549218460148882555858130715529256114183837258553192790988838892995865019371916634476033372562271613691323600438900977148681973501757046128919129302941934499010284954681718479641862192771467421398850219871109717579380473194190606442630898256646287139618655867791233896115426989385768167445680342447915494983159148278637040172041737599119487402723160016002008241455368651519825834310307101444417856576153131495918303464912119718254657632029398159307260141199198881513344421294163967419929232680808881209616740125925615470485199307919503040062522706285998383257511954166980768602415337747442467646043394446204063561459492505829051077880201872915678801308417796177841722689583031215762908366104456511780857209072746905531361064885523518781156815139766324994513917423091430877879078000824537607979520423261172045635509473520396582263638740563743583155970561482771603408486029719533714282537723601828699866350198727237447293971011521746442134112980263797584029860913!
 0467110530045890712047892170394713898913645721053236190515937333471216643268032619057670375522318329838412198259214622477857428920589439905473410449715049786038501579420781194095120859795583980116921474227937132664964326629701295510916190413766594779269949683997302651217176933177545246941003907453985580970894819968511705897781128963499229148612519742294866311228294750727016398858980341005126147979795171480469299119666981309531668759547721579853096265672140692115388331045019023425812915780929565313843964511559655528604885150339996083222195672790308252107885308448950980289741017862262810396500916493088038707978612671093880894405954666230901800753270726593160328974646838206695121527232927100371449987810178123962091178489126181479954862565302068320688193109147077725324143644027919817902920383165664881166965538754983277704547776231413235669654220037677122742913706216288815497980706359687071624124774962229798782670238592889591602783029728395597279588900538213380868198772080189104!
 2330618372869604031726003646130078952064526275435091453781414010948112
43115180786549179243223327301029308247844590064660599508553681863045983505863446471564638155398072090568581029954669352772204248352733378862121953316745863600307649298543972883537049194413036984332588747413096993105272492757916399403376712954431291997994970890297200589541306786047199453952898875101663310416383428488588004047760500697756471526799069309207977375967634660799890256551580261431339028437043566570556424998659812616291555398221346810142172238559845895258095414956776829652075584097046181672724542985510219744083317436593664969542659226223256860901093503106275983621675616337096439612440862835423063094577475070219439969448471620007527793704746423919019213504381446464994179851864311432860986752384379212953565321551550596546808841004124594586768097140178392124395155740399008248674432812597489068005788317910076426334739645944807406664965850200617355111061539096152490672185797164974308448844102791015452302441307871107352765111365792227085886833523681932626364971551503170485!
 2934794832473609582540952827189405669042370853943818931133373908215817786363221025141600618384065105988583022332186157855563906320724023024509124979574351137264435200204554522097574449524512474284796299974200162240449833975753486672905167243837514380203424921433601140424768631190287437482155358005717705347790770883244598614057199895779354703302309254032164143548125824893786157809111682715385912324048738041268682420092312526020339428358952319219345109759565826759729341817984454440782696737359476252691802543302911467526969582721272682795614771781561305699097809580871449406390370462242748077888698332959610909223808702786896298738499870453803511353998829924977898512467688583386810479832464129293363140137973453468472459016443038445991521684752747322354238862320625470766977128067863021941051743569310048260985227609714392920155961672695750141863399812263448833684089633163880656736727346712110096741123005896882200770957398167956065163343357595591904000662813112800670164194465967066!
 6936772121537418760185131202643847671572032753387187585514576776439241
24503571210062764605540115797370830813753818198682244442801583151379241176829163837452824791831362727817871401489470142057564545673343520079279747586006456057525838492848112116017471918056014120434851253618116994757934349528944807616993616335348151134654688962265653418553015183472450778203907242195180118538016085141670499195114872108119011452364017190819125595026826868738503233529382467913465540365653273801445513130996447929042576046834302728459178434771624475269543405100185304322271837595716345423453175406273450748362530122976549165248685207165663668747324685409672089684583727946227871200728027426896515058361434830571979442890890079424237085065306268450299978195697967190086845811494462723367349233474606609780951490039777680207412979219630892725979150609302712137623851677881839271718796726414614050814155345406354367551009302352518772088736546904571904803394296066187354615760795945138370412810818385299926352440324264094092722827842668692411304883283290637962890625163555763706!
 5348895259283026064151828433733283635815411653833152985518746093735918012513972508505073589024221399642763268262412907188629835470869645666151387625561112354809726398594897967988652878722216208402059903653151420134536139076148491403907064019189138997372818193663469279209704077873277710422978252651594379765455995456814477435412598684000592300026991628313109146523679661282423921337193796689882768046392558079346535884956333937473790306505158609559385571957544392951123361450411640342930697189174268921894042140344879306733016553775614945001782132002254588619477079600805999108578281837524135095967309550927597906069540712719819463110415868527412274518567805892139306539258952944645096897768749368138692213963997088978126963861748093150777575581160809758565802663337103257716912064696105230174324311114216054644672117253396372467389598323526974716059587333357328590180800463200208341974338952940341647595131732027952088699805031394977091655655980074744230899090308407590904459771565289269!
 1710754181915462926449115079382930158837131620150701968577987588758889
79568679198083090974831981086090353998576046575887307340155371552894163640319001180005350771014263627976382584307315955734838418715109376393123473875767951232551562768513067176532169377660427445683237451457834693951877448040907323841657285421163071110875177473800226413312632909141848031216678147548972824656657966989508254222530167030872161379174556482316581791441177992979937785286143259130677331482530283958374028860463189070125198020265269569224185735860734253875861478360514180851458928964971148744308148801910420192499436063718080515157212895635256957970263784626221619115764999329827750310433038639964131211372569527852038654625664462351299395205618217361632402608060368015733633787854229811036158144195530927906851030887777230201593491471734674074327118400194011571699751036323485518349589689068159143660996035390553238262853901176978573263021877863970289456641740658668680215586314458895814918320049730307644983050691078177441148559655982273636396711219746642986796044524423520109!
 9073340871903904099681773124394878642632981366711914540438087364417308674367832609014130674427389888332738295744490356968215419421344278235332412839419540663523247607935192114090655113757942195916810260435081535463235680840434688968178611395658884128980402031014698600856964190091982773328539198004633030862229926841817813723815241579227007575942600307034198421370086732331651070621186343423493115293259615127773266167037389670474752005286374927020962197879075498569210820064561905563868709984533656041669800496316608830119473905897223480102726822508556716235465906951508060743564664065499342248660964965579453398713423465935289507082937507508683593424785146778017056484124137409929640682240337327101922619020890828297259235946573531409653164081180131655546265095408316923374049160904757385920970270084842799655777782171880611339063617426104255236363735117345070059081139173041951740569948228717842315425753594793012005620842800612194827364202565714481451162486408171805128545751338161958!
 0050659360261524169975792882775916183695510788015177481637947690801155
243
35082920029935732798153020131654594823648770309257475965620699599894065581072531160790878482744525648490949576545632599284582245771679819963970663312966761609817293525971596114164826473884948516999694256225247758883920318156221291122793401728712793309259645091300600754809208815885787871343008809416550567888628625393527748918332288191124021746540618408875549224222937437704891925461752993711340407425606220389963427664106629714905021238441404777485008319497594383635116984012620789224259867281623950147829341714785636462797883640223521405212471062881951202408333835646013771857942138807887327917585092867158099585748650108081726614439417339970530585656438729052352361768408465711398946255977670889797841231516178145543489246423287002081930975426039752545774348673518992891544314450102773694377468791337906118835519254760938577568781912023976543861755248520890121993998668600197789318967550080807856491945340366395353454685245902838265891875185301960368212821496137625962663232744213311913!
 9157420074474621642619781052558178623624443428736981308387922649782313587833416448327409530829163304516572718592907767706929507657916013809258645665032654254580696747829837719532200816701407776361334195022629363894145588665322651873773437020557771474093718049818320592666594186319823727824663996628995515877990062853581430379841759487371970016732321704635535453640932456251379493034301525657887801054757190065487973089837827824425076518292445119804886147730878540723048607517081971240475446344364784985734347455621657457568119902865846833315604964712062936383329538083525125242034841974758783307570558058396305807343935716581495000135981132624109441754326137160602246314051871708391372417916117358586777429740046689133771367849731280831562683238268852928022158522837344292235975889611219666621366703342810101728267068551164281470192630871533315680768234520316738680897091075753119203449904862013680593413972050394560798414813198073343953319742786037318158575108595328045042239834909828831!
 1586278732759984922211425610531229707804691339169966361786728007967775
78298403677989257399759739108116089451681011844108600679973046501697878500766305108071496673691777687026536741828823942500284071632369819771993187163268855075781278149459020458262407139307972040873631644834184621146647131549864821561969151864049517806453640846253641074629408303191405347130885802749761007858237201387752925250360727755939370843384142941137383374347261130249902178588368822090975140851546082064689740047595012730285037516912181756512100807977796334077437352458578111378466373845953293630713720591734823816347493942335409154726644030933237850758715291512055382103703674887992005760167650859211723895807764105098599274235288968117455437972962269743504431983090377408659306649646475287422950800388539047010051110939547376456884603503126849075208583224932773516810551698455576678561141692522902296649378996499846108582199812616956234535216493618059930426228376184585342154616270377959027933857861573177206782916382031225169041059233001891554468778904436391925769395217580268421!
 1033932306736089738418276339559010762024814307519695953002960210438400739881405474315928988256451156367596744063973836494955036361868503265390940145029421603911964702257337960484112947511966110464826647449472469565693901692844452031259308978502091565825186625826636540620778713983698121646981233703347149718758620396139496755320312088802769411952014538507159958678875208149016989432054009199300501566110772863681487972588554090740326696189067708743614622617936235090374971462760578688236376882038382294550685670607422486553130756276029158922248047709235232820156775161016832892285464315476278277663344389602339899521988297040645143878934971064684042564769203269715832966742678391280361140018833502620132922814226484321573690662718757906703483725630001086947206420051559125403727384152772262640607849086347439753813288213043955297126810577532163934796208258865532734169051285432755692428423385645275438942933869918723584729266314914134595091542181261247942988927165988475400054180063217709!
 3703172771936580308621821608545832531755195325914483300673073690006595
76789256617094051341879355676780655765388132882235581082097856763987183257431025341225149190196401159630406962353380890054462419402432976504010802932171459962516564346536754890583221721756311410146685142515829438282353470501116328415863332092476307929811454195883129369931764246634362131704029221307425375171024517243142615992310095209505587082727149323165197287940538609454670461536304238531196436746688294119844749466931797962397906192716568795432067976329534514355098597369149730852138426416471626867408541272544676376778826749593393917589126467296973293734325857825106328472049308311661780856583074818662443230932392761740295070687372813322465586203195990276577441162954812645292111485175587952979294296929798644995745536123979693140218030117043708867030266741505936415424408198136872315228108709328191182415723267958715934358211060734118084815875012614804306814410002589030917877606077014417979077158342277916988235370759856265232463213722524871350245270197808218349503473285881005706!
 8545561447825841276207030291258677783140643815068508428352901568668107103006929612197698771360350064183751390979530704530595910952849360622501182336449199954816097699013901088113287289407940220611603333626895141033139946612229641575792638447455535237412381881211938197742138318941357257107115130559539085721699847821423453335688822603915729193217048971046152288895816946074865364792859044835494906446150396955304684824017681103673072134999318327430035664882313647852342899894463022975420292615727070701109131905262979083515406790954509233106138696635759045224327217511921575859877272075562184014418572979866650091184521946007833345318536063107632765125839288473129491007197365907897174751811640248957595647192084686034061657632638300548224299008590507239311177811558215453174238853120440172789418644601183395334466319968653066784143193263808673676379656945896567608950333836492974523667935514715265031102726326575983132597048003395855077081677573239308416997305061074902379345120141099219!
 3206601928480223570831760730880817513447935647383532714479320550793166
40727662438630942169610186572259435650428126808501631520442789380598963284712798207833645626748942989745205498985406528628579197178153349772739895938520723631942837716754920947044699327544335780170616537188142683660560682836378670386475155956599926238060607423637156645916991447560309028374908777490327814120878333069184499775867531218312441554442390354911869385161870796345719636650918807672358289551712343682787050568523716208941697001039037292436825715256751948769220826666055641030415238314683255979356265996203713080173662569835839159649991402725530263046537309679014988092982869850765497857996695499945216338610605954104750069857887912534152492989253331845493297182623388852559279593875678909673651853204496536561213046180023135629457137983064263025331217501876543624403428691324107901917435167583537077113694956032602153308891798954496886204904175429818876937013850781121115740291832617494117802766265000587271576716969181354745857363424720389660761146606929088382616903004367095963!
 3054586971529006820545154647987174910320119559413211513433770985413814532199869958931466656172304602722784756699105032896989596126820278160875562218891432424718700591564129825140350669263939144625970249484685798094407895448305374110128199126409566516673920580155063955528521416216159732791586083454485870807226152492153447969047506419084438097485640443983628317170833457583475466893517948141168848530453753310679881165216608459662045371402432252169480360710759825377534116930723276876116621985675962705086044233055689964039831983208702881288237313911216742684048583820371578667825659815977083181020282177363164290702512783672271259676381639477277498423901951298358435219348626322624604033892552705478567277436740597415869291540878909999651267004261354695142643806596630876927288698914681461274312078785984738919044570981868982386199496008132858795864377199846637691996737480335694935931001992955014697604365893654760421382699432276538791048708575011646322527136503334290181717623037791083!
 6723928297286186262770473554358916857605549402972879863960862867120651
484
70503025725796523581528338647972110106133103144031363838282465960898604733191625417931006069650528867569371730139329107752156055007926996165722004057973450587122706456103256151767904145577026907762147971232464145211267894826735979424487086398385502798216467109959476906416278647751091549307242389725129167699734690346467094985347981217364787392856968789495939746514076510832811815253471965543849417347846681544633889506172141492620885712528018396178730064085357120457672369157873413760375489627592359255084635515304980406657491679582239658613243269499155485478838018822880430507101315410254047927684975434443238819281060902260696522956669489802775227601066655779683554755269155761030982303897689439977329641161238439144045734249542370832589869204687268252742233332020669213699737157836112594527521935846903451007336151674746282378133020039016593484298338487978528558965305043870359734057842742922922189241801790834329388851160479382771218530261383486484092220841519486944192799410936550022!
 8762534169281089683222277701029169745422591102770497137981233091981805953512089211121826330247269159733580057117995825611565795253175394424384553193150883369286193869269689532752133591021766967765982541685679753685202604030620354387863597941441193648374925509461541607358281662007016669659949353578011203673247465247893518423766562667412702261145620369487473237660685595092889832001968639835498113354120876774931647486083445968360951520784839783402517982617359731415303189781094375475927796817269311758498430847791168647123233443822348099904878751389171820526816478222844729761184198863039892915060180973116944290083544301885111026946015704780656404819797942156312557464116720572832364656333080514331675064221318386540143745488338859319809753104283669835015959212610407386233719928450620598281840801303131331072969245523976226577554306316993743776198962930715851201301089370801013562208036811909056697369757488236303646538360658550708380647433398014504252334150358073905527720437346728735!
 9543367711069608705643537214893710189966333656083554298619963760699343
36820374354358906334748051870676113575567169445670908491198266829785109953284371493009703625886796295390822279278750478053393847724901989221708335682638479142977744770022380472404158400827341334708817997532354692454892377150518382469161907145017633594920160838144905281035849454196582774613584412422195092388278443515338782375714543124413543974758940435364443860685271566997912582487159108036508736381452849816954779579375045054903439648904506626232787801623395012370898404180411416565247546020376219697733091836925327507408699059054227255079931246299306114750091403114367165059648575480173764564683312656317242378258439862979301712264808361538993135435894120687523654981784050217347017685724749194734325135777179793329419873755837263242875143341480655686878987064699776836262854770013275840098959102305388191296769178943859449961276640888710947296032362406989791583639877862642284405410129536495042511279249106477775172066349590573384358279561996480659976383202813822519845930983758408061!
 2893918093452229077497279883571945853887924092503908766745551714449252436898516506955690240591994153776595441949455118294138037783016158579729516307487004639656128712503761898449673889433414801849035095039338874703914264528860277632365174340909775706748415731621064035319847921209911956701775654108788291906011379448171820010724651063577684591688093220719115584478269312723524286738550557113835844925789231553270018610827171356555796750890120901501862122501375951882239821286203166025279306118493762904412665573792844003905293826546240920743254325610534453864278477878576710250647026189315102256535351842156901345427425959441839812903433754813101496049196180501961111183177280817288888955962897109850951188722269037474083599352822565901068083577923110508686152481564524574131928874497013213613667975780608411717127147711751877364909084548056816094144622635272375418051393539479297460654243528161314962157129835099521943079782354617861364387800161278365665175287626516510517918045125227522!
 8047496110750256628696071637161448661546894189756832413424164463578726
58177379164285510287611598263279179100511178021513192490227069441374608686134961033333424094645332737925839148107151000098703093514389927159295900715644515273639945670964188239800564506701326228296255305552451691300485917217296037812990419280988481721638366602965172172742376223615620906917340713760209335244626220580942432175852550536429617739031190311923551116757435525712501916800055239191247647088175633577674623804165614679374296913734247647694498643879609997534633856957400272271777799153358558870541076705288600000848476913191483610802289573025948320367605834577700635642434869467316234656108593574238729665199935865302000594709223837911812844978373025650463246889474128762050588911176234421998434615662011953573192379456767016361643470467646519402472715112293512759174771297327139700784523328443653507828938487216107971493878397982234118536429358601287412007644682666544754640026941637587735639429226544255330933356312135233310962870056347851634270068260957273841277667526708548903!
 5206911420431588770461673977826564077457311675011881723880738457288718369115827293302765607739517336030003856179002842851497541297335876185818789992326764088657013670053469426206745324306764764055885469602719026769361919094649987194403924286624017662229962796576848402340521071395685259410691631753928116930312236651055984227096015522711345082042839483917860171862867730980775217144562654227519614944313354769740848603407316012468763635703824318017421123810566191846602137099887375912883802730201804814822089154795958709375900898803666688542406308358106849117675458974599250351243739319895679344713897715489229923687722074406148325094503060930800309017545083137829245570088175191889626815436415232691086743910442211861009044609620515312755906394991960025663585645163335079757674225897834142450310181893566292186772672386649956101638802702750813860080070578876108692056622877822321647979381598341451744938320317323861113241766960399228812153754990920545458633548113545394858418407182186759!
 8593722714657546326706416635785131539571529617997813802548719747097052
38639082140486717805053665269127397613762646743934196292050120397097848582206716929127742380431821195600979069176647660979950156813399932286417515268134604493346334304315119853281815112747385581363930946522441219951185336597305897277828766139749175590016329249294066822147617010579450526744993829741267488684717673118688062252319248354547464577370918785857455705414797170114778908773508775201438592915040173125540014507137997645716899658658616365177900793638993497538197325600244939922333695508854355227696913420416855910298151235080606328361901454072743344980541318168463144445376236643394364961243506807015267964353988856237874680509401802209726990699866134955848978896017034930518490391089398849277182388261629514257525763501908033260459958724257199459235894068028486147703655609067026222025520248292051427928998711738659232913633788063634185748852906748340600656370757236527411498943794166209323317989818319486145272723831432319560621976947165160006226494500976957815325750395981234100!
 0142522808698999610429429370314420431172703521136552533965682262911965665495269992181084903596379137917400116604262751450351192505096141686803656946306300327477710606422180862692060645458111346968487225362213709153732011249528554213294046423901426487667449260350829461826957432123484005637840300816934240951997270588042653159114552943935206488528915420265310830178332116872831601909707350892023733884030517666510703543861235108609624274078067035020451508334519394041414512120871556446392961572412626273211423635703558164269821330475460732745851708970337034985431266577445867747013870829937016849730829480970574769859404298004738343378060037103421571945909209676839224319124884018986060061915395363566271427209910559050527565916282488314661902589817170550868566919759868868307317965103476128238894007200218839441839399870366736351265712101850772256330997236869647657809237111801806347965712033449721092281878293335809648800117591390468085078516706321810620544485762548799488777352852427186!
 2477848163271157551719794717851200510863811772334449029803948548226746
957
25900818168416654141129044844492702180336987829983936023496764326372150302603815907173233869618184990152973160727499205675870561702316389901821519616246108626503949725709519631573941479904736741557376455028834545384331826146035276447702820919139761642500720739802441560608597536811099589146344419389068483458974798956896282584572544420638958215328785750802810488457332881897301734958301659312615058450637988030240692549145258361312639131112357563926763255583234962951763000574261919496462530021754931856156041919899017338775825320172946504821797750546132505441356335641310847582181716094200995430556506091310794293206804031888324536773827444887415764723090609934147359279041083931469882007717386652579112393516739949684266165044876750621383798898116143543153077607976492004909338682904526336401693685477098603358751136128035300080114117237790431898138527460055778194386708220745522034595146079024855724146903747702788926754959017432041997340911190764218548547880111392593397560458102576642!
 6064709748535520550124605662911227580163376442584791998799591241629817785669094259261703959311165952507173584011496244370852001374184564710135799479665177290679618871258484666761451774971810082632598413433322560755288912722205417786640939886252724997973508964977153078434818712571122629060492994466981610912530439510542908761546161134603600918470644021545168562366397418301138920636620047526292170941524441885603336870034511929026129257969842206591304752231918434080310445058411488262075362151922362857118059499285659936000894480554112857656213759378905320634452035414959788540430548603047242314851213001223089189355974069892306366298859388695167534081836237737139034089998681862670983542243122878946689900418262863019261149151935920400015441708726605929685883760562630324150247549021583579723508029995414737459719281984528919544023998232473063934058494652787010199560026230607501734289705877577692731475442492430662961905034633767423816034351517450325222220584917843238538134658240893029!
 8689823008706967605336701996016549962361829785087694173996502914225489
14863775394693669581009855721389050443396272365909022642764013605161498662716917939522921085895583001290382889380443519251539916084633043123381178445401352755561324200749948540273146824531728417473924255848618678457937846688197701043048014364946800316160694701380274746907232298929297919362916715834582761434391653576186176471082646525146061026233838428660702529926544663581531665042506583196973421998826599156539800437758263775480118128980800307761621504144335382348891652108530214344169146074877514423758014623155950569133868109174289984741585680096988094327992954115910636166399975707981244550715567129890525233592129779059217773824678480270921372277865129786060138805443976537475920321977559018521052440892940284372719108559841316124523071748336313086163656695475638343897027265219963464737359341009430950887812781047071196702066090683450609051183220627257613799012071860623123305826987465394362275779625527653034676388948097715681682958624032237435166872228213995110315255579770643053!
 0237984302915946325586419208497502764643783926683557808397669697758141109268444426966037314611317611294460610112644339764875861119387450676575588928654711078830765595259354589470505953410131607411081172489819999407458447185156136925533372826308667227536208338679073918383744221780234015712782418221983383930701907544195204916628917270357673834266494366879888954140328541732833054421939604438165981792587023942924002656485301210683510378108072552538642273990716714913463267628590393194152664654045747121926630801148668339666002093257128907794293095441452800740795315899827284630420661909188629680150833173159888836118904768237551873631013117687151765366356452828901166196732925725692936583859082473502482816087674095226417358619061108926402311436092621321208245064660103416901840125144988111796709622804308490732634159728725858347988223349675428167812693804772579332233635604926591056350772881334599412726184392685336355905229237485083319829695328418193547021200729026716184395829553216836!
 5112032637328666072295606240196999836540328673863166236943527302765730
66359382312776661931106882785785598714578150722474662552328605856605024452543482036987712756010666199724616983814868981076025478151764458608709488727443067184599293828673150174075908636233818302990284870901895142851147392172854307806346381460855789429099096902345796386912169052241488783574954334752561835579125349940298901139253837093500481610442687764387403290453549730644565555194846620332738485559312386061506358965885772756191932616297164812729071441796429798333819653930915657723948450721513081194634420194140563203505829995736666069708340633312047727855735650498203867231648812654483678161713396143909016786004586927889126765753897115819313991927885051617015038598371210226918900111166707508488747559249107787233281254193461447357719179646351550152261653052727460336076640163932111998433196392973292552525424801883887612689744708161698298337343176897066331487689475901138031546353521279788265637812228591484194882413972544823321556634094687296160468896414162808326363151162307290234!
 8590307796004270254761385524755934671634030210169933441605519492292933626679269888922072518871304471815410397511129471104517217025575321392537808673031525860407583714410462182859011288033760154208621241680308801988709649057068957485661657010729349701040529243031951952362892094032846993205356298639326394711758871445860495548963082099567618576847900160423643857579876561438331482119840550273225338590657505467877041396590470297737859331976620805777711476552357634013203390309159553203811365296520815292572468289394418839742321308671200456500876850726321494628996863691585451548141701946649781581127122728935316157443384185476337267468465941024563493120420074327483369776536174674585390346007350178790224013144157545005264832510318731079109209783706213710351035487016216828789092014850282586978125000250939220007573700741364977155827319776771031023174312976681107197666408712350049851078887432840479791128904415441757040281265683175981789978986132530345954472484190620524066937373274128903!
 3503499641899591541403697192738991972878020394177399206283258655827116
72507835912884263472641828027994701666607098766226933111019257608714448241773902392530085814223824615760908294390243092136403766394265248737119415062627473448241527536580415439422871481010093555067844969441951532329717366877700628116750883480776384455529104290931327225593765323506117166929993582853247070362866419368867039163356820189300854551597205241622534100832923770146090248983038808500214910598088007679436539203892139590547373706451916773418749635543429129888184769473142348191901396922845620646343005862818192631481790170925440171657887509543953939796097780979820888701057131451143597044502774526356855981226453468740241249165504842514853035283194284798280413412121474037314561650087111904851389694899216494096289475380287664762564231578924699878591593463909920914459601292501956735547767153533692017561695848217856240213607057054090505231464659179139941349491313568787520880638006759667987342779796205656849310889459074837354663358177724133224214022532179391406050442013457830246!
 5864919419146195248763432552577369133870788314939974929719352402137830147966457996886126689610518807979491873401463894513021442173944591818910310611033960142861147693610656843531021613268941627823869802516809569693001895624802235251021369689127513732426007758464612120179748491713971801060549727647662816799879266940435540738101241823273394693935722815390907735633408865847300398691991024821045306908552662242579400801884597352889726559425884641408672900433299806536934397139154920474469356797291100982948031673758661108337631215842281903824700829266707599517186926067687223727936223532756197560713860152322545474022508843999041832235454049511227120486699956631450389952487810313498559432333661213442827620988217136168190215962428022949692689840303790049107448323067270247731638207642174439628286226901106804515459905318364829493868792925330565475681596038118896749590614018588436526226657419998670734583310336986483555726985432824825788256445140322308611810784660597720152649532126696650!
 9617497363578983999002724180382130953623805460152146938311919085564052
382
46098348534849910596645729036006405520743243483831949717563666465340135755690803162146624719532808409351479103634719313665512205276140584907087504537038318762025705424375839300091714250507275159468665874095478654847872138280494312729793366095149467579157793406072408981072274572588210817300344361074214851821579759317318259363006075137243028287385810275246122066541783617777002478452272047795565927427092423572367848358900791151049854274747282011764663520321250384461832160022949528995503277174224857371695997369537328406616448723702679402338363301517803425855667734166878848605899004542651730049048874472598698660710223865587924617534853685642390452479789290899275757368790961425108641948591519859359458388813740046654572647397533460832744046653593232893039707071298443790233064557784616895590476673880144707751527201501172756946541091400447617709656170436786990885082718135849383275367953379474644814001927806612756396568408684093900769848658921091673005493797032993741489960417347117522!
 4869209616897505586642058848426884637595843966895200999318465783639491358428557041428114447693509364534264681168692536383020376336768115927887781467230189733230172066095759311429022352288276147917127640833700965903856325458743767541873776866717861400143969998344696351965338338106555138952502498854573383170584237006475863128476132770658670562024869175413756791198414083944535531054770116760183348003233002241542822275961327465005897013001628289879066237586987191895508826401353625885749035663345424692304954184238588848136673883148719598216029308535779189207724473372335135419197260443931198542606633033321879625614204975479529905025625494262315084293453915763469044451179541711649623096102153762928884484007261668901323029699257843000864513527658108445002029153853032656248396041769155127999829012745904613349088215844253035256361446934247307177518727749325075398338742146738286666527056304084218787823216716086015728884281888038776281636729468743256270204110189726222279535795932994356!
 7375344563309955005819986801755234990061814123189047882657504879278597
84967782418528965633946967597987337211754624695528844881893760762866245637205434251791605346493450257329132529415187148619212752955928050582621339274343449520123964184731707778639016079814280353919215380053053746494186670278565045432433483971961817056066983496283255157928134563830226420682793807563937159916952700138587020281891702079487367127437299010708798008645518839107658040876638805657854306398984283185595503715033669414714124862710294756304722983265164483994135878381789255797118290048631603406420335417946260525728503588612253270639799305000456509351183504411611115287471104310126426509953439313822080233306650665173774037364732320571906555448542951308275238364791106476287222028501388575910558445510478992101837106335157971205810396763696393857248471790393504902012849474112430753925870148855140038013759409633565461383501062240146264989292130141796543157080711809246288612767887124813019562032974773836206640401417708266187659091896760801131130669857612671339816036860045819126!
 4636870423220297973339316365681335355513111420543017538052410503272741797461275737502910058403042059540391759654653986495316664027241069309000639094427125671474768266234351002278393867646019201196762214008725111915757055425177183055275267383065987916986126583244933195971227624841604111537191537808409092183897632111784808646389305490227228962643787067404217844817456665367747536677992016370867226604598329851753026436039465302459004131091380221539698533002470063685360846502212335068287333863514344955280352372810972265298520810853926301832676389658487298539720370803148727639145928448103725431773452743770198146028074029893815373602017947954338374804235254005312014027803849902845341764612661137332900298221773188415600809055151377560762710879085423495602585717180997788750910891980620542092415790223183706643746519026637561017258871968542324576393867069361629284964853066910558650093324010154882399398530675913745955798144772851105945082893512058368756554833980569558842110260510482516!
 0633916991957317846655392699543118743693784884075584459475863563068210
07668005895452100378366139587479203899744965801725672546935006520118133210859536831994187135107703949816116447204567591360968123046089240320875880756413497971242669863945691376243480709775323160045933735323186468693877394299670958581173597948290128543164227154439997352158675700478813687210574532711508221658822720498954270234208501181643312524736349240993371488189990102046608350884601374322318610642128041779272209851310978431453343981213385136261795737571733565705716155489017420947094133851952456848968797289779463633758797032150504490503622585087426796652136134993171552346289540954558278130556656711844691356518775329235839852850293478830679505261262599140376394895614890068138807031615655973999619061306021103004268178612424317765973279020287026269398663744212086649945149153052521503869479911574962443921946532492939978643833203607986756559869834806871059493021348332906744239605394162759377276843187576982033706375062594908191927045935964325834732588004428195751345520100742503643!
 6014704862987648634952838302347343008055996380999513198273803111679901980377545984242967012960186349410089380603789912240164436688596192838640087442947258281061610027698238849409245437137956245922950780842249326712983742618561339866600947094932621765285297157710891794933178229548525070918570378702145966293412350659157566202882517102921208639997891967188785415347755874699485996247844287684748738004757079323010642239290824085843554068434334455984359533225480008658592977604329079061672547337946892979905196209176754916938688217131110030208922613027398431220077493311982250981061984643250384967647734664826641104528049669280553642939671168921515282096126740755642511645283624600127138100773043414141623396991456613785290951711038878025312744285242826629758383099159117236462535819514213717971492810738720951565238771560109176529444226630381928089730795916875169102305300112141391211392320845282976899541821323795852639466646943179979630096895924918952932596512555400926538251968042114963!
 9851374574266809628606013263622660560565139208043633673730102218101539
15212459434012715295597777033038854395319858645091915213436147358340876703945650962992658868884775833369755423036745104309506224764101186721047050768848406336364180310846337552229678129722252515546073903495397472873876474951416749632920426830893213978012124923658610247150735585468190775321111062136202800780033559634684520419062029354354409697194868471003510516506270499812257110910868397550292268587715015849624722306332951779406054014345656284075300204975835442573939465564453112070240323581279028493728059829581974689626341006282701956148486294315618310648504517457775748069396109245271694246050351046417621737149285075414763526111618033707519212230992554475531500870983796728046722164793117088365801037679511079189091798504203880054064029807135642658338082412641122038977073742325806678085375855952102250485006563130511320806593741703290802718815848089960074132813936218353214679992879770446294864270618982415988286990850292128077856124428431901005309399048628721977285538445945230049!
 0924317825825162144005009357026847696325210415190179843002521116472864038641482253176648299300887286090328683020118541812563101449623429785347777340338752544691231880619781423610226327696986284515445515320770437966038116023621310139139182327541821754959697626889507396454638204676460248993036773740653912838606993299941944209261452983593459260452315109885778575340838768327185165967315812979872441452347708587859393888906331944281037309857981031894382165300063117688315536161886530662743069219819827907907022627292797510332498937020672023417035340397569010819120883093764998553406324028881031383303712926064363428824475794635048600575926051582463469238135579966767186209021024851435211000472068440923711749006683952894549912705592711923927950451118483156573580859801265909563292840286663576104608450746763673724556537295717620805363703621303607544384568057231822071270589058631484863742990185817153981228924622071084104774354900675306642998487979324603565585298741184100228233373163171729!
 3088899067042118697739360091101609727400699031984766937670478972421457
011
33811516931415215811946252880372852899037337048839314750150399666115315422794499560110235519775270579358048699812681659209204255616475681811724977182994686689913321174107057869038675679874061716710453357445399903959228298090795236604210948949526764268741514399922043107495437439489614649476786056256025339229448594408533425046351976018671971862580739903391949315763047082950349764114747922892872529013406410469407215072409666921136894528610409261435380295837183656242163456883871885826812782511766965388171049331266890061281989382770496827079726495879983457831312597023354044175882676160489174380435517767134138036776873508972855747598814400462892511897042650568257138918457026161489777192252066451944945732810689482094900584046216841665560141257695880021635306968158193017205576828093673060880091476046891159980375774937882117510505054550963779225415186424926999952396417746360564463702267761849743848466658020587843953116731101045077708327345311005773058685985557980366371012785541307912!
 3883022846676414291681564231304956185423513710137197428959775801463981756615032749820298668545441303944869945276981619555072044080597346961173803877246546984833585712939125398419629491009202910802327740547940251691231281790697669063853006152775124890701066810761710915409466577397054753448688617043601667739258371308637497487265473043312352919679118018203949239464422050012793079198156154592801612853984094272424283553696369688224656819972710884802710793690250499084128152920240803359679455169365744838232054135419696288757470897774658215636501692847715849227343159242331272979081977404488090600597794542367761839351540311692938795119452397357321639716588780093082075090355924618121337874195466170836169974668904952217944618571125550507559361869238518592510897391218636171905195642293879742567193457646194379430487867983044339498971462997100136152902501349305081321226771234347897823723192948759156456768584179652089204127906760254187092146317879120114141121801340036913128190608459379283!
 8701272203076794582202788630181999034964262025694412265377922541518231
96819573372530755141005191945479899648334127157284622971223053782506201772965454124880585493923685637256174209806534055421518487062576516702631841974007601954024681465914200898727403053963216496157168706607616693340594461782943696516492766774701381977382249411126384430355441498052746617975146808050950507112518511053618011037576286445734066060548281288222860919098561706525308459667980777146702726796037402903558092203969241174732674707986995922579427639596614677961871640473891592993676063137697153591361950830337349462160921894636222840676307302627538657511463813493499138839150667813575025322762901823376973214310607944200141415035088428150764559610425369605039472297289771159283773333286162458722003565290773927712629004582842126178218029797745405976135075627416847471802505321584278334709415133634078666691758965478035137599795474325411597897320335352695757859286869101555661626649641128899201092059055107808359151337669769476993223804729461340249998920631332124527298510860789367152!
 1555144562970912064622300817097889232642437988675000067231647958111750053854028314068213855931904994850018608160338087831894089437064979444687357770193280682608680820505772645833148572529800709255562118430776472431745300833463074036717497966262597626058083445424125220248853085542233998115393377824082986664723094247741464389768002113304156139957888418346470438687172012731599387852755979323050469225699999858406910301646033309837881891805378285304464811012470712411734201982862368869685130443727438235435864515681434049394335514663197401585246648907086272199692077053153041028089208512227985003850968751976869781200925110893763121992025000318521626214028783470378876111314726195296266732211867587535659732702456706993747419754868499693387179556599667193684112250698685862203902713465840718580064985529328042552300576897307926628163406700504817488666758810614692190801576677256561320233503293120938551053476422801963785929961961986810885840922137699375708824283575611233189128671806488865!
 9365547045567017353310449295578525291392814797580364167896842407242418
16475399617385174711811390764508522979393455512218472384048283213111297847009379953706114106655317677318469242065251560338188064575299403018157831811513980861957114302739720004264550774029265693481972096818897462154507497578068901395250779298077233413044861306040778136832132361855088279039434332207230357905048534127404700929443299033847686112490921996509224006879524568024515190821489126249583449910681194394995893180537440329058142064331734927648028290885912309888370891651201487265612944333617263682925062185747332265728106322455015637090058710809175222476449516850936096613804300618982147927490855908734735526326331813910577078203978774210384345796123696879037921653989661270589069325453826307802645773433824082786018475570027063226877931954964109389319027057373775354985934822377424937379340464821717494256071753880078713961433729346356247681937472574238403268085736711099937935938510687130501709204524604017023707588857770069339853760955134567376462916623029760720187437719791165252!
 8052908602301178282589324033758939083538472049219057126738166540949531850912621622813742171188707253258237657202152281633046547265059654934759180852054644079614954476668139972115649477558574511394285119644516263521521918042609459319966548465111941812861343109744769704882673945027971155884676695987831224107749561990721849342246597550812181576930767488113336435992687409850303847279352098880021297188916545628052383805046666746210217733982334005140574736396753978756607258256499208780685689347532780883931687033686244904674864096459377523206952022753139238640799042654560193779295051505023058379333871732024911418619265728048417523942808637536365984034718299731673733035804909423740546383650621931074540768013031007606321240782563885837104909299390027276103565726627417701533558086212990882735820626155712220198869982262684821789616170468358568036377325924982420059466531240165776733348811770683997963533532312549033223882253485296347135340345027694547221229157130322941033541751168272480!
 2595138294548923117005117390497108482919289949226631011754948381103338
18883781503174689919012214131839294554795355970783094733615687501177390576041097133737371367724171855192154353170205567176644858876106919504339671322242069535086253397630309800412841828497481770994744918023225939136694311315060546198627624448647994186184569300102022560600861198711446255451621839741479291640177720976656460613289694927935547224790822544354186873006064514241140049000803676908523912120756513887076190043555983971837546571656821622926594160859691184790719776028433380896247650942559325741277817153728155695622943590201056623868769417415756999325490329808970202268238918938219085149901441811763239785819686956257666125523271366608439557744651978663786583154689369503854776966027461589671393363700520819645940925483122066427490552009764774088397661719935748623410427048524190504917599282607349757147966627147412737614251220788330943031337553609854712379306463349840753019350361547978338891463765410189302595061835403289712625919857134151739079293416376014546491904802943863544!
 9375266406850862971568530971230522051558453876299755710637580102194190274023075487349705481422931509071310584950057712739430604182295001876565305786730074574161094422469114153033998580663953496823732258115696495105849531965963129109335936673925649402044916091851197348563528335611147073089548450139419661090590861277843248256800064313562247049682477330004675764576818265879416117365849450734410375880669274625560618547733826629743709529806368062730545889103572773890919220513411406148685804970342244307693392944800151938206373632878771726689422249605590813601663045461812569394484514486772272083173814458180649960679539095588374492471720285107496028092666765861171020482591897152582456044576969875464131990133255094704030810934216063760704882081599613697936230401730901348523682686997426679464812946179604981484378300922813507092555271752550995530129802194040012796042728316134245632023628324388545474723366247844742685992628139632959780689877508501964456059316530694621675554779719265352!
 1485357822377322622238433545929797443962072125079090124373449609112283
549
08986069858726131927045473436142263727951008201507126677919530138166509592035989318499060316755434423628526765418077077956959316948559030285737107515086033556369299512172391504412003354067964497822642235106076104416704277041161504534766155416790633761224525278469520305574469574988898744281023685119913719577534895385091001946799511254537491713114101781396113570052544510554225225222176503116076543021206702916241910921785464267189664329060882498047453499874537131882563766808289778121556678851501020526024585085162211200409563016382975022820098545258614356988192857915332899284649431037407573511050463712803923934414955044429400608528027231328404800261972693809798058885712537929109817887897136688348414930828103454202870357557218346680013177730443148364139278316608057950752308261415084091417021162384946744415347427674996704693092580879385903799926933612579852535606206933790254679452753640424161574832843244799431587128827940474063363582543858597894062725218753715074023131510067847759!
 1506389805156753291720072283035867832220341269640920172178503251457745561486750812646649651544472982270960055833668110739961822503235992099596213730664506003841721013350590092793665240698344941038553801792872509414911008675291282747606124730720893861735609491067162388101598251172409564458317835249486915780395129474178948158805200799953434989000821666892504671919929103392234680543235437669487340568445483249119172146998381993160895221096828558552942680152282835513500318203923552942402914889343912753056246098314733486579674501764870084985836472391438557384998124711294142681677677636324271116980830108660066558894861940423707404402161538422270091572527054404869130168884054938582084592266884378445467284272682398444299226774584655422403807832431327588017562228214730038976345484047209345742484528926803444162077975741695108786487292615437770687148617929824436218323382357708981691082068047123723424319207069007895246695788671615819435559386198567786288397716874772538909022238083437161!
 8241173235523492269080300465531759159136979811467864764631694050663236
71010127190631597520152572540570687743211912640259108432471911452474510715466806962595135589376847535787159355666969988348733277280392044738749225911700167457124129309983485955747701404686719312759253592907456380523500839488811521597504008260936050693855189347397246934308173111426757649482838104660546999288562819235825969383421700019574775736806153976690244366062296012687647923497286099566148255070983603969514074972262321065545293920384707401864481209683198507609004768727212983689226677634184114689797397805479854011819262783608710577136717802806232296063373243395499193924917873410797719402499343625142661916524641308526239072101207864046910141528437884749663066481065199929635368406003255715274719501345453352562472489004712210423634508119845142292404878887987592250451172356610309420729189751914519187926988554770545069817354976884691022565077280280120294717417471734002892501763085679522396947772158235268655632960609620949232431726700283329296329963498776097431843082420982727293!
 6235414232535845640309544341061757145299206054198837089861933902950392226263207638507163191150890091753478658305286662175342269113734749260712884104570574118407520798987671394027002926186299578464364819828244075278663519647777229774754818486612777810092002404193076798855073166607147975146344811840092126875305329579083618178054133103619863266874910202201844306235066565076764758081320710221567810426555436930323111240131678051819729267186101308475573008584259868368148279321342727719220491819736477571465843288420475782606018595317568739633020240259391812656517881900326924368058069075932322154531844872116557862978238179962495538706657157974973587039994390047137082322666501934315235396588973717453845544519851039870942996309463764175137681283228183033309246365449685774315277081545452092803639257673987856914033971243111212174415767854913263015501299890104671973776019646534206573713647257582241550960854111269004313581233977789677588271121421834840581720584258010582577550006176781311!
 3504204762134756544821266637899019962214314539781675524397822195663066
69301782452169707264920120526495405236486586424032404967812198818924660663119015254439711951401631167228280236096428256994315464905531474472997174185105219149911951656662942108034429183567744844110836971992749570768648758926997744190073556921456136190913751827356717179017991357095803429279808760173726209764328572735271367637234804434685897442867230747515099130489847975226695468776442243792730436969472367929770149660237421171610523684532292471513221798631958447343023587371594174537570635831166682139190721277429732170732398852437679534596663492174231759940252793961100824887853427401639173397243102621889391243608544494960242016920252686421103151736116257570564535760768394651575445190308761600674538939728500081816657733353386972339736343262148507456638602942557414438887894059198336948867236317297633375987681255941212516339004713672250088118600339185886914364887671502284778273386839535160987806944996233234637729937553738729392357067470257968294398942508898975179430617385276566140!
 9064466436997869073126662699512442970761370433681681912231003576133050014728150021201939208227443302140661012747224272610456669514980089621917552503630127198414187312787762896050519210980780021402469268684982197499008821525108422500584231447751485140453025164034353340216351305413991630251184742372801556369205849521920254216524950067466892285330930444342246707434088853113481779078762151293787492604384132430565546706237811570545252793345179785661984436059505917847815748735390906872281858030026898467357434709237809569648851751855871700690750751138545532379731937148587183538839357534190718853023613063317937262796794185293024200287440533046115686463035680764572330148428263595909393024541903854928208649789733338176197590392447251673468260799670338705214139098423684762821092039582037889489747038208877160838487560682968982858959493948203582987177717152570995974351053665176876920683037388344496442519691031330060095357386824665795010401163621925251726283051744886679889864252291264704!
 1724129335447959484073951514965077282037110414920668810074368054856104
87752791406258210543311067936158233026375918353598726849439300930029068525000027058733658395771211454504730072375446352417351195055016565186240657992685757186724592343980405004185086032115234565603184459582639136987786371133632355854230122864667283242117308067675477977152838411586837300756780358753872762643935500003173949530211127244828759623144396249548170224344172978047805067319310083842016284589567110209866384450558410141772375299746748544106913555016916375241489391817118071553002157715078058034387442623381123106302571551600543917036279714272667787826450567851650091460247068748190602327676273811208488767983832780206411713043036590647642742385838852209297661597908081790586653893344620755545507134382941472013799101897466084310436751854293189732340368402331521412486733887637257603594504573907147647403518316293987880224083772144844917280841548089735337015168804553248315251376564516980141159614424580356410989542785515464675367614810581560971145923122393137800113527935860051994!
 5234179193629692606640009140745418937670123741640837585496338480570277007275279488248794806218573866098900212714961691545178686600153882429076976709652972719364382689628653567987967624357720148529248515872431149078606027273282291833119123252985388212489345254752848834411848595516166457785979930425944676217745993866224454493846392940154716782023482802387919417480015531766409413599486115789347080849830237285441795719430179732124862559019612933914670528942653657249821784869589622226658124105610610745010282617789352536837115047457823318775924264938994974137464682258058754775076129947213793325453353614858184163229575326568225173142305596986663988206940425413059079930752135104188719552530324767124687461803674366332276470117017479025496135438267881727165518650010400768557945417290787441332128997883267306960428769526319719276594468228506853183659719732133835945617795302290775054010597766262329530522120550697599398317010092387259230211336042589724357305951599851774335769678736316007!
 0276742173117328085165526847284257840387407862751843623507773596346377
680
54649588388578442822862863110179897878296336011932508503484219608320862153598735671474384123730628171636665508658602590726354343407100266142704962956117873541514040179665279979032792268314874844502530425429684450642112926746727902670218492227896699803761569380923939470719248973108927353898185508666765436073216734056302671211106375852487591995675474933671688287604916611189479943212141848532608932794582347722098314798695529766141287304770759602272762095342771594771011811480079540991130246375818569699560550733791794138486459589665140116389567713071583554100747099838417579835637159422190449151543887585518622500058066660609294786524064418387310343281056983370337062472956359151642058819840269135874739751647349562598236561368259519780238010920848889363594757042503498947281761695795800325749087382112729279992674736092249489599873930424062920890498632168193292204478508105013300715249915250697309743473305613900764899489686795698684435012985275641270513712311761422209723977619367497285!
 1791977401179552410169827825994345236783014976138146793214493569729500344196787710276465680457268811336294685295061828595628887926885557489484391023971407122093775059121529052374422116830678535482142044071956499287485275476020360405830137087388853223559467966308321575126650923088215191573371960790345751982100323455822276474419088562398247142259597919143170385390178825209693301962704643739464162459757914984982376414557735269793271459200453331986738596701556357515787991147098475475892097883127199815665164649422966902875497829955422617113322872152551662446596404643734986990970540624249627626691153278491862592742651658978858577030617244589441846120785153277845258442060773712577071256173181959961476232922941259039642596245898461196695898589667359755427477359947563773466545595558622927587310542757371007962364586448894451412667668171020802248632593793521928925301906002069324525015781851379586693587434066427123855809741353591643832273789425286220346648512631258524722588249757781036!
 7897301412065025728028576109274610561620541296725366052265404371474167
99568529067839056579456511453441293877124583104394369706791559990511241727544058595913122034323104768528767464701832194848700919672981152524003406292508153452379537013697064234925235612506771270230064883869526805803891779623581398782784119305628692408815638768657237956943894603596919414258632391561153030112407857244539219442385343228308876724335623274857584972926350525310469481771275226913493807761827800409499044890193862783671306706957508375456994896851327354912316887087258629171026347454327163301911960822505037593419379107316403576571845853826001872240220156256416620407172908581498099562704539567098490456278512824696132058276296371692075875616968735881775343856032582939981820911514014340883318083299756318797224564024326470962362653691238082516094761386461963443475960398953011583180415032188193006405236831698050310239017238610424528979781154063952878999405180266709991545272118022016913634320343669818398800975818665982694598360733167629665753851701009859513503000104153405652!
 5762493576195053382021568812330419305649232390544434985432865794696785660424223041186865208183833833413330158695792035282514404694483357836229539609412132842482614155796147915748152243256183677590757996898569648448201263561081144446868192616012871294484328728842267302473774928569900918966761390681593573675702148161641305995055994818831222630056821827182784705741977695543535866024858163800471939273441049285057415649330881121605341137129340501787262670705809806066059806163492341040029671215306985652086677255050116393989330724999257334562218335826802371676217677186131225260950497447171629367266825377805355318119673546768613638124585211720053643450926289193655159449270560508820063610238689929077450197097118819217879112111315157607326889296051997793921187933961205761497959608987022966022222628725112310793546018305714181837660170137609517510256928133978733112454859714698819220440969071236923975771350270626871491195224077900699945750667238312106372857844465338515121407469711990561!
 8089567951520483421115040270379000492675202480641760017067890209262317
35473712844619958939317369241715421853827573479484308742605582292802351487579947355080399055811745914674081939652483962584067006957318907872579187895383475401304128295948626742691239138227657837051003947132153553017932478478426393501811249969591580939378216255953304177620455972239905672012224321615290878225253567219987945814020892486375000780550300412193563445331651731989088742934355071014193816030204217176683472549943731092787869619426706236261850514712073589841435433391358833182895337232309169559985284294730360085086193892736276840985932681999013850412933919719475224110090896378700763708518245285690556679501056234356042496334087146145690340651008674855031610734251799139384979361092893150235162164267598732571393166567366800778142627832288811231973433233147260894726917972717393326976171363225433683799555807662860009224002879323110297210904257568198812607183910729647163256304638009265808734087396514296334484498248389120162003731797182722156216939242019262306703687465616757247!
 4764350339727492463240935169114392995622941404271022172035715755580895251653281650489533601753616669057293829238802215233887850166861467484542915450474317825077050887016082098214151402017372458791779542133764946259618597081912575183084949602471034148537356409364596919141756691115283646739918825455819894239679336399686444871072456693271486789612128510308845908875232115777275327865702062738215791973066197101059848248263174818492086445641672649100331390258346731869356834628374897594018130157018367204029287340647075301623693292578059075703437071438404904511590090115204205564788916728781319097801418594937068612100896007383299246627536016253150130681893708699654718027366193762423832947584516277160774514600650116643699464164915037210675608905431181092873577048667381204536393343471860156377730183916579101042191474472180365916503840689085394668799412836959392456312254980887366567303490043107958881710837707150651044878154904814303360952516817675750525409694497385465045499690416415739!
 6398303227004678895093760842245193280678614830642201104671262821606098
98708023740995317713494677903412941725738197086177631413889099591071325983496814602618493280357843959647046125861454694741928645566043058470997171372143176429236428522047559739271721305005322483702896483024526109654027020401002193450672184949539543381842765415992353182418431678010767257184631111518956979472045821636139802803274860314394714591770552147024647931852921580015270143342068617134573661316710259091777648758732931515216938079134851719334080522908227993023570894570841473900573055491181463512599848013464511072286365358059061826413586629230091967384221340410073595568470496929452880965378020959473613340807680722245886812808215647381143473155883797825047195133840895888289565611549804219748664753986490645055644177935142579476146863966781330447782143144506860081277838654138374599132428891687962072097753412815586210959990003932561998165245281568878877932172222569015875996644451924878885887587742517835297879824743014935009856301176548038861825435901875358065031516769730138492!
 2672053815405972565929688501028018579521371139690510170378809743294757120960408212054137807510226890462187170618042468862728931374023704406997376961010474387493876249647674245930871103961760982284326807350144275488185965730721092634671772005691820220945430190444642957128747321422595776781724018902711990257393132291102649912037637074074665138195201927593842639835135553185677610833495737357013966448519080178705432968889927839225500995383208875228957321658963879736813952172778629820497919037881822390389949375634779850057368080987033028575586373159545980378231212405803079269399291178727725065153700503261941627019912985548390296417881352796049272387483046900456727015849543994307982033458692039320206173618046027821346160426137815706361844503004968144902507267443450430987593658075921922005611209824892663161074208739167726014233066703612864848854035357567263800057874470102130480443646110096930933007963926007591688356181968324851016885989060047271648214588551643724314864848495616264!
 5176399538288654529474807971546803145918619703186219212699452010178253
268
92449273835072766667811527739830580462990158198239054988392039827286486287860533346313152099937922814228083684638949098511640344595454648764853352920975020447755326769521005647974743573318019719786223560057778292263178406006543859309700700845425981797571658153696670213980833908594462531149292803243347772510017280643311047046404029464247811937572641417888635321212477542518821107507564112976169494258870841522240200252053085097663866235222508276802048878680337204581542628607718432970144618945182518992242142188286982589103939318637891867122676919282420771818170769418677007326378051040168732190342027752937383488157284028188897135152692832617301442767297365879423165552261371965031520048030502687988079276413086462649551060280992525132766267774641104900499583233880893723696012546974842161612877009977207283878755623324850815449948523065990574095849286425584215679423974154317501721739645931271749091373745484506898936515464372223097163254308636131674522221970557428590190745341299231771!
 5644136273025198219561084880083177530943224594967666713570800756480703517406276510629531586423799605093090414018713753706948203067982640025948634152593786650411689650597103217134786294359936193299464335242562198335207430835338506946580272300102383059862614024283144365328701014108763487459161484872623135200583698102748530145143334461108782443242894370524988568483011528908055512033568155637205602185486853437741231797534924842956335506485625991721201411356805331380528242598514133389886537326691205435516536447722652289457660572993602912500822041792454890495047439514527936472552339689098105720965974935371587135436362033173134370738877129625489609236174451496805050247063467058578519402296332829305432554256748919264124138526503812108341964082087766484407325691702343168681040960867774645269534448139384621238707659232422899705639696393920338739773197445322006199493655183383564536159940881249903126940191104301626880366246637148581881891056174978640896574133173577878727551640842017014!
 3261665566340272047272648560697560778567995669491857730224554829578289
43710320749272374168409772137311520128835564788864158337941565632412758175131822338441139452589186649245706123221000564713380327833452864209109884137713878969781355973400784590596507957247958649497670169667475173971321100171279065511113792246222081316885338027920846097964571540380844699434870947306053127157333256499945182171532241372979172414917138391944035457574616478089884744916924395442818113953394655690222148833581683865020498209470156812930187286715741592657271114054195491618566357607238421144491746330707692506138421415019479731811977561955445062904960513470648116876053682495959575046739950750829477876317926734638800824755756568902044718960648720835675480334641622815973275258215456614071408839611869850069585695719636109666430148884112073572661024231637415304194083086166523374425639510478473510385877931216212664023644453095893075065068843787711049783526255293777894954878827432371328594102778676543168605036385349961950529493470819307466271618839405501209365921032021355982!
 3619004319416657865203594362246037955467526132786448681913308834311835994598369736437679656113193341394437756794645257582202876984930872696926753798866813136611965134598976544524288160873617935974139112145626667702878638123934521671298017010876039471927752572584743240701401773964765667376519879405982199640051692958066829673627493992535022593288118792476933298930418775159934384878528127465097740972072725099643077779193689923419967666798765149566116041052068141970479321852873047991800812771332592837014467330679798311788001218423452779537822634295873580727409005943666758988465199420062897516509402489590234476233877004591960902033467131914774132683327996520133787088008753475605768338891847176678994067191146076658729735169409714660197058226104902921458667111882522062886073720746793603414099664194020903773437222151916334783450655091984691844236209839578095289747050915698108790190778022940113082515678007483761827906154498517945232053452512031744512311032336878751399366044067482499!
 6167850408676600725093342184397477916110823769840612049712859806597828
31117714610144042525181375221646906706276730114862574772060812863027347629663088581957577167468386594674525146617144606825776467384813158694449840616638988933060582201935153817451315307527260378667789168410100072395721988518179980080697652334945797224179823931395616717397924249177262248298880888921802765727856647177627853975795301718275874183103792120989999028089240265005769354084709514279375525048400387257442975297773598895847871241215459531714818681091852428636888079971494840008068519744932833381903577031590842061828828545965589572875822258387151931398296504988958468961289260721876887073719051227921891883780873354249419237363656803771887453511863026052278066563166873432661170666455213693178720056767535060407754674566203751345387586938790024422448616390900758529057622438319801153941699691647083273997985767045669888874620850232120753861095149490226550700490155721748339791767161833351267220122394628543048433208056695611754996557854089198294492747541801571006247635050677848603!
 9034839884588814914495678335834906981809512555836334666877323853074438296274703460509875985192265070842684273380071941234591901431515547286576285419357552848597086089727398870997801917818556053468112951776446802687405306495997815489847293241816191682613270921722176086288514895470702183396192004962812695703054125109261562914657017882078082877283475095229083401562347011028828114028935208678991937832038919608237123091153392848316537439606267982080229091237045317113444259286466067370785660736671340523044253668263252472923112654683246614501250767475172285391665756303824951012620943556680302238080518341892763159696973300121728243329830860047136466626356120353289193906458515155241459877052399553665670295059496426217630754438146509649091891415945649909042189767276253562036673514272252159636433519002181334788329225867331413645642851592064549010640726278355715927142237473697506146667608963808563045959931797993819556089144563223804985732825520439696570208920267205854054679198451330640!
 2002418245558202667254070101047010332115786010919732723048257537485933
36679480291679847886221322478670831123676351255890124476593178790898423123463130684739849127479927188094886324349582732195830132587850300722795795428574909312069442505961001121407767895162507742544674600625084570363904772552935650066446182439426436778345184504759216842701221381956738805778919483765905021384476472773950902657050227575208878400375405492271202215209560188294871131030495803590787684823457961607513105418900808930422459616489634442961415725212697175711112149743680074126240676304779107502047493262964523039601778483026945767258377852383193978054332771553378078117016464871912618192770639042782344437591890333231739521777807124813664347790372862150815838791470267358502476462772344693852320933370179518261871382704851291359085818188207618953991620533417659062836558653818908257871996630441583821127720179926417037160407930478636735880248729563268179643968743264520291768986134255235872925387498474984758458106884937400537916098143079968540017510391990949257163609671214441931!
 2370689924272370070193192265525610789703812060759136109692492510561302953258694766272973562867161032267679265105465172798252032697877839777278935399062328090955191883593231771768160886871221155995901924733316040689863950219853550523286050566270585210001977132977399825713525989978442576856109738742615274401831388115277582237045691392434381574280830520198515422534904029273325273432854992640654388925781203473068994908943963434900350762370554217693548392697474921337175409286924743135755301444683862396104895796826721774333466474000383227425085769537063638159856907663407902785831533695853248449263681617173540292802220873506966224941596706240196685549852219849140889554867094848084745344134807808847262334866557671003226583015683752610869323880529048170652099708708798440240847701486575722467762431761372511232017727233475567027658126606870059460931007228616247629744555821218353939217841715502565257490062482279565504321026118593708020265546551562273505899040883549417591574698827866761!
 0685569779174029383394934428076713785491503479437918816890910392669283
991
71685197854753227073108043224253854927192437968741254536089871999957055339719504493490181354253437614537493211679018691578061436123104998973585098151625684221654956093639501250334871078288456271560263543121257014161774347094386585144780244129871038831146596629533818336750054845323893733119703406460997001247853858666472847646474494440615173953243437135856282837014055803664350977423234679320177822735948932538761490216059986587068592361801963084942790141894722478230823636711911168818312073858904121424252054086001757508246097431654747456679591509568696528237167092053930275957595848014104242806973683014084225805755624738195613751958765296866574331715350942406872266914869313895186962738114735530926428695760396129426754012945713693251673835615731924631235593820947314113137860711312787140012160961677567053776958838478029763065548987076995727563022278672454424669228855513396971629548324910446194397166136832305570627073037943613372567134199168023494373672222301829560365190299519010335!
 9032463390305344230700558126555106833889167344586267343855745110025459311697779659921846727237066658040420270852586624399417005106840556643353962737367937535848368250327962175228025988165328124323426745161585874096658287835631514106562707911477989153547860545330629229927116558302411647106938928387267437303498267540183832505413744869138515217528189694085035192616960566685897583996743371806578573103924512247665590948565301358682188005895049388713559439023382652725802306434709869498914332265326586847156157040958548512540143814112061112504966821480371007679277086574018686866542298923419916194528521158724440008705627751306684810300359423554283621144462423040848976793302912550348028168001365345280664905910764561771228407084796870121487808671295788914435147099507279572302141906639788343163116270139248905618341439755920976121696410984836824828044257027866936606143108562580504405554167833756935880069134846830179303980818802256139864260366797323778884094769787102816004428241398602262!
 4860978510890128061254380847523800639464919042166790005963405378938579
14909737507084813568540006100279403195019962981740016686186844526587796342384844379460302426795080850599021053561739604172286573059559429745922236185382988304203371942715712580616857566930052267299859750062815793088740391572194007825034026400789863575318151537218906833202188073003677451751473281483086522593951390156887799548611417488868567945303825358611891265694457535507952384738271156307292019255563328762175275291353324729023901444237048091944917559341335977572026352226918635287692042482970954555098806008951459554628548866191534294294873116273973568588462134905570571515549755515126216932798787610791144333808923689583492280482266156688807438628993582006994111150312482535830635029102474269573392556356194421505218505977689301217529809267620501090670414790742978084495958902260936609832585271299531474318020397474747400511361112868615927661049891558542574465395363767022268358033622252803455694107305211300155455557328964084358905487475916410418914521837928350226584576230849576849!
 6127144328288774984176232369232311214052991308322685527518028180062470526573078399432444442836276678020205464693409267662710194534449231022374325119533638124433732107312904075977755254051892458326122306721342726173505823480111395616502823198159921967244158876898848383218646551061646289223262910641526275545137525217148635387847813482983410559691205215894297120304544430430457877807986468593449607006978444818857901851429157015251086724366877186914743726485142099648779413785544527410276277848159595762720659727481037123216496223605295030517940257111089843361637398218308741495472244892020568701237902334161299463042039020410492317777023297461343944370715016217073811556522228998943862247137366401207380873438292340446209417284358137260806038672646808365643610780848845750237146235789426799845815066743222686054522954262233460686880291068245187199001183793250400500234898844202125434341912166686002548924249953429853455744094398046151574232018209715353866372176000727395540292134515941806!
 2814113935862663307739135920949979129693159989241984003742967986749906
01376312610288388187774076644170169592797836126363566721673318353099665352408024623825514778137539677039951396814528710260529413793675693401237317669708311857678324200014683274617785484385346187745737236957703380768187661624407710471198112683280901839526913651434700019247922002265013842151941353354282925739290524505642543381667715924699784006656811077506872722778745687380685747502685889530458844316916868589081770933826373033526478903392039811652266851535098530444874263956655801479085781373878999664854388515555034864641896507496886709511522783369514317060520795790718116135934635690729920443224085820000988649461497186040799530629245684609765335129711361438988888877325544677230460248595185932909538453638595745796772348987000685036797951621029488431886795278957671488299181156767680085502894848837660566358770236663474885521653504856288400308804894971068319755075727332648850894735962181539350054950989679819615094366520838945688784894827894862785449408938432063237266020248843321814!
 0161632757234967923529510276365421578698335773233679328294789267827846785414329898337732205475714428884732963258124734640349520824633301455549047341282452603511385998802862933221946820495593913106385992676572643423328744534772094661727465523426964803425086182233588001518095396345782560823352022214216609312562617655303871619912172880282018836865569843410186912893217588903304434724748843288877755609578385745660819880248339445828287716943784985908304450330996002508688947487745882850266752940839935599645137489618582503848175991221333316911609694394220188950811014931104067878538263273371502052087837689077331742312517717231021439200014078595541811379519828057228392382653143508616576666243198093254692969823521366484655952681011420478098239350865773491961382270617174827410455168141952434500704592295134841081760252813748687284231678085952409037917939271117701307086734078385572534138765393876575531536157791799427321566442632778200961153162482091088090586909321036803568251216190184539!
 2551766756975022605688324538580842642759690516041239777550754241837921
82758695067434180207596092260596003929305300448567152743368693636667594477530696834800304823837201702840653044911563267409175085733427120624650051445137321193692707863704140976095953290600799336001149396865840373651314381208441084908711285867412548100262716291452685761226367722053307870999312889024744884716572550532112751916673200402859512175862258700966416449722767941864474696933858324677647842792013333675064531377752291630646424394435073729241314850380877096202405402318615096846585109697459499084565856587488142051021917226375781727511141266217491615383789281418650273640447908033965885292539140333724499228848480605771941163111000802719767272802722907002701378246773631585225042997148325747584208192085498689433107422954091899023147188215672798721162026571771302441639856138150275834191561674162748457403073414675573132390098884837818896022050097298471526001089350474653764639300734409871654292598052827638149527984728598634743268416356075557028096300403291911074656737475876932432!
 0336590567155809016573844928228482182502807551186010524543691914833690534400397893074651672506780536306506335671804917868740299161210858481540133565979354423567764931605596548777404192757085443618298506037289715048804499521671172835333029711392848892977396108548883322644431165465752365994007226764749071463426830976856819464926021047426320703652420836894998895015392538373740832736650308796039263804111078113793524510361362097179110887715004038664152106081869651902698838931469430158758158704908685417500655044204768036240146532444101791660494970121308135705376265943053453854389357346109302736682240270608144797114246885182205877134219325063032440117606078256009461005719433661986866387567680849562954249710263278221822435247375570799020702934448319778366782713506599230727508853932469048329104377966318438861886230014885436545170135246173090540314434577763310214147019776486915404486205986942091572681873546241246806294044561961528463544899868320637567999716311480986106477919607173631!
 5609275550436088064619356861672886754014783688650897580884005132330751
214
11899653793224431543110247216445965685169475558752810995781899471790027620859837780689580204491992204171496515772227031553728759040580523156112365302494541727930238080520035734521809189531822374398233195045538250904064872150504918013515133183473510778909826440288805817603789378144396527263808642023592590994247627352792527670955289947202261535087594758215169856192344077823183940278412110143924038296804146848035001796304744009251201447436580469214013880247630944974448470832542574900193068332054971753435206182655135668870217722444894527540287079674008247638915116819026439206486344623882307329168075462203833049704492010639253553957634541268631566143356491627560911559525333791431160380712408683730987404912756419730977220320226072713693555763401746752900510751868076464794997800797588686741794386684416554587692203413414010453521446368957374065368465676260714061006658097850958388180336219794486508241096528151350854250546334826394754994143578722116432031350349112569379594037638152718!
 2032978865009117732778512158824087663878353518641731318288745826675014613082265962509539865500260478146231101802250354411099146099743534200507521648474913166362021309184883927430001861266903687894779353969241423238849881955327434798914432126558519899009553519921948727388737154197049090496210933418505720388806365294815372831740972624762119224032349392976390120576649851667770815719815974535590340388985542391340751585121623347873624568093691292000343370951832985539419100063040207880369078350631377811070341051854152867946575621749407468667177286261098129385697681772370000056041771128461449382251275672210869386484767107695566695998787780052685329479798971763847416554440904336416118999294606576788020448552324148660108262653546575495238667778573077110251612406997651895826382417572713186605070123178573221492756388203197466981044641235527657511423898226833300252410402269313383859874842127626999476815616781528995046426983901507983194596589879047453882530823344050927509058254375449339!
 3809337746674550531478632651152420098832030159899500060959482454959322
73947375161985945468472826009300618851688099862651780268910028162967309803827547565892290061468605559875871408580064532305632843924547852669983046184169111332388536331630042587230046322182355068631526862073140359072160490537397260501845220342681379609408547279351850986302019295634871674972751082675715852029838372801499965881734491694464038565811102088775912974151997102596857456129042610815878751263010080263288671956620600246802373131440032403567662309429214586712022062372115180162934297973401928878491847366223356961376776462041390819130063879709629320251285008194625415272969627243154977447158784122607492488059829295149568509624199814897382675971606445308448626110770055802764531675905475082975617377421013310426596778554670407729950391808779926913876983204472944472388058134004466286044554863236900571117206786775416913540135613819926830263539954945459320100017471093264964308315013502174679586837910553015792589890796696239148173515084344882654531769389766620779906202044538675638!
 3581222883145867715690472556709282382978334541415575868265807498284191776826040236827061476075541997404824912149595607465991591908399008532604464429950401334102225436162252301737361282994138551059619814963326539638866408598778142725288056047994553301739340020718273551933608571651259060728813626334902406545725947470186944634949562625019581742925375659962642723760529313479026625596650258944023155406093842431858143784853774995837018161346917575197255101065380902835913192324228115038933259866403250087367766842053841791733080551575854998150805413049364639387448814659023985056952624834522128258830392388613087198844960347258598665941559820171129773697248314287839703502318439487246255198665518862894301204810312806764177096982682467193818675626473318885834969389529760340028207324821124903572700785646909916337960602625729000036359917913428514322176320745137106092342683269036974653276401525354209363157163460528580750369368624532798611928892777285762990430506400762704940555941694374405!
 3734611954822847552616059891515152779203045145685350498686172557287374
93774493055422444938214471906953994674265599221185708970797856892046755993038409475860069552606054605526966587958910096229270601714319335817214030143924183353747683681675553643376772210865294322627697060976347199570211956491925939601595140710575716210793401333520878166947569227217574729725214776934177574621936584371607221312337248512231423885944469217707220980467330858548892042573042006788600807514966024323841010388089139954263762316461470576907055751444538868196308342207543337570644031717322541486284981536027160656991097847679938674093896213098202091322257807978341780615353705545307888389047631033842945445290407520183189456335426835968341497478289734134788151608347381371091143826656034421447597714081936678642140094507381658428250597344184510768555425992958082600635598251510835313194990702098551345598286059705532211306870173528858435711377421329329059257448515950734117439409432636727588069041503479528037548839811095702208675066082777089518731902170455338850681948750943479197!
 6078269710548408906154084855325347068421969480986499814191974525594512794365396538440225668792694206525714885117554345344314758608718024826572822040923106429502395533105792168003646291485843104425896354243413460229825745323183715536325299512096702401105484884252281705710913081311965305301462580989236575575974335275669414150260019384966675240660078085726130123326325000093716662099532961616540373687028411320626214871697996366474007891742327448489593525864099030270657436006391109761076707803841017528668224021771378724938133367866712344937084455824924252229805014379803830851632190294390493884112937314391763488290974348951597310021356886342901321955052933862468711043712365502831033756028517839801548999803893518663484107810287316369350206047468509325012424057877586507084329720531737112375410804128227597326901485054136943094686696298699194202725751831704451662611041729243775542283279765820535592860408928854369667644566180673940320140101509416942158161511913267205785819722958213795!
 3287717433824264620805291726185061932240196761996270971517568742939302
80084159118680349035220808028464361509338128696597079649103914764365698204902200452366671997861897700135349970820154404716128893678361105201381159620434942489080168289293612748427111968210119644068630071159177616452019768338206048623491062557125560237200734530200117175943063965142727803160113905702924673085043440537318522024592506916865334672030251298851349074996163715379609337136948011383457870326745559490460773869968871071866412395807414059864250665493950713373424981789880629417675192438274250366104439505297393668025040510016865796125220090402175339927853941034267245943391907686666033244374567458225564855154376445344630303996170360565143291519483141887473675759511263593197242215004021356960478500288472384607809133356221375265317146844378071356862557385112860781217553362075112673396258488964081836728389304003359006292319787305085270257915491024258942627238833503138888573257649411137975998533659805624374496267280398854485305490494113826871422484779752677428686367172178230728!
 4146165571693671685067242487864351916247041290973139311777637275880292442389523509891791357809977589413661668299649433084847858689347283803968499278871998905648423593663031554417244202346171899348758372323067837783935573441650426279112979921176196401594205414567511594510724117071254138640898095072859271155957098652997954840799917015516007930533665907797325296248119296456564440326216179449876673724046017462322057509467225146074837494270752991458272664610321114344416392742099634281944408566183017475629906382540305621665573641468898945735859239055979249279311928303997208180159076314137015882846870038453660030843753722934600641529958968976998940194056757245939376040597942863252608276385757621851019207791328566256783941958246492828836934478792067788101215472886544702986490030172215592901061876713856545812375103698501656321007815172171172690062463127418969467166973875371420504717181424496671369462525855411060184425040969700298157171104155060568223192088775943231343903085505962726!
 6721101327445898960114559886086003739444955797930767550669843345253271
749
07264124263137221469500885460098594028323880656309289895646213499454065153103064666276518987270745543823211575502315441962058514274533822095947247120168066203342040337293379170305585585614238843140361360995893301546534282799042642423242636641469838720993926781022903848413486649650689053828862970563981723766201342656911398843694273656509735720490326086158290854891221870779905261079231670521498720246828204632703463561682739189038693566475508461561333389140197592199272804981283534591968850247356046097601085739285174404119165996517881810254897053286648822450962591110460127429663878893577312554617869480782416486771932074898904351376935433250399290614542556711744540296094050251520819850230437091706160039793780830981331143879194760010235462197439873868145329085737439911107959240519113762348881618588151440795196800223295973052177716185908581954763485203814361965126216797734550538182294903133306998799354734202388669096174670710302992545701649987963773820636512844431797440804604761792!
 0783594932716279827628001264374433078718399511644662374296088024592880233620142267377832700530606008369129691932719145068824122602698788012432849153876571527159957763746587510350644583366158591042396546547905139306524276491543499862258792484586755487394099282644861070652302991325617390746769549815249862564808801481833975818964557575467449397624724278929362876187214303598351819101267841167300837778196145267823132962028494218523298765503835269826246069291707851523432992131356102032848278979707476817121868662507406908050894931080430623123434449123053367566749840526238563778496415330042839024752140338609597594227877459585124275833346310931072813814024643169338593876177468260229070920256246579679282268795455374753900798172752928359049031023782341711747483343563112036367646111662206125212182792758692595967748428189730874260499514123684654764307277099633205595336435157711773250582302504687131279975228890638998593884955666679598019917117700724039388002867632793140103570708619283907!
 5780454507309492439852858552075572004436598919766669097504309665596220
37046339977870150240764464012995584248517706251267961272478906207014152696853958494976398477651173505215962550820267219190624432381432995674759693504073574220886427833469866407830016264443645091806298869907995745672338481114520960915350188117375224074210490943289858145340854248614809027554296627711833767013202436828203721143665860861356581923626897904802628005031804341856493874934956500141947813310661926907031999376188740115429609477615150151561740865229226535774847891788173532674391106466864876659584092340299436977947320986443969024738916521413604510585831475447258775631282020208158051289106402808502363782721767379839561605982415738730336196845417983971960215106327243511980453948611631086404596919950048572767053753751496959763725681041992575273683052837365448245156532456389684001374448767294478943817143095244671988644180289518992721989259818112736533430573264170309218432967000634456631297116236251390384570459323403007667857691018177293424462001634119799679377837898679531033!
 0987477966844629589172643375283706463358463128791346817492833535701039742925527057918405608528045121358613077653891534462621777207713927909152512535909384132720104616479889949013663443746183301306978857607123968566979452689082390024006290484141185199283342370216054221015340389369064522931017784987713317862496838481430058577593742884809030944856071986133594578548984464931008149221948525647260208597004003274787324281289059428234209580453832259932667543940613306601042805610819955248441720960389765054760285218884104538027362959419745825975980668631381234079893248326674778315389400979155511154572889724323823815828892023162935340194076028626826683254321187018487292550890060570474195763036202645148713006532006252999713074032307440322756765428254059040649664143089013166860513582317508962615097193119793483214977971177826745421383300503392798448396835061556614012537548176750980148994726272020165118287633814690583318950281131187334316715610182889084548361362230596075477905271288906293!
 3039668898180480028136273358435575186452220680532613855908641438389667
22740850434019917057430666358673045026039427144585401503460486975053696469424428477828073738446892206063636737972710162944611677151129532862483161306118191743798183817769004110888847523811267385722345351026315881355178652504846820014868747970448267394071386652578947531471614149650655359167550312059204206047844322923209992026900113320317615070911104669639892483318379348797599355208184514754740281994888734997772107601967060503972258617733014459167295204187466209931736280459446817652157509340062150579765438022123604113041192261643379796921212332717128386589301993047316505451360084234084098905262074440869049905706226199866255123423509551657212904277017499780957949655524772583999267283897219193108968039628979714172591350773661213595130793946544662472587860402197994435196869274727188576176296622483571482045082974664875949613708342918195230211377985528560089619523626148643976985173759137350045759575079040291853931658643522264874898660607167904008736042389600489321407808838467930336!
 3888044828820528469071241823643623513643185909575897164542672037991557617230122580807074029231845576018784636002354988203412313709097773282233961648445422680793614337346329554447945979133457820926404048032684505029349390805691949784799006784022638046328198823191018007324619011909326755991697210897087937381126518895343855479633445673629133046710761317894952977759684788466629487297916736486901576929102265623505651140750351155529000845995528991527821068639264038663477687508203030002427343619325595054330208961542151646780707175695372739034291929167924764654485029008659909117713186522705506250230838373155132586016400266454372265826445447419479825108684324610228608211255783568532405403365783667855924322366746971325734172521072210192022872913675975127998877023565342318544820052609295200106203302370339035014653489773265340269814795614914710128649113180436287962424172578967938444015087705347980638426204491735538037027451149601848552408598592531863940326363653589737198767976001425258!
 1408669872826809427152035013498833140220192431075603071211190948395775
52220443921776066121089049500864065819069101417464261187958337731924955000917313071033118290232365782051451959796793168896282354017120657997941110077759761630641966894988730736714966033937412289660999442073976457879410748713407622755847845650990958454401127217539832738803339800111075672817146536838850090959553185525198622231479199632774688671221615960338241634730406957886130867143325837367143377475902433818258011052549927134289328560559927797026177831379707823966510208885057084024236911576324139214570182097628460727423025852891363523238518656669567664136604993713338998982834438312143134839973760765212228297004212137601654412202618026593336481268749554971750435804043214712590373402827895669388294736651302455839650181806755703291099909207828016910660745460775465535569793787725050130117408494266180235318039153946609915618708214991122250674708986798360734286721146001648694871015369072454044723418872086704064586198819129621247571999776270910600558214443988851901007043933818167661!
 3575286108428026227279421378304941462197690909077520461988246978981194079504838949441629262816462322629923217336212457287134874650166545061656918952000180232835986543595913793130744887375755784679162757484700264692704114350034269538050069902517342934941302349997434886566133242189760764350150164684829732571767803853187509089529711626146618083797497781807055449126979864379512367884429210011033120273935442308346733308863422225645433520051666204700483144125892691033219618962159492064041601266354359022093082853840949587184134431996088271224675308495609745681813347923805103632446515090107524996240165788086172636950304576969894114901826612524622503430476645359057682143269964304343276522150807678260423691947470192059425611636303365086901783042009314484912455825540237577097998284040683304069531988672137233611898856855718080318853948583119795823176935471828289002805237013676702466640548946635403229317825118881580246414319686106543097753619808408604553919443413016466978555000528521855!
 6942711592246947412385207562497734739143320835389413302960683435037006
697
79724981525411746001951681544475487489175705679754797479135335341487115515603010072706093436376383140333535614655598713553008555179040841033615108874322941465897571063807447556831500485812674082964079049724214844045943261540039219578563579484383722354869366169766035890850732988647264613625037264040953826430505336749386338050316391591443562461113967207486115924677678098305885345500053378926878457887723645947472828234593394126819090609874473211081976517720577192463586051219324301385991368853081847813421608032085436675634711572024690905931337148090016704187897532598287904046036307599072432213390385828476725167964727226209406096369358934816716193004343680888000673046351818176258253212499429839395737396626170875942826511016943527081987965112549605863326042337245462709650503511051681185648379707802365163033367330458648546287592096575131641502077616370186001841921405913881717292178828419717571465663038898162614189865351129547397404726287857095322103314164025323565944927940332080658!
 3880141217410748952653186083372952559329120522541611283977519318251720086510057243486391657517964227570185079912176269729654130408862012294119812125691386347027683153089568186700662385973950476993432512140851860022292861316259973001828922682560263086023330612061962452465522958726619785994993006619282821804784955172462505787250424602923123324656610045707374630305981145259707052115082309626314317385480467996563095104080065924751585125950913700522280715017734923569378568720282830170147641375428149655736479118507369395056265735436973700330730908087922398574492183872736680760929977802112101075031404401376774273860159230320478622448673613033871039403911828155552071175379797469848528882292263138181090814459313995909433057812306960442903512641114692566326611122921289246142286927678625557871660485680415865151536350537193355947076533203223660033845899552195094997082545283603301705220296962029528190198743632734638266423175175970783003158231258035273223359229363460369885185015190330859!
 0153868852820013333918995441512901408259285381895818296750684308910922
18931189671550055985429152416528765527030558579987924825626947604197679972893070433832480577896998177555378639739084123734083144504116896705711301676966966817971754625159679296344670561062049191080013590667735555832460227000745665236830072332416730431188222003979283456178263507207146931843785985940660474973671412235891607271504846539218563584791531393834030992758880951461007034329607918778256218284882483855587269013106594916451849600296162672195652449469480000822837067974069077140826713333528372268860718521803856201299695521950494175773146033309836040229754252041360933872538595910040312608490245758485850390119418638204040088322330159945488235288368464461713540774731375630237924621837929987184563670782379932665476565624992140111247956095975465113753474383750630060863956399174725650275162905360116265924561508907589108212201492346144601658495382285689766472089748408090222893438872667907863172287866229937540106804949485461841549981173885553705813897863307531753773177029045546387!
 7276459344799753093750672654575864675748528668796799466521927806910263976794230277500862372877373893030682374935127579337372329673047157461847136497432364271376497033130792809307434526442784257547129878233218661622538728101649635619320115754152338151359869174175041157614964400712461722564626271068784318985552410989736059762623609960723413196120980115276705862426930410445694489441767246477768214852964596056120322985674222038745807886361493459252415784339703790141344292939362338313663786399742299677360709118352863648404284538166443270333580863811959690925532187877704906731330762854401542372197912779675573587036326886679345019225596508672546514386346780370238491495654016246997795511156381219451505452943476151689827080726646695878788025080346272559483143316965214737607479584940696840169328594879007915710462686846290618878669775980083548596909047105531283529870148205525349159164947851827357946527215428604334539741567593858713885379765520499330059443439617701458237183845839600657!
 1006874919594248139734295943438346207096722405357950261193452076264732
76677870770295552778365420601744541189850495461430761413242868393220011002811836459753121715139977638499047309288585849976198530966787074266488266074120981179613088737240871944190301911514313984734780218564565783649998690303318584721935757990820457947523260915688895471948667886757250174687846604507640946384338316175321431226241891248717073021846087068048567002913315674597026665978558321350999098007773560871778991145246031604260641319450960326960811473125476941494255675629136169013388991000704474697839118353139528221827922256743971369287508591458153748187860647498977203142286256892343611460469210440626756752851570424588205659828320700020408645705969272001633230592074475674592652768386830845952749735347574063634614804793416143794573631082494861296490145888596742365903823794080692956746740556451691979557783252734388719299587289366601049588871938037163012292575993631176637890129647742728356270301685042040562708842790210951992272038696107090784683762392624668034057191858825616400!
 0725483128570404532980185024980530382583949111733795371305252551398020215730250931372556709213533919950765868407025215838660341237263203605188955351245746673726504178861142069391546844583509129993513076413281829959783508451456455398242145147635147089771865995863269220067033272714147448158880237211428054254383230404783631511086341906045864981531441658351468045951560796787629094973553420073687045442246520288151687598943222150485044395827674182655964073446187883278773866893632987406980815092256431566636691183765212075056281435863892826779523206448941907000754537167665048227322614510056693282402829115333765366095348100555855617696329262600546261578096124434482473045651402672559576231620485894687878722769771671624094330346420308358084772098532776474989141929890493506445629392610223229638956677807199858052268526862862649904828542479751185947081427308361421397777298498446237007596968631204576012064253059631369202090983821408978691109043807447419813095583869380711128977013702829335!
 6850394311768253204381398542459537986904294296916211101632887113935003
43944224088466059820538519203636404933534683294183134186537302158151208429536802965949983000148251090874275587690933613107828869512219428967669114988601156730858385879840944293102896116662747027383662408611817989128415682437325382324081783942894317148551448963304597163680210613940239723197126724488015670593514845662518153511358328584943890384287827566196675584495336304961396811571792571488203045764395070744739522499997392081771317517605289589605509804741762096939123431504927107693519821422624503024770769593548928674986866450252076638327118212395137809049257684311301731481489328146714307019364057969725643100705774229045876138843960874737482358628577705456889200257575781553986007494631616679951461211963300519213136702015650532235836878014474325051937785052978252856287093877892622441465881840618070119656445051319534658044752438614462648968405850699778288717385561403807549140403024696781703616073419067809933900617211091329487844051916386740811481241982727201285589027496979719043!
 9453874403132335274092269071372971124391363326823527541443938515454151507878308635272922056048732155558736905710054658736813602315025547462604562997539273034412154793918050886747363398368631404955650978232822923146933380523607510692560376832524187168797733259478905476419836461926544960429164164844240486668293685031503814013982575630741151409488891617474571364936989030560846057854810500039748183281323379548513152331169576716221217426416233478842819058502466611115363093111150866687380355374404289197173849424515128839211227875700047727598360279913446270817800814312755361745034010419985463023935200118191755214993008329576475183529135698859869146593371679095345739934062615508999276014619634254454131854766691428603150686127545729421697151823976637762131380844643459725097830376366659883157821377589758021289741269870056718451015942162808684870834601984549869954532079963960165872342118347640187362657819934137740598053205860712070600327571247399691219411897686638353910140700638564268!
 7156171711948025067421056466509562768741814372702627313325439455280365
155
24078978671349707567899358722769533067930907443834579418532638854652598283579430206460093546584792947155837577752456844869100025699587661293542222999022982449523045188538045850539341716353461220750846634927589553481558650151945265773403133628057249480218633471872467319076346722645524553906526762490225278634407059226032213915764367794085247390121122925708170342646886535875639746433770176968238988063433555294042542975086404349650742055864677801706156394004813225880333785547494158495223667955564624138431156721811140679144808167105314320629128983990143493938051718275872231074300460600942931911624033516736884153947163166824664157828413353011505641446184195911690835176720582423950495988956877764100299870725451365699102008024150229163986218377898762639529873510120429757595493854830233508856876714299634731899107896013036597850365852736056200085602384577196801442297408509489773428839547816190929525734291014924482600397564921680306175395757869238984182333755880239450005786469749880484!
 8234978137921909527324465694243004443109797912398186354495339701757394776350862538482360078240638813290113927504051336961537099729920657893520048049097427951060288412620267880796026362323452470484362078677526756062600480802676953387329340253983909136864391474245812875716533221455502489343617138844444051436468377912027152760533104132971844239173983045996495185265903463134511438054280734702806032997617599091775248603051397061876265603314909704605291522745394842091650159907319227985846753039889952487424184448836947562004405217044418814382755055671919652978490837035067787859273149275438303091548277199792590936356460911324258658591270335041762090999715269015383763515682340395582465288134431879400974826232299277267568837565528463201216709018385453129140148198712583236976638869444531416836388837541019062259841610505669411945900835242457717159251724802116735531453217470458976077933753158467648469002187822886039823759700820325166230356280678411335315641990618315444615630350697901452!
 3456974751888036552906663467650979359128215393271881873638801499761762
53345600857308634601346988279293653160578809044916779134204357282978403813273557830160356778802839602000996836614623379684476762758326536111038089971786276239143068550300480058692900771095947918717231905606770193117747806476129573469915263225020549745052927940935602754898497267061359746891675470721593255377040496920443941594215147437258065163604346505830203389175211823268330854265869564346902728117252836651394404028971809268148613100324368077354127806706989732499121663687927733539799258059859041512788830363288441492000794403138148677564736153956361230838649228080327742475302698522904156273799042707793301513489724904045424268601490903431645386572842532955895433855598047265855683549343087062946182406407077253453327187680543971832859197772779342291403117347997435796758829665331605009557300497653900031489660946479744209869240488067365642832910628676867512838973179314284762455805925743006286482737810727732724663485347147003179075887982052287704662580601824686902349476297544199321!
 5201577339307946402286899745970432828713908457630749945158669419282051394457308829619913414511403548962444215510442067342197740159434655876250725579961843295098947333191780609686469994590209566420198875192606602937849639613979446442047563354665378808106173928371677540011384185048073867783701255560948528696735570962244504552314695302939553975111095089095074022341490737191519745001355168665334475489227491869951552001344773668952431066342614402425660575959697287098488000708811051371350517398575841002581683556525272091386744520098136692891027135210043184909769999379822320791271507694927911093281633565644961397076558300772938227267232966423627255614905220025718919986893132792586293875581523206592075048140107096562908089203316675571431510589268070166954012865567210865255532509838797010268789835202003135452954461547990800398421007276510650186896958505181175175200615546313250308731936685728046524669961459798359162328764286766198380840254018547270251085708929794528929316178656190402!
 4917537502311613547863868816958971922606817747344839970684544334943013
08538461937795672200440252802575300287379092409571159838327547772440848200242522075656423405842476279533687705271438035363355464077404996250863890549988668467822068970428023232236483074687912419702403883456958928879001905484869108453865222450526250041701540004183206962415278777869787374111230697963463644973309017850129340393515900967075086183969238721288604291582879027666895073303530495891208278150392639853976985667434723171255952100887546000478395868623870652171552635455709167183219365324856127303472358074186544187180683470367966613647106012184423010018974678909097728058145286816469359599564131451525426996943575911535705103319330173570510932493864942151771401391117177476670510954179210474151857972845510577941525250683260767113391150834194095938553124326933626220621394830377763836590795382450635392086378100642554066141539125948341853872456984214180549673458705888764588075616481736489254479172904846071830387993827248925028438827476801794493967851074891634925716545957096601862!
 1739830338376329583863995786196758819629272823151898524720372285416314364301502164616045346907797254207699381565550909758759877785309037100457278139428468889654919132079605299211678869607255974927373846086839964576512183090601921958434604013286446833245554469157342341755412114002083323858717434381991030373047958991780835090969005913388114079886662915082660995048000573379618902259499347758552051031754571091767227970355830344350757435480423203823505978548038332135643045107515490271970340616122547900812522668951732899911997445103315010205786822200965458356919229839467864819440692656671109183582069743681914111162429723659582030049811418436187472444617003220429956519815417951215076441646850935235715095376788922301353703766118955044784854699683052406377979176438713796205837072762940722462318165870515101453471454361136206720443280247142180301011385788761816689977143256881031141146175362953190489173353708694625772807665757580394698815019940891008106746000902833927152814942566036730!
 8935982208312061001595091527976958832295642817585018260189152896129463
04179351820163497157789084112505867293045189743755858862701392398906418092054711407403080782525286398935733105859368325701168953461566015884135800894003690892127734433763311239184578698780726841688668338629998149133115125772255149204144926409556250338504909674064293487686537453923857596965709176483140568250184936011131626497372580095009627611339447764801133142802979775488521216989430323732612577812972997970589057833355299279567896085004474125784344789726310879738445364493898415668950058114997476683793245603649210330762529542095695398036281172758651613813819182494238268127625492672163743561694173140644483352496690719240334131069583980481743539501128784932716067611222186139606530226894353363370295054277631416085126146077827003386488629867786978757052088422764213722307006307979357863060910427301464263464948509062288615480903448765201224650755657957665052520077111732827005481530687410228347061146947692104664011847938087846850687393464038365510881163384566161276430762977227651365!
 0221611782389809866570891231962417400398325875539072140478231244290498151656214384433051667874504178256374700070032182961906119856567121016844398486427509517323026991440069450675736271334770873858600620280641749344086411921775758881461901249630500458637322338408339405552457364566657375945746119462316763116272331775367980255755723655899402683468160581477861052316091534277220904609523225719898420622655316334754027917365732510354213348662854975886396748394758241960031845151619181054752224439648328941452461647595366431055318199718197357733995211233402211061852129520591739860273343558857597464487242329430906966627782952334846743844198622810662602741090147707288743376302137004762666272080095942830705512525490535191425261481990961580460484940916212378732671989902585858382031699247642863213807778339643463630605622957034389694174841220217209992126763981362072070688091089036249410197035715457042189940020295602473277310745044723575914702005654655365199919677364414817014019766606821468!
 5725068217252053347589729345810080472727266281402799372874489011735261
535
50851468512644182692281321516019595090067077804966558649007457494179494427784576002947288186620371440633600918960486196958989347012431892148716355961874024744429279181937280612865285212809912640099660210282643201319934051411659958506721057975985722896316429625686131824571401163186940659437421632697245179854727935333010468395822267809909473699503434497989527608797792311427448712545461857564846427586794717073054135624470665370883515272750671222069270467454711931129644361684508833763841205125120663085392152249841983616365721802365773099128010643481347588643633281310248977002870960710286945429601399601768665674236234572947839101460786904319595625864923831905044488664277719273370945487859206618434848860550284767627884151895833140122419881777338175103079710469769556888524641896872316648386689040499323271223308673828583208675295471322893987434078232556405213902831156532262166965728386428147472150895371767353677809050426188233753991875081609427060309200293220683946254509027540939217!
 6633249223012275608007348894530337338213478110956036304062211721385320675397343448247395293264782286847259521427442016557369398993159945827892247137515402099068301275511589437468794336646067743300604369130419486485632731000731373557987002884610285385460490542982390302543920721149341685664984156086797901769800841389462763160707156904642131009053222501652301876683607706684415385186616193129138287132172467188442707977759977343870242994623643746474167227755758818258861922175219535010597717406548311576497586973959521132530647619593710250467773883275640691672614801204785467272169362989956969387223327783663543623032674063986685210224647945755560091144922196073626253726403779610736334564170326417290252283565282572588380111261627694445640758288705510363714327341514427293110761129202873301932098910034674694511196682477944829779792188021538867142554913468424407337295943969787436564699720101420065684191062239883832387428883014685668561716850180436932645788456510360099575724894970407471!
 0360757116271377018802438467730226428800006157909065478035706432826788
96475809935546008173063034356166456404827331078269573919338831087572679894302634586148125862756554637929597383113088756414008756032240346050335065440867919478726922684879832532675795391291620519236179601184034833679833486911233215360362238571071114519014047008579626684296423477376077893231236732533459644590767868322803215737929835035742544505544845591959840954499065141139526379138654667890950643563614171962515941514966838696521513152939397289318928227790799670541029014027044002265377153830982139850781370133775179278843623367387374456039819775237018704393037208718607258092914495150013659700796280365617610231212624613470045335403100349969095819834938699526235805467797734239403718575884440764384183630159339821820600502489693424749755380040873425084970331957114732891613315291251397464865378733299462991757894515675234530347769023715520340611665929948618149708375908535365439734037289794797806958886227608533147696699601505172257771620997550588662340038570775317177379048193174236588!
 5994255143887492706281758266733597908887722332798426935146318730714004547048777787555771979554593948085022181187655648224949389295391833417450486990222595166985933323656661587033895635201105692403084424968104840374969802842054890050769457356425278513460732456488691648212112320579716225904378016416869843061902709509397072154340700741277278854313643795053439172872246977497026365679535851973025253911773635589521276200090275753429297260346724343808644904658926546568958837960973394499740485503617881890597985844351114587745834021492290138156671361836411181257243423175934672372526550313935576381858626403401297550218768924785015884283470656282916531732625465840943013790786387509847525371605421850079627363544204191458179845881253582620195984848604144488144225977266749823384148335258278237989162796231062030586737416489833543170484983795797669554224745179631968736847143182991712367292646534688106966431951548254872393964943069914396509517757300053038387229257159038955581729469818961178!
 8566829851730063009026863085681526777793453071861079286750880905310096
29137680651559907737862203102332104395993515484305219328460643463884726108703397735549950089781240931454542653149372276458307206552433696752913534048207291528720285817273899357002365229395720858618826824027505441368894978458050081485207745380640746996602761888047932030798668251075284083345896741305135864467378330242078049253026334413641322267724690642027802222986966060874500317959489108877151239971100498369681862462647480487573306697656387113897320475488184308384326262127488082353798110863878026244842267300124778462334960637550191136188226314299755928399749229021821611437504032572224584326986184003091144821521565413572298551311757921972564280281650220930062054314237249430545255284744055771258361608267399872422900244638824313014210457254314888510337939282763881006778704516563445242192359718460706055785214101968476201604774260951302812510551910643548935798500484821991327685818877595726998543398292085321574142221988546042259691369701940424080223048742146176649980642615473808901!
 4710432538304812499021297366648628896637211261388203583244783799671776564929180148273793283086611076529634088658885876020746313772186525478589499105888404859670811440052710462015561855363577449613989322534235132828412512205502232543299700720586732974064230555909626303690712884346293181199644307749635030750641160278661535079835407900995465869181836608687544285354435093271016586978529972920028763999329972259932374580697238188276488624214273182902068098509026772229756055314782373468775941248571417739784640117322183375644114155961257206978891009295379474838591882641069984862595938678980783807417092886571506245774894209268842990249328267706385155024268949959730564776407341938562120435540159573612545504511489639426826573552580119681981269139381650570837772741314996756099692558583608035983612913943322618163704418485741297516225298821410264973589873199328639440616562963408946455029888317943791786756788291154039531646966697410497274629522295449895482729282030665818836590717992315257!
 2243640763331176117859994837892092990975901438184076275913947461657214
04034608772891115561911819426915347036853710079443269894251631938627674590964662131180212354141848702584490493297044071333152324098718039174920590070915939123415312919965261703678075266102763189987312868565808534173388634788926278491232661378849868625770251785728236344620799746267049078111286889727621452094237682583251579003109171834921725244310150033789659466358143900358264657306350119311024298077895456618328036142682343821371072045974433698321851627568704746326407983045173927904961864718737037878733191060141344573781297217729139509224499697981763116815732130716611483569240520220900874727991288916584880430031716494839474878493524263355000868667375619593828486294220270958626786138111918444504300068039181107883626288107302474321983130220997245930508678206181967460160243777418830134824285535557057363346731991990993151516623336482956366229508989876053387597250622990782978234363092739032411696533802065864015357376540394825363557776624033951684527627005721217629938090076108834846!
 8404739892151270191082004014901041630314783745918175923455460433806761919750934449405687356429208991597985188994755950026003604866811304422343988049599082514873724544769079972397530287296406238074799610492218363106406815643245770561515176789267832261114847017196342603581949276668582455750717997292929103909939878902404842692986403611633163781473116300733118117829164667163937863823640267524304719818991418100067925858971151285607226534645641915231446578718906962413409148638032268584260867139647475340337485578999999812823472205943978857246858815213013049305081618260303643312372107797164422086682518607963206506149506267635293221598646339008913367405426304504422547271335689289775425094529418637277337659921474178559961322330298021649569775656263828031649249462087918485847120705821021999608269050338663140127572188695323432281938710247770198092868655600402921950409838176462169253096482025522585787515618545985526291638462030283163511990964273137863418170948310070088698913202956266814!
 9932404644462244907730143466566735789151446491421315732302333772661943
914
69938961062355393734575449127131169567926836288538441893959948329745344543432917353816862371583693358421342204949843234125278959219825129745303839696712502123213283476906443991780737767934986407886109127012810215158758341951223299410433678653999336995029750650653401589223685867519350780154104435747754212375113239277342129397272860674640299986466344825300339726398937929559952954987846831973788346945188454315707166573206277314962496159636951358766179181267197355003921562152302843624639583057486805707400294202720308726119104220488874881589099473509739899240618919675797808803256292552609909519457924131280765415347384014085642296778040118842699839611740685165250597732515207147569125070449146108513530989504779270127760681956699279888651922083629155547032483272998239685489248647245232746888076880552148370732149423855594763589034351248151690659587092873044985019018331221541022280293648856817818391228542801852497304042925964056542387869064788578577846905472981246768179603793809025478!
 1386374240319016354701580585719683888309065710889336074271070030632665360791729365700708244423660056053576798533180534143809968960886386560053686221206916820001656516615033391649724143199322730729254146194691753373216683403837129898955500394018107205813860862325957248123730066700544775334712828017448444208530882994716120148539817694715294292734299435810975764612962043095871209941043676256227792773496606864412592337283148244262620757898046652916992354192179414193942147875250831158382187204214647176239201917615595306292851551423867079799255227073257704180267604642021933124516804648896881130958401582774568425813102265559326591453646896631308935997084320922971528296785282321171107771481620924209363673257797081622306204365335836727963919260582749364080885219071142716413582069969603706443805208933245736089020818365562208083149951634225366188299271410676468188789106837236238494360458145964708799378065408747180342097460263539210817071659038872305044618098957296417381853642999459755!
 0418750971220851905104974096694982092126754325410306275405143891360901
15289942148740128626755065428307031643199426952039846735588850028748568702280181716917402178289644561752190333569622012480558652888411339006531168303896210384211708670950902369901579764411026476276412624602935648141872450745846446318730668335552010315950855538852418247562888476017617202244874556841365063987907335377327559694867181031475858555053558792461275148418088063117087517605199707680697403520162182126193011645443536656947022836670229527906994031717453032388201017258644312635799247424179048000689743111468688023898737222633018033288338948871887399661492917399369859644892249976776180009724513457996086717421688877753643912998294163851308548276767074108152661862498720626525302890332683351410760904930242590124857553477491451683035542395309613539240463660613204335635333175600961248272024138653047889384332447420745974287054832028512611150357903165753138009900650983082279128800340012542987848740409158023071644146194840719812394034253885299517961659872439913975810188847104957997!
 8285299751706697401064937124435688305071796969277052491589468546825308120863375004241434217683365471877418874007320647986538147545378895240733260127788845227997325006312753563584925476510801758636206309982400649569144265849705648089797635842894404361688849379684168198737370965810885956678094202541415234886700167559213415257664656392789889266079624918906850258868711801383394121994032043561825677603239390536359409175705041960045621681920738751837707256280986053459129710361879331426334335135389853646167212247213901371540413664506560335819278840940554811422312231196329538731949887618448179813892046605324886213027627978751869828992698190464999176771027451597341058127259575783675948311353441193138072853237625595029068470360823283909940139586175032726208557470317059285510459078529041114765829775777651909530805490913273895731568385114966007586446635079137758399977752299514951304038594790043830992532984050450252649208963252236151951144025248086442539427455594781302496062022217255470!
 2194213789658117351459505166619087166769262961658731925286323250594918
24862751913133354864509105053930151663267704575868285484573132548073212714901104252072217136316596041274786469144363131529189113781071768903242639909758033403952207987990457823650680998569157323879478456817115724972333866358740424235082118838358467980044138528688649977452942597870504227782957063196283326009502557171321085928524581266596643992405071516105048015771077692849408243670341985953055005575095622756669767655219778683635423935341070105699728107633030266677337926219725024097429051573556858445295884613793866494173590864911647840062362203886635647892256564052457650178903816253299401702225294564965929889898675951350678515106711110362156639234596608682521197390087595423995994794338195576508614772549514691657037547730419894028602321197138560223886614378634952527549846345562181071786041868583416400661943209386194096670071445443339589833730052302406363764673442430253151203940634281720215699289241925589926950990348562920462088502983118930753016575970939294873580286686398833057!
 4234774303226397326139228810755045276815403376005635678512655880610998225306337565884133531395078930592327392823932331159767651738580063288834489392083010506410982630703454777894890976939136990346541012621574918925280406854125887984158302777268450824691101338672343200843120701413583753600580516497959744744059877087300374027994931251557181283778604271301461335876493611025153855605533502681288507352030956613066821984276360456495010740478127361038934108104660914180613926999747362844086793048236336405516731369725157814836365625950815763917894433534625887575892635218417293551293120593719411429591979223661102418307545558752703380096297518539414777523886216608863768159531498365734096617598344344370547396055656202402250028328976767794731606266083475774488748877673139676601155287648990895588381293124001854124965435536435588333475995378675682132136907582553032058056370789937974546551612271261277948851652012305511770692408131386988135234024046955340952483293748538236699055662138636714!
 1956672291116494555302289663323431202737204135693851947560439960053913
29826046949850180170875646939883714246557854511307275393276446303772916741473390221319109379142673374792491261471871498002126547166262868507881248039264109881138719432974915394961893514464274100186553183036255731566048285995167938202037504916757553612526901685100869009245233517707322877102145360480925813206875326251013165458430217415851959810565797948578568047288172345074502994634796665874432361101033409114885440202798784437191323031669157938208946167749615622454484206886663778443660689951890120307605902996380186418185907543923856957387873529814036750167793907110412148492802476310150694288054732703839278835021120545758778146174957711146376788672829628866014605795914538920906212212812965850998178696301608192053538895270563319445373511892877512085328277889596986925446583453709011033580258277044550194927722345423310922121658422040288368987129296342775399256475018537694871336457910435662573269285775312323979726190122691018683487704508285526764432643963551718913084767983057469333!
 2642356168850235820465834688025581549428698780914480994946543897306390750470343234618819583263475386461502732738656237157376415865242475406072740083364249714604094900376811297592049161635068826200273832209473053961621901279063553857393413149925835822727648340660569363764031203834799829919133995022610419409042704101219914205431646914304288816027880264167041270688647784151480354786507119873766668057090933196793253392639781149237794461594483167312382146483288603648908193844836101783167300736244571093805155358774113666218767894035224909707021705101740337503589704680661409666011321144617499880257212783928165787464933489692402115848577903746091191289436467305772512308500503444520454012612295604194658050345112603043269482725383807772191593448346526642367504962106988171232385746965629351733829063876574080510393323805317256662217958379088246002711803677465554458936771197987059961124896205516370435741448552418416001608765749722716844262049893856855488377963922302637921321241299316395!
 0991516403368615709373925114331859428829087362960247359386862257304874
507
41972108522326118479551316859570793330772818505320403915396540717211876758701157862907562903708489618183657449701181952142312025067944492537167984397257604055921277374259912785032474789964952781912524173303245851790431054111456243851537011422119031132639991737251328649039978528352255913819043302298030048516892173912260436602278515385593800543125568839848121457719907372747456431682599261895119435738922246898502970348648679377296434021026912085623915716274947834464861211959364810028531157069348068128857899734097459146582747442637715438124327029357532505019254621080887869878500130419828846002382662321172236088619589627204087726963628083086312612055259218680203857575374949475073273524149547408700951848035102657693557657357815423133006917886756725754812832698101797477902950507311346659461449801583245257552557216930887029890514673318253676395851028906610051714001878827763541116732461144521740726168648212094764125840689383160239932781128585537028687557112477673418502821099769094093!
 5842977761014096479772867760542704634050172402056794613899961270098179832661752289072155604032099460710850646893276711030441052032787520250160261369565357927080248513063090525594508680496747243133687007411983830694221501059028090117033942208774232198585272872666758165043050615223476523807606117133483549124864222599994480609805949385097510436188547225312391782136662070011442295936028971119291407642687785378505465276714235091212957586541549103660790952518853750484510493568563703253946537720933814497346039038633919735445192728679199816503500828916615554502076803721193735616258576547233186212874016365491589427356924521302829081202831863415708208044385364609457266097450894962174855005463849423642505421613219350973054855131254619206335222708927712370721318638975377780134777619215181818704281732649824197771402273669804610768055098512268695050152833747319916721416362291728952070545649769309223921515904016141991224489072944920285177585589256954786929278546498511610541622594284536265!
 9738072404628800976691123908980907503755888731767518490640466880721547
70016952152639183539206953927078400715427627817358528826888924784109600830823921138361421055421922898832489649803992970433392277192265516431402346610704349198946116535867942547370853785330351688300765445780100789523432175761024670995222482943328779920348033026648193655113090657857660498143105058600645410816668773781243506933224399157379680004479470781900825225567835422703839872495592038627144756882737654010708863964447356186673235732990109429757364107453179145497448406332944362789134123802603271727697046603624644568125079437582483272458334384182418492610071933629870767619558996216933746383406233229690903210447836068780856703751174017735031003640941421663635108377163471503255723228285586715569716577546024816826584348170463354581196951951303190391753708348331255493788057040610494232425275568499339300022356520739800521368476720934834109055707444835860710987943990314410418072640406724751802661300854288697157671035378823413729126196720848360417399751737104820844944497793107634200!
 0180562819832403942159951398563787061448428955239941051857195946080345319618629103208171828843707923733481561828234348442700521295251814574995202049403975431037624207530660663612994029993288700209935405716396533165913563524906212033051673286231173366053416625731343892516520239779293203453326737851102734992020351536593418968552022189676165967378564388577793908571442292761369318600186145362790444264586348406788618456938305982541906353351159544379595204115169232296662445073068840411658715031747903249847587604467947274002493172532530246906584651706844534256220837944212765390802408924584892377130099223986646159422846827294212718558858711940237096044507768358746390779290157687725825681507710304689310149161505648133391472532208997554242145364181885781902927698051614897726810373566110082801932119815729971296535629095280820756383262221543361114313801281993098437098589599221713192019314835167471142063406848312146941661450253361296662219186105023762442027645369181342147777056401510692!
 7414587882071758387777576610998829070077152528296872097305519426306010
30609491630364823376371251887784033882087271268889402825599874206674643974151940289784267211882683070667924106513036441486224476170082851616661278522675164076947429441849504321117028269012460141511168952356973482441182083594264570516792370990536421096373251922383192357048459074417316333932314166741344417765969061171872646167083522408305822655236298767763537630210499493546095050653799845290854808963852343302019232985137012263081616169263293458478423134150940001941694206489299652883145655063609591962748237135973817869550093863154927688662167413938805181812269010234442694367401974931701763148888346405739807403627650122184570052258646603951043832980922573457292173519963269615110757394533809208510662064984772397664729979788633883410181345296864259938123418634161965734804782014052640403923973353974998098029586474676396148297243372651307932367398252202656152263646152680888009295153247068417406549004481620394658603022427405678860743654806454798969966188772411822364948687492026118220!
 3975970595556278047603549113556325704780058014913024252070194375745207056930383395647050741710293497055558091880904003207605275224887471007816813788132976639302112923466963556144857800893057654443908610911670201895138866435195210086398709343869463568549493884913846565040648797580998077462571954821666182537516489100342108869258567958289226460662234609885701564333799840226880915724948465860467452551600691293754941205251876539846857768983961012384573762455843715461738721350865465358362949292816775423826716825597724742612416932185109485273555407397129722828470588925089333611570531026715362720837136431147756271010918109349728405875018370310599541578306597301028611360046083531416939358423632383107045378412056210808230358035326275076127862861670314238413381298218439440419686207494766905400118704803220013527059638685466829118432691946769485061005489940106190072810605497160597052255948963826427617540433106681419514345355611814885852166380558719996522963181248205577953782393500939486!
 2924879406522081883565848385195621113001281450164634802055293778787855
79425681636420112293553745243581850740433482866560612627773793109623739959220635629817451527190477338278074922565321193195658918204359577392760682419242183687073707242995012330729502702366846975362951416462073188877408663952873054985284687976985964053604502618130496286369807398229260513573941830747940548986257914108808284746041189271212895900874055862342806399381724974780401043600293736389473486099576979983976685281621360204562511281069980544975513457156093130400701504844087010769728360517700814147145087781882242336030321209009651806825596426542319575129909704449664663737900515940106536216415638462394771821801882192636141918740890681844147907998802464504379030098527157782483202473726745717304575676836846400171281872738997253039723939563042450755250457846780113750595968137903390586275613362264184556526591446673997149273863464560288574028782627808223328133197595033994547663198598987656036988882103402456258431388771398453947011773312127125537103471168567018410540353772106511938!
 7240466657941037409808278687838545155239403003295295926422405598690754079390620236948687422085883404810986371834513007773515760942634308935118448682396316330899801324893272852730947501627382288372751332069955699958188254039508929665525858466265238964860789109730967715284505206686016303633912450646589038938791538340539631340610288403829320660085039069412728211306872494453361308851141623283803369673260263226980685061252006126987411825765632310514595130343379554955222028571211437845614579570164081082075163133891912766901234991746745149822705514553855117779621295540455717453343543778932478013543678105582156311035130251822012184230868171659346958672410926923049622578051403159370554785584336335137103219031105753382185703813023029755116114005303397384080945143850570571892639301764422268472815226661527222964450247570245558242376774768031860549236817978366426657686015256061497830991080819747984990973943402830227843547516820528595055105514871413565775936256363722082364072419106242874!
 0804840558509920479897076453850875032937350842739220926131746128451918
118
26950991301875060468312565506120161984063042711693541352139573089768165425943069300761926377085171468719894281175526469234394779128036447897754333338466186275323620079773539674055161682467235765961163114727820142447295488831014040227381860240340954685729680275311677525697574242077329304151530797209141630435331787545754481359595570914264933430463000416403894947738969372572261633535306306734789685298459334800200871384191298949274735079662716910167398112342942049057454549949400160312443481198368443410620436117948332977235117849118314008956643420630512780662398470065865992635274358657460891541658624203149149209307175370223974215464970025610353849986559719455586886396652398776508545755665850820747473551674496478055725241173837673875242974730949185709960434148317631789910047443587879230216773753516248277828397404244438127306748634588765570830808139829702185927458829177032206332131151746389437628673165444169174970834005908385688391052108824777773278035231544022753708944873620128484!
 2208233899016839105340604539627247052980378721965955568221943575274825709092114642594652866553579149281890741384221896520304295554393133505562190518915157402805612466190691734079510605928282537026430198830344151337285910735024772302023897043433330300541746783726242110166876545090096119100094314979096718421939950855625856526041748171977249780015557413405798067088744132870066217073300535546095830477919399587101474063632568752104020274289831387346974992545787665873424086075177629093105080669344930241675599813221178918588835728261484280314697200140489279485574713595181543781077793594574935879791732996524938250842041370551124765248632957196363270091642151755566541765342310225910714285254180020159201491413734902012577662272354978878452630984208417870293147543815967373832088117841434824829670515313912915431871633347809695214735236824611595982232285442724713215158440754917484264078941362857769326598835977510369745465405153488517033162097155893294446433036265737734949948509338123017!
 6030600610428143286540732005733996100997827140406605314567534562778248
83750390283062111854076883037002119151143366189411548145972063892605054927191879153181114961390165425953075411765225675798405557414453389296956900029775465801607585753008641231732623275336357962203757258221004850666093332880644311312983815822919326520921630515448094560727334145195056762411491322735901166457294435891288857991658612001420409846201051294859157144584892976487763281248858212987059354562394392017711415376573901739910198877915229235072474109959177301416459758932553035349904669493731526982481769937628228967153289798058581689108193806506519086556000702948311778085054382554503996624161661153678669541476467214825596460188994004859736266879423494153027493658886199302863569728156214692265886752107099991800419173619410829917635270866120853213178197654960470343209640617452545611719385501672742092587848940526913089150537390441501694546400422011723302673316021407697738869020318503140979590878217079195313390716505304753965467800721893525945452342810339676226197347101534958313!
 3737704851906787273866207149728484963760633898990476950257561341372855583246668248043502916283271167101241350365520728535614747143019945776440429189394841849456722077227655050987477402430701686988760950784672341608715816042383998839791918127774363318334496169710313206592492128120133589984355013714117956008080954472961236884018267587912878476627641204323649717153763704494849607466784219406885654865893973684557342493563106912634480437820628781059441781011967733653850202051802387658053003413285836167746579204860626342456124574732249298319231795806618860773599702168869844511959423483304010315999516913242844920570828640047468303728944600859015869919789010919300030544103052006598551477361556693870421735812475125610813350413396348556567599878624274412682274424825790474751457556588927278449679498331951600519215138663207134817863754135491327608525772704429074785444280308386217189703914385266941982375561621784456127712546397915984120742798398266210002436107493398196312166445289393907!
 4504610896781696803192127043070425951873176400638170189695594421719707
71633177280044986480329905781220883231594905867602628724365974877686238388887769391014453171082911102928297851405317019975012591389267406570152301860032994764248210534389441347993400617355764322267536849783397850643768870960335681248765209381431529266797544809048927307898182646056670166254887792515209069249161848971703484306235450755080048396129431129172291117595620661924888725959674298785900731550920400412063689216748091162728515807730527127199014884352541348526275979871772497329440419602145721214629987426843371948899413117197550600453625464183130024666545929271259452369236896138177987690063297473149858732548055222914085999441451122896265844694010375449739156090573693798719154660679606982173129520775301090893162464100747075182915869234199821210456142542283699443461283675353406312466751436719590826328611538823264806015095361627259973776510136592080911519083771869918494367446200415873627601713593527354192165260981567165124494002177307411548168407601818969239977782544151233076!
 2808357153495375777284056340915556525043632154730977499201393846197656856865466936984550751379216143380923729395502464312205581006026696235866107418136179656318045820286204737641136322948231545738389513772442020295790437229602301154683319046252304050864701318887132292602495549794496109778801216267107570140576919433053190347347177172114709863110864342753414144467261889065667767477945198748189111473893581524226848805583442329242687293227409363280372849062302321760646050957278644406374736006119745454303576072197843532924612315993091915420691279764010489278481477616404135047023774678874410424355124808068510807333570459630903445715685480013710943736757924319327884169395115325219843902606850444772556864411259236564306807738700630384210342901348074901551136527417210461912603507333403640602667114416155512637381487253593424415747316713151658833289733539363713638544824866488796596425073976711757659226833988756643563175239250607187592879765527166163597746771532882140435361697783911816!
 0237253070458262502163993256076325815900658687299676670789694693737495
31071074847513251692808719793103515453636516121208318176698393643802081905090728575747978120251321621863421312576784114958782243697739333281893830216052445649721026084879326627416818057536722440226815943497682727767007430713966061892273739699434597710955031723237099401207866007071389674289003085890997396418401688619956344558312248230448342189768053007363343549856931529984503501183258400937554660265944449446502752821034514632586068209308284436538707344513798095687058006577922233445067814853459618479175978623020332956463212662648903391280455484248043556934871050816123437641208700029673971555133180581749980750435915599306283880495243976711256175078298068186510196159831548411044793789672188455561706042383011914696080303352489557015104859605941176334882263005304380113594561717952630156183842036692332660319293388869379020170682874599838027195674510088301993922032334934763071612738132481834512495842819594785447088529265901247854444363818019680855876093708700022198918464767511528006!
 9456351898419413673477569936467621567088466745171351028337148389938161149888962212058930496899239211936474462136213735262731675253340941511056268854348712909263078098038153578450956873964348742004237827297191350097293260092975162919245684425685400219817265839662758642670141369709459930091279488225023901052001402037209967150141878911761858906660282967257337740010609224998298165435288993574899113742206611702257562047588803909220786857533449605595265956735181279724925960029837299897240022595237453741787751875586157162807025432052260867975909086803290367347802896943246835428676662771196383461588838192555707617134349216775927926386034523296698193994861040221968691267759074353577321395916887890742270022147696706849141390897849399851839240211526146133475261212589190580192453289466834826282726132318454117972194046138137535075593196914642656785823768535854742735549340359843750073843751094150373634471113860646947881208085128088506533127886453705148907177875340253758019565676590609823!
 6173742989782740024824166177040433496984588760123593837433853335843248
935
11947287621363423978566530655071873633741677277130662969560595666374413967312282039993282690744093808938023438782252469094268833592000613224282475592541038869254375594135097241747654974184142118542855366663596457116707168639790666920821324326940170817230805831389173735894340860913063670133742759489105112324762494576497173025402945889712627857674980401155055975943260869767614201117750237366360354402314577775856034370075741947065474889073083390789641532409518002783964600877746488000428282706730181353899557487823132253867961182773252114623263935713983189844287404525526776752272543105912914484718336061766060617798784325652342996835268168962036719789965617456312912950077905520534022261847928730921382953964878766133017078410915667306817408919808947181949372076580603662818758525481348714989704046766045748692339803889779060001023660058251765406903921868901269712354374036601395089726782093100404021050185991922485510309582863835616044007759538430258089945213658058342322465171893718640!
 8934367422737878123782351988977674039893758883333712098119734396458379902508487832403437016918016285529541557800582150194466669770449723434987849796976858530676780781861970731815232626517340958294519249071925938249882682549601089113841868650696876525986015426642575012029192679351778442653772020921270942028899302648920567557485430053219594807972004307499401825778568233122201349361822741506895467862632375795217556628679018590946200041019394047673455490962716306608046537334421330083782968383171905373246551227272263305755136333141472401103430671501197191816799139819408017840272516113510094703359329897913330053765716026927107704826810096486138260677710031575999827281694113961062125863188196493613719827939212797657249191634385685530208086425369084622968336154166615778274086494320687961349419306969296093539288536950948366478036807610094557676489950763927220510060029155929066190603171061654013575590376028872631709968292410925524007751652680237859931079860077163989586777069649092163!
 0876467149247559726480791882717096312932406737744584019941006793543221
50115987365279825863724164506223860476020847469935303165912767402381005611246599594520614910985788487909242437601181248787690164241246753406032819819550138737461796987276013619506147496611307862384628943599552033287818446910403039316062867895553657464130523502381299497824782918173289365887995668718034070694718735562113723276821479781813111503185883880393310304316187601157634928556364068725196446324232872647674649255113049362545070116976475524952024785848241310218473380189246061906459014598583426879142409895788084481455120912904421559118966533839943794007267091490708460810811299234877278465155576969904167739505957538462551978720465872303551636394498371134403866187963575451083327125083797634637439087582671557164901106170325066185597447313077579322472707678479265975246969005601751792759054387382968526432632039475637943798047667334652987397062147187371310924003684909087295330282987814339201864837318787616515335474249528579282365231912363858189497330895552317166734464326910962653!
 4096719579853654079102849827121242448880599319594412726225351686699354903750472748805203663989965245208455090040875488822055052439263342591805028460455153136837623718792806303762243679133500015527619754715055318626648078298009351310655286473893664056330794736105856449299474627192086899171792651198354613638564450726732521262718856076280933125642558698934900167759997239648025790193992212304701305761045924260798870051541219704744400889660138813864867493197207583313084463756885436098126366968716891977533797070691621783583004836205581353606584370999139202040998657026995086515650603756870723153235201527512314483392277999652636855259954432657650704654355906922338356108427690403331534784415388837822979871726362128507778314322289851346803915655660150376401051582974687441732255700565702313712752354836338082875589860201432942706974296356877743287663746416119202572726650852310191803617079134650674477723417741172781386550200309253961890706062209653401466580221998889397044550218332277139!
 3263247366375354316164720886667833260396338773032271507858197087068890
12133058923692846584105617113615354370742521081818303879378164199234225864299864390488907020064606468669740558420244812471153392068509851930589880307624560382329000502380253190726499583127673102136505899672626022452452219222480628809348734246198426777901194042635502837892477494167222193747920982860822507791351449402547003636216578855985482050596102858803725063051720263398241627745275737683893355944777880639703188511795259247852835943858684910847978843179201332780075877580974054766643016504968402854877597848303353973628827597157000766088096469499476541994159980740909693786599092751217274436217566054563323255321812494230520080634418835555180906636054726222751173492604251408095182039287666160840604477844770745337676616309857562058123409960664771576985271337591986460371794546250424172783388842375461009816499466241845723673547719874393368850961758257581132947053123791652946037517362111875555209029102712946922935346622399326686241276272014041631014710483353825989767991868570789807!
 4412451694733328759285232617117741663159636825751344419539368580664996848210718413880562515855748553097223942464006383356983071467019899657507067057703046741548145945544427242690432307006415724876133408335293937611509420938155565238941441234585886739066385379045585684222797999075355706486327306719772748922996406734229477451933567297315728675061246888499825058172695542672749638247023177895368291648038010966607314555664692383992891472553124745462125025180038548777732950281291279669662368380144908398723580622732896370305544088131174351971650785599844920390887246407614125101085837903338567249751648920989133670183458146520943212790221190307598267624048485885972107496013901933994008836598301376470730201047825924305371996498925922523431305423007705269591855334054796807429699941355196209814044373857046452818836935432477850724808762923149496687296859449232142774191289243230381048567619820654433104961109800117381729618364994154461133168796110681729897578691192241776523720229991593061!
 3858686995029414752080100199043042098260977501795969220007492920535578
70041090496439402042658168108892485561380344957780654859859223052118833870475290047137035507890251483436445078606148788176826050342028512155384612841970548737085138099142411943667885939201825726735430246622321423458237145356819641869575677055256218906000687123868809499835837892712493106181571543623599110378950721880747460301628932640540819357879419315589850621060664727344310411769900903435819362589301847759098832128715473823436295178866547150461604229847020512818959866514299028304297134150808044275793468145590680252451555502200898101970626781272755551221005688980919412639560756736315861172812690670928622922315076079044836115262867677018161614078423275867383951517220224126272332784416813875944208300696615788698364038546059538575623778906388345256159756595870685688539908287414845909530404372807904615909890973388518965352648135986989047532395544595487173137892344623400401197197609855801978567884869058044153901055913707157480434919905210519950153099746896644196501416767030815247!
 1456351598403977091218449000966924901540792767649721783026094651004783841642086061001421411865476567776511181944301043025248884298501565825921745938460527577635766059131349731353454311027509621877873558390572417280281938092697230680807373399996632359187415221357091137707823852812246738026974871282302418934696965283408324309072664670579392172803609504139347373337444989711502798524835674550493740118892225263201656494160981349012285045605271616478513744923589804986772448399645155125807957721482250619888816875471877868554828118441689256679431585283748325986195741465439705381986720108924093015859191406680244022450354448230495570673457044095311050434866472078776611621699728653371878435722602157713044690937839026959894677706648580234617441651861295960273940238479237073439671808286876531658916337110488430820218307109190713003738499363608140326495877107070462263090705478689218086579959316164595489058042758322838046688486413246118196942803803113542967877035742283153483749764100624408!
 2972434878321809747037363203888456106470337876529308603089638895744605
437
25301960166175775942833598776775296703437116722141555486841627357520763483825061144460767738421066986213187867054139682844125775446547602896393505315226072858737861044547091680326890207953004838605806620952756244490081503908697990456889315849664900467238377388645943083604330091382640780898747864303369177602004147666437214082137736255344116755824587615738081149648316763123123632540346245981698335684474403114118345493686992411136199291781644169133136594822501138615246265705099221603191354586442031289506822862999661890161413357597419153993679754784166942815795680920204414921526500038451593823947499671101244973657961459047333997742623262633512801031844233064218164627996078289004218524873881818112656415759962531686531085036617250234972131417847175326763600308265911119713482790242523296448391612664046406769076444476044617989210561888489527263762588577679571024170928607708602075227749450988027408590934701019781390608706502832832549238498025851902881865577308142615386900172355159768!
 6360556716694509484866275880673976908970507862391522452331623088970455101658005081843448451942158116650994884368042994423873520505089326002853450395303664351919080748656400447387702714577365409313341573636768658183834359040839419299895363546960420712608797412564895081223688951799472221662151236662381611325682899261988060725744276898059496832070621518968595723932772455883470418739742806937414064270804623620926490101628404322782435550522466229712423687075524304460984145290885698011333031604704154286910367436066901947229272233536421341556164845683187430033591075643084720923014137398163552983214506825714888961046842781106838651571702244234232901529492753172570963066875397079085349112886848916349518015029582672667149893685569815451808057950868579531336127695876572576074823144652237815402970608747326225925669145917864235663195085606853648398846661321518279758493368161585783365047264074061715951651237133217096006342028881644358230092896665613083773469569324354037842683321818104879!
 2080586853578903870016984263914850458010681332118002408754735073861076
95551612349700403374385470454540604986976875053150948153479230221040733236253162314740451865865902075918440072690600576799925309222026139479691644572276961217323332833032828913686544521145146232091992433731061545794561519533584062578225574735569020756614919649364107464132425057102374312638328241415180351919316094197863855361039587575047396728315385400678275785502667122493634468149744910453601048762858635304227328007310626614630812058875318293401921091981518579490384757759437012779686997460160132526149536455630019172763031449799160936974373287418720986124997927252226907122146042801744915965872316796386368935496984980102963309818914889752157722505972965166080334491028796800177985527295390426961206087516176697636072646919647148707538225850132591439569395583285737426502635052715570212930749806550548850204837084740140098274319577004105306733921482941067254481575669928018928868091587932010626293667073609428768659148621562748885196434931066035910475103939645722225327550141711355399!
 3015867557592561506056822931735235936244397887665941597833122863938277655787789654272491659622636720361390952901768202521341997179541039708505603861438366749594032624503933120554262723242813914731472229712479512568106187207356216318372974340530114738353720542519088426454311267436298258903870665849147632050562889705888569046211910948715238605158107776384525001695254379036974733100694440788373880876306273489340213125248675749537793711186780910755535940729763717902638006105034065975890299630554967114108882257268772550636409356884128712794831305531779174640960640250504884121003099396715416571406357810016491423850602402115472961393938409504138030829310606333498601102407079448700090257684490164224861444713031815582504530610123655424551225699123269506417687397015630134668085983647734158498739500198426208007763717116751142737580114382547240720656875990864259876922461333595401027547583141232944011711405656531140772881553823313768329902632289135262104153733201492367904385266019647912!
 6930451906905024094638604642780856248675071654798010232403565886650925
32085975741984709892880583613980912752163100941206062101423652307035479274219157536668141703633706340217862525181115024960840135342359613943618758445197672640686673591524649907860295582460299423762117468172099050627620043752546542906736361670548153955473190839312638367594451043022957790362768273895847878793811467101300758711156871669167253983019666343361233090574872036715639517361633322444546059507436952082931591043722174273838059584000726174899641818058425546231285076047627424723674199250063890361309991583080419844978592074908900426276858979240559013946615645389546096334923546719404021446298071004924881859306519705176732989733082479840504968692905232368622952678162404257572038954223456873535254563092562665669413807411416571734345507066523621434934277006951527829835211326994217518128125000624336059646924131774325560821760115473816525636380145890749717487690225015009243131146749749454380500420667198606470733947807480119756105167018348989083944992785309069334734668655586384979!
 6249317786567680469166237781030118780648041467709595460606212057294095827831248007922642034761551412544024192312146935948666848288261422070972963712155694769432498543139157381557436763323207803636677494903361151904425097430329447252157809111852060479722851366451607759892683538180551732540403941192446198817454094125842259148968956291425269912315590765985980642705480170951037501403443328050196065265560596244071757188044224612332292751175408418507122051009446708565634980555143359085224732080078992372786087994641480881166649143367080894670738109222979278401600615737972674395606134751889423787655076057941841153733641796244868141251489565943279742338654497191637025024571069541561370648491785623050419457221653589452972564505778511659082419644813992502920486470659452051217417661034909729552994089893989935991313735094763791249912697171618277651931447297381776226098206236910632151859950579044496168575690374493864443817011249834217134325534435869816965742390157131917711502060215848898!
 2344872993305218056931306976837097667624662672325793874276160569871267
69423198926221899233106926026048234272991369647731045853503730026942310866246558125994581685361136142801149467178705066756137645191628481997169927445331979809695718871312143375074102811218348198395133307865536082153334900834221599980702376142215666684688774242606212221878737130337038801387550077177415747801812465139601547687780223771965181980874345628233858915247096718153426056120395961211202332867671244028785673996342862049733731851564334408913125011748991316574433939192600720161014661685647690027095122359396037491236378573164797857415966955492875845004904095225391720403453948950940638562469806556630829500404290899895478441682329738673354358060900002763508429478260347946192979731743102014102744683173482027848162730191909048194752442856875247301206679233585556641308580387582206167820218336867687513518271316617524071514261445272160390529968458617942626856360029112809379633212608802156654708276796452097513673814689422679205814682065167886320443923967435950044234953733719783802!
 9181190213948638305006491612962068898534162090858517832868455460740998380637368502018681916627331108370931651312139920851249428266916538998741090596588528697352951964453785927910733027478925297333487367248872597617579855591834603813530358830936170262060263490062827813126885579387923553761337515092120775002735925621305837485061634103398782550904599668148158251767903108469971053559229379519083670978572205758790172134041390966608483376272192497312447637686355841336625826162796085440909999892000153732444387144712931637327886728542550214647947630183250823752262438977380415863360822239894944947321454174742268592600660861026215586939979300074146116615164079415219007954462406342962493782258964184692561115396452232647903292946398963515326449475040424122592533092205329022010653561923853327771612507195457623823268644090170162257655681061340133994949181114926454356446522785889121929756119356176143361876924255449308538051793414233124751199358727804199303984266375752745361336324862735386!
 7071751089688374175586982282810083239159299016842052662748716288467792
952
12029360421388401368838303506495689814877189886173068799960665491583570989237443849533990906350023369348343694325879642690893627568948085475669889181470932635829712588762680681498045813875741746424042083977270697822353787880934702677690553235112438838484723158672528418650364822623073041138009049925516873736642910742279315084181365311594656162165280972403602229860608539308086037953429607499108082005031180671585054681416166203361475622253039006234692673769647689736098733821825705920974853165303667027631622327933155409287727795078198758826220139782745668794105544197851618192751749268815664324065183997482690524358200430956416412429740122218762230022496619261489161029604427884446123950080008582487304997817699640384059623818862627438197789561409000897504812136947596167321943542955088403859923569223591049432230402827729346263423782210677178054861461034781038676746250455207828736191821260267588878656863179019146384336541155313569903941854324893845689962939796118356362442778806501388!
 6896680550775683264128568222582664392572643015757672074622097581929822801399745240650265996531937960077901291775181711064871154784344224788904814938291219540808850200130660319843535710331698830234196396132490464931651907186591866305958392536971857453493206144085896406350173639488596444061760819546592910615255966110200914742617233386178330713161418646992398270884971934756819189708441181261915069031301902709316045797745919651736209580478453430253232481176348485578190875307575977637924870819241940359810883946102264019986251747144640867771912117297237753539155388933810132267200575225364918366405362714600258791785217370826996171397702055710579272182578057793654741979149372829000032184837048877707702463412211204752947372260886300486106365788628037668715763293755760142866236872267839654809610305047501130249015203057118287601141597320545867164548155932589033782314349085195550935920651747697181348254590934359909352387765328052841070854280336535275525755031022841635940533514492906325!
 9143845729182787324789734911620098745586365676709543134327849462089718
24574870187560287195467204109169913649675355299555283212405757074233935115615870083966363205844244927598005850500224249638717171255784594838948292630072329210736188403958234399255276883247171425593736773016554376468977248759329084260316410660190150697739607766788802491316832589364426917245592247526019171124734707113861438528658467175597018604417090372994359629421450156958713892897134283556049941305073086751848283093726603200677435074533782363632155663768587397828651887741037533010202843301794993200837336060636271009927192630829692980227951251298162374509990659392591924189040954830911621931267759541587482435883296736998816292419727995701428094636766788789138082921121343053908583506941627410583709236050316183504488552024503063012426162155916790773181246004811728047709492034579940430275160681262352462648455540336143361254485555001097130461165126689833063628650245038776551541736378619998456723426649120305270534293708596544699230172263804693712044519801958570337801554153692754945!
 6857538350106567649232202079446103282593962091461805986560489850318485905817857334652498954122516490864558029914051603957994085625068895818092208154909288490181197082498955728348852314209341788000080205274926867670410817051650937481633273685886145684716263694213715068582650773270961668654369202110411754201811275843141841707900069011466146892556418069813045164256713171867619494942901796578567988374354910440684316395318115706415082894315451359085399857996346350897253598998798495212934852491362017110339554974453774690191245334741080195235767634148992024767693874394758502753327469418605151350304909411064474267877917075036557747224398382475445443656031456900682260097830160667171717797290155861928070388324847107573348753513509410899410598898069601242569600684534243946223723360199934612846731132617744039858389571458557451325802147449174179925684379990931647630613280635285808248604124884031697289065019728783625882107923611626383769702004134162137969782443720230305485385467194040436!
 6233093738447285895097381223785348332292646977710826427778075500499077
43329709804518498953258207828401426316116652058879749113691446835659303957111215493399045565096493813806369599828529626834065260728753333471770983541503064538324104284092786372554875050186516515040855974710957732633544693656159473664049311081854148904180063522500915860902315185274682720313810547605266289562539216535452857401083097182052226697973028533443218496393723324139450654881145446050514928311964627209818850180164630124606725763176148634153301567265621102459262818177760035337218394178824092707162620848071437946997562083458714252998141062184988516562773356079172109041768420013153347143695065578722872039777881497940353000780585213921435817749675112951207957876254894687396691470975797361029359521472244555726719239342328442173647137613523657137144277202181004292702585513765557030558652462186402237336354651922374277649009011983337575433850120164385949711880277685411013462625249351020795138142898424957267630996901037034763071628990808169024677141671911261100212547014692282385!
 9519849330858417960877118447316355620000476233319816682478769058270601677969708907001229151305076796707141368975140753863999853763547236632914601640931161038186220402741599649346703376976533155019019949205397206854871287987200085427145461716342472659266090926535028027328542223946462085223951604529879498958469390693382900683904577143667727186441058042696161217478037521077804088645882916270214035567687603140314406606168344481491714376232454030464975180533058194301871027440058659714696112594142067158151405492484016111132521675365636730589813862424792581055589176128125188699585949409463223300934670509975423751423861046867116759001859584707813444885388229801217083414526979790927645974827370832905574037094549572632949444086917710897672964304493552274606952272596632278186498917615832507080120425317172890235543181892193280610126531339855947082752786008231383897957167463065230649807180968776494947754869566369754378231218540723147550202875552428169522077292929369011907903484235463907!
 6093909293734266541871121838550445845569130570495650349053811062283695
83376900398308015283506042119885574964626700401647912336928834332442988516837451358246437857407701926497724967771642284010358500016839565364208875279691708633607121020261974026174764900490745716627202796115448109148475895187946489610089406884571943036799521551637121283227904095079108415733956828239920339056066985121255383378696337912798735877784169264889128969849814331784263531271635828431839001777382053076665289909475216175176556377218191707943091818196352118018365492684806242419194603049718954327087545953577926211229784560400723123452259302448778194462717194028621770688842133324872202229006819348313185295059572421711294524459654733509707091566523383219329567296161817174077257920986610267070680265293098274164315843733049595866276720145713977647116170190216072128440038216201719292635898771897323550273453177297055197261582856300896743262518718012123797419935160907136239350558675370790275279898267412242710230863917816464388758400711880164261793005789620005197891198963843570059!
 5225899923879054527857707990333942120286169081563943859642636701735002406734430237753185033075850097613291476356898526761605088983352720663522626428933835310540557365555423253948239732861555852461984768538365518596718806843120006297690822776335868284422353423368305223584501897841364228671874189543255381086962900147765101207655389897566688683976493554500239315230521038589914283135098158426832200164062321758908753372903610889334364447886975858202666452002081465585889450001729433389129649385727649675597478285158977264682951429381227479336302109364931873672112314687320713753104041732065296837788098566164716841641954959723341434737613456697990490971149743858776365825367566851526736595625967334167108233079596946159114377721091178452832875957504477033596435172305283226650647249025163887514094627751876589547223101246896348978361932883138844802702905527925442941141138465698469623134905665972255956966964528092212583135925566952603686471981121605948771354828973812193977743088452301175!
 5682979084750046743360245972726167715478007109729570293958429691223430
251
95458689251297553796672730624105416995236373476556636429356727248256722259230306277202630149001056344566109714438597899098250149026249210055701898152560284811688582481979141384629986321775987648705372521460419139981011839654608106515139790502409368674986462024485409448951416554116828336083248635540393716002344478560058518119867154395242330295887808365259070829813697761986839601157678538716978003227316886649382813419894789076809563902126562632039444065207924621178508984488782313766324117453071450065354054360335452097277074598590560920724425172179535215184555415943602897209299193556386852795311434425616354114640889552078325191934130171267695265777733620790798119238987134010785650824468289879478895343898837785834647049816671851672455023528526850526398275723880692072648851466306804413282445603375881943230504075904252852295304080032082944889346701888978654629016541534587706619973644207671875054850985467302407248631000620458182112282264792280123928833513176544719647850013318681305!
 2275446668483528830793630859774394752882385046757322161030295478170253936850652016579877081928772865732913354381513644837365391180182404197792547241504266385734873851369831869732761714037512821283719818942471054893765050775090611699796983363040338708268571085494550955853102981587014174613208869609370864460541274171348992052916626036512104487166510322233789086510041343472378756593718596527383671449438196381152389813109487665816155267006342908744226005133001042207827062114877195680884465910851396541419020048200782343744202685015620408710339425617456254353423952295530139575471184251024011360268882078996241599962634556233533518320887925054773839423745119511562918305323846426467250595014681408066733752576127170676072872289670740396939839528336183914608731146289211164941943984569399053641865905836974063388428156086935571441283239340063553086828964833506105996410259265773718147312382295512737580877500225256507183735876514548085717787845835310653833801518983023372456244684354452805!
 2271955131480119447109183656350394255570382186674254189249388869900074
10430680603730973423795945993869941173271291001665594721280821953184764542360921100069605652753968758789991472625198280712339289680700612395829401847091980386530511899191907098340871554448942658716244242798400883569583483784120843494837558713608357659686360333473005842938964620902954383122052151151260863117654637737800586173389493935231813245581844309968877600500856407187106383771789829665809745029599611287992260702270694593890853061767932918460413007307420824061330933471830780974375874671381753541003483807665850464596334622456388316947124899519755738840412361701974138405207573072345286592144833875905831707176521531858412779083090444700895332257565636097261074294266877067863891279876692839933486918992597835413761563915483221768629996643903573447516345947096897553502491482597211575949243038571323507278382191190478468791768473402971475040696202597239323244340317746727019175257655310990353079072427403804718413713508619413369388621133657064364454205457168087422868434495682058747!
 0850012055170815044040927885562028811099164762159379182025338198189695364564591094291722950240528916133319738591536155298137992308113021350164207349642568148413890408614200840901071986020091809622753217363760599661496390512203540220214834121965708623446301822745738667877279232011127674196756128938399186471601060436098566590482376065583570129360751491996240368853291307528440687426282549518706818650737968149292889437067721108851285760764978473265792075831958146028064332884699760641787558363397397503491925230768097041807587102837130721814373132019880102046541561867723346229362905476884822368077112646162483220557202959474149733537155330252734986386288894571033539391579778782482143522428420474494165204155114562079474587608441845052957911739118813820789098620045726886987311026795179650001309273560226487737937099053024938545383102198824403334664609812043443636357807714056546110243708576080251354295177714525687919742707987234323825510787679387777054848750682169574507928425031945596!
 5166450259394065159984322080055888712451645486278982279077298556930361
05734511870367067956600530946471353190782060284433786654834231757291569680396871806431500473507370793531864801991216463965599889923355809688789087045662479986678159862769701375320731360683212193136884484799236093960167854663833899085065417953649402139738717777501715840247792779941126861128098730938992025072367947385297538966183706825834229206328044384348872263329889544970453213887944084349260519165476012439961796702222598345542338469982808346836169627673789430261086534799244591021310189156628838097001145482009679151401860162338103634110957553645807197647488029528818494892538825485279603483645512759796668517779005476850120663607646663768531541218178747151439422295420340346850873082277276607010613496014850266564188169129029962073709745751116930253929377191172728709019017167495303824239578234538505243887220238870020499145775622227481352007197097721853524753100447052663155117633112049450129057147889382224875571027572065158105304717026728675838497884553866803177900683666563448805!
 6015748359318525620477469512436932832178773195287598386160518422642402561530973992809932319534707198876797009496545997131904173423290324249920171594185043309541505916884779390617967482697415367647192238230661076916751370407849054393664827798515693272451215931439348119329602728549686516953205603425986038553436922884172277759492257147536210119868811738196752199640889752889439538363944598673908752513850395971168774324015027853787073499659280630883214321297938416391840066929262589881266692817335403056017470074439970125071094348208959634813545155275520034591300758149008285062906413780184110543660425637239886904163144025335257398811956301139312609987709038043136302986857455492243110277095102744301193867953426843095665157541527779856902939955730817173437624863383928817545421672224958980154351053851421575288889435062290746663141251493484692924461873194272519387024333533938971900642173280462403562260574856761805150892203660254081415245931551842858562610666808240144453917798642197466!
 2432595626499184593250694226545823360693339315495441363188392061330059
55131104072092799472174135829415131959732286276132115936012211859279429552755075110256285859479978941004130015193087156231895246028183907331804588899056278495971800805897834318069143308080775744253532580426353126162112291294710063580010087080839927823316853655016382419148586079400226824654136116486871674488132108310963169358272172288503261700743221487085191581969094976952420034650699490495639103346054196015837986121368928660282407283620401189935662422506648270621589018347508119372016209811681122321367946622399266842771304802013480059571789730938890897187283723066772289303684769527406722439210436419233254887193401702965027934260107029857272215906908155873911278013487961413207844943959726687686509553813187126606471820051733737454755629802568363108647181363822526064149106893099248231118101140484192029698759577035945571205674014226214023691508684406845694155933786179360723487768063627825932993003590517804125309621462607934274146289202183622309571533198422355285418026781928957512!
 8338163704369582154628609760868507966876957039143934163085061476630970156237595062118755613508544604799396394249255125008536374964848354672697945561762304932101075561502767519588548387269780001221046146614936484704639860788316933805197943757838198576973498785244299765744538866485010464765384697049436314092672891221918438222351885616593397463798308559244139963391026158218538416697803594971737600701998195534097794349528051226976519741438656925485925372235278661078316851654343930435804622596987637457682352981265545196689695995511117258491965481861438749268326417088176847619930186749885107588654015149652649491198191067036097392798183767302555722175164679810928201297841613692198827586759323036636806053342864578783806753441771387316245725042290392329825993538137278419451683404505552112012099218214428845971483374400197903755309967286119556515726953039637772359894077890247534762796278321737333303020866900692530877249176164540867801077073951232028465807576366286113407921766250865806!
 2366459480530168628536781790754695224413101345837328238080563906743733
952
52592691450341276154910563286554163500033395850232879084012843825012606969494440189558678939314298810995180588992787773001660241269043819100037951384761734502833630186570816522973950653943061128477451690046552639164064980482379174563278587107513578847454560540523907187364971918462291147686610069870883598403309810825034537175545403708079624750601140064548229580301946921813694490569338298591830164066625200184485003731874623250572203071222891583437083746935548271944665368570219094982733572783493416754213216194776632573932210088549789247921969973487348080818174679919783451583208884518278043338635475892964807692832062922844469310221003032853833848868984191483897834171115227237675859469290790769479310081892527639083729877171130308779849212360860628323250968100215633456493867397850118638045574312469016036176090363750823478494017072150182625114066760600243987846112878369377713236594243585586824615966467221480360140779276139812256694952801220586660162111865759390663152129853216564882!
 1327502955280039961770801512203372385119904186399993619366105430985195544270793323851581744173096599014695229939760536275416239578715619084044822221798241471047051150249894147374800723383393159654240205069781669749809283183759481799761111166532583624873915443030165374655845173565355400510910601573392408307645016406513634458241979220883712638171325372128034298701249134144943152977577981739249322550905982758396609170958319054012417107878832294598316644475891688990405270994973871219291676335795364340271741139291997154216789984252553012775986219916477742137160440775349039300645399209696162799793616559004646229443553752951630281199084829529415898013536382627111865722605014826384231703767192274652402278953363255740230794027766857589934662904177614703327341801774564442310844420477065758358534738413497091912235462804487477860724050391550675288692041630560205565564116731765698717967344135270811532360464815854079417998897810567021624346720319853104792882732136875322494993881206958035!
 8890988586512896169842266747069460335562733234757863397118326529253622
71983844925871476825547506358439757736158235347852485104117573937546596856400488803915778417876358632959590680873427870056732482465203393251503018983197861694317922988618819515573272828223100962923995129013786607482905339191135921329564196744618514059957126584987692838227988122536533045917951556639753802235666328286931064742283822652911684518370150514949891924223434294548020972186203177372288826904394949006689166816299440509537254308575313222504801704628099548294947375777534741715552020835219184889376891428928084202347653988245570963333122817039358824681310522641942492717116429332919152430526260408324776342229712371437788190725839797384984087570696816364541607402180382570105293254130069849795928740638361897483029746949546944462620979382892516502850061731240377124603362106137285043134307009878994494617457084612999406620858193680134210222297427590847950790920291744310152839512176572010075446982736801755775569960120964711896906345401914471704164726840206355760821107544355201377!
 9749037745674209458391867588503840114012824388048569939232956723844185535871966324608230299479758560487475923067622835760195939758481686066936844918330446453011420304276232681315191088854161898748364022780966757452285446581172004430354130754479525347925119199689380724961819842216881562006776473229012140577048627246553645224485926160340793038864182663281840734460352214178062233787213725843704175016288669075001019476218755735931048360412954322590746649808179266867096084729264338830864287215581856009940287776785626034779768715897717127232729725479181455145272432118697430876995822212238001375311546930168542291794861251877563212356473223372024456324555276929476040134304239462868078132669405513688074011895371508641768282886028289957295349688620329495449699240606399255326582731910568142796914017135544306782283527556295153382918358802411866763738714349355696557885524718718071610828757460732379505289779150296177152580189648093166526870490488494941170709171621145292583293313425213177!
 4015723080844900192443375891588044055435213300046423954858848059533453
34577571439946105315194146099804383560962607375134324209061595831382619959335340128309240657772448434804679344432758883144469282510740847602060651724429323221284436516814498132456348016430999523643832882825918124659256201453385697322348969661484741175654920950258036518466336243789364209744493619488970842311518547744170155752109696591740706580584438382089827983967220005269982186366564005108061132983598483069990032056475640415201828724765168558340798040530980774208651146548678774737830568588898940496003680933430270798655705665530254633750473472754918728274527173423098873785027568305317040572477310449459131718035771579235840257430586324246738008415055211384763468242676824314569551317218208366309134084629881096459643182418507883419335099695125252303881269934998043302487477389718105244857862604411875240299316161883392952917790159206011552424068320818149370401048998406279489576243537460323615926914519104461119367870801321270338411952469902070143137341192255147465952341948361713650!
 1844463826937235026696391568502640571301360940112151047276027503434845861675592262197841035152469298897123666170263170645654831100241802111598068290621895054141227347080445244646678190956978852035403461334749664402103348713367232003699202070041865039218151352952088256513323257926891483268447840910266442267608817513518261139019464827383482085327548235790735784622133507554763178414290229088860500114811458293901993623642389532252029021490640243687158050930037514225767443074328996976060899394652644640008295726010813185340133958407206627354565762521832745816090968536154432866448533959123807231375174091250499387765368080335622143980462383004724938311979144047068147472553015741137742221647830370386425140350912444818850321304948679697255197736060253202132547710487141858486773939885181497344481846886741463522881896187674596712145334791244077039798805329857953152506447519518198605566134227485907424412494881888703658425999593289579101984975906487154444698114468606963111866951567056808!
 9583122123813920278996382126413618085244546471816776892484073908160884
01983856245675416946458641784244589999302656224301144956894922099377137412709254952919910244674757855324314364481973095644536841101179631003838666482425946599333347409605220451930961102551801027404104254779067842117981652897759957019735061926735737362812316816782256063009103573925481368376356661761122149276100771339685845434203205543426667164134868795654980063509735574259906752712345225902438907705683765813364098064987669213240087365910525106186081059475326278192347693270027258890597720665270709955744039726787927881718082725895011864846772350934134505664992091319996223668479296722989905696914003749894905447545566463511249466643989628173618913094365812262274783106025361177997697931685992567187044934083485762044907429044435720303125524775529368237737334579735726414758908349898419205306095456570428288357384307030918942273529613720908531475490095898363374668638543833129652691972638444932371514442422784491825274969644967852434629561961824918950537060385037872834746904224235970819!
 5485761556485700519972708514778634912604230503330821325544462299589994843442800684788608551475612040601407014448843909221451344362317900023491340142792700707317267103829919281797563364360551368991519738160923241368964085989217368303338598828034270519356733785023567781167084719737788648019747057233061186674350027077157247715601592792754521876017076666765112992381661092095051793008092586545320850522912189571442420794446016000849873526508302916097914736574603722536902329865127299223178017717613720291897249727508166571958436304937535764724783516719622493883643842607054259203501850502740739100788297596769860954381850230816234271744128045624766707809355506756754067854149782498683735154134340611330643269465613883523800918777460197151660972856965804785626629733404574982992377056390369050680120190760239580360647806769603869810346896187916132535910661419709226609935992372024199636721701549271751081751324691318615303415487058315827162399784937729206573181463938672012948598777275703466!
 9104004749017624749787837399607762139516544420827061763330732710513839
902
62973091833798243282657235582601005166452514321932558570121990856776575163631644670216079539036728180819637562486542551613703286427374472565957453781555202353010928002037435720959836500531446536855343786240220729303016433198238485678431919502640926729237920321535530538126930110095826863613205100635511775697558546635369225885463910157356173967339364356238414020579967066035578570679257238058072406163985036744350693722231861384133272120862112190792836018189810418857150857619240608439829281996549907398193541625301045753096140113828486935395960102169678122338456279320156845960885979677449276935151130798859357388970136635940431516181511474790447405268243070144867823657179757459771902425545820672908277443498531966530072900609089447807307120877345622472364854800712778925233959885761308103573833292286215904227714224784868167229353797766658979677801765450242858400080860706854568111161573923366185749440420788888155683247825127940129278162763014908169399467017180234359221661287156856437!
 2147325766731969642614168343982138365224153850080828297342147131567205004796044277482581750634389579540444481613613798833787585604961085845000530558333728826647483333620383339139314158590645931338696949525956074797615977797465595062523570541314182494748328915394485613204036451783868523959832222816888755188673720527480882861928538172003783710894196876713992369326837864808980325964030402325737114584310934725597232980992375999722835284206253227308870700590063954302340012190383290332036402227233951725090275499352697613663079636778662534280667226679516322168102800193555386728802592981517890850893917189724232526862670405962789096105132066232738715518548869613799484900809336136767189881503583733115308165198105221543588835082565780510255719938056338668823619841002486811510592190553145123253009917443705900092550697410629666289494917975130117925353299975628658404462343200841065912111642850843255080817816198656738888013749626817816358945238348810697445349586194670986837209222793416207!
 2449032318145679488624914999629274633505725303705083361424508449574843
40212815679140602557177899506353706917529871585904994266562260042259007648844020082268709138631627053064469173315128146827213014475651111639793560867731629256488170351279338504686418136140682469986639582868030023967956720818517905480637342994399002139273364933714566102308736118485187385388904197250368589070470370285766489587421213004669384280017026275817516935302311232051959837047660804253165026066245136355335500333255240799679209287270021477289144595600149399184474280564516892994083653636341142361053797655451193022581901246031622616413113304946697515704377375063634898273413801340433077367732936962127192766665995258064603553387902623548460281672819325664599819444474731588737100351727971598848784237856227304183147386316905460308678713634949080494859524950157718433939760644291035869542885456523996738011342485844661868479592286938471594091515225531039536725318932134009913670146775058119407654208304110946879774960041372365516539407580869553706651726705909860590036572285116485306!
 6210093188285609893552495982132975505339641624326892823021011322280265034656184388493349981169880656066366877897447502609537057119098978636584706091202063377551836107912313777213360319641071911410651260053752423041164811777843694598178848313457060688737868139884168529938006493257163577443259132102193018807074299534262574449436539182435238350279267185016846173644211408163016485916579282359193355641017659749786017443840343592621040910918677119380272069433033102096887858940636262421379347528207350900522658769828826636371401438530354964803180842366090243047292501847024419704015533915007385162151251638296902973531143707758756463546669055306721599080052480541225406945921656436558085332672651548255640730455401817567031809982207018053804259265764547237676300126177283222122145453759945385680323900476500161727974697938153822848501199904978351963398261378167203395293147564712736381870960787855969636551850227660969718986036843602564374619471962314133996861294040370721319270411259406711!
 5480062853445261797710242301296713380098003754538539600094875129075142
65188828122603901430166788821118815204085576012498805004076284639573753294134655782803300471189634336763121019556124561493833892883981780394612011725564031908891238550223632533657801732567838796848659927603556937607390615189857638929331674413634356535959386677630550985135553064562543299121209293645530734288692718273870701084924440927651741147565982101188597427475379044517208283539684155916429610813251924093260855841906712448078357941383059005576738534436235607321191346456030661429650639523841427380749002726653113345987204067895287613657953706066494575992875626258316317518066270710643264727835374687165295498156931314000640726963452770404570642817437963176256801131149077271659733788616294207065398534473681507841603404909742238069021371018502334761783733418539821082494344128029738951561312547106872026224783721965868649327862727583409097861789724335368030093557151962290417019139899951205347875441422721157390826323662832068064646796041486748378393503000532426478978845769964229095!
 4877379164820341446128788329161057533661255693644106106791984221244958961026121771771528427735122331134198164676802933609716606113801901242562080721862994600201272845801149359063479518613851760953206010889236584741090559312408362424340979118517468131315179786641090823918868188602180839925581672740860389738448359385019675656684028448462887242540137340699052519086732846339196585838544241120141981214480519417301424100614511547768504025538350906338484819099535660456048246853432270513970611907171818976078592752155023468353308084161459120272589109599370595936847454141774646952367624805007501886306928590942067417722094939635596967763961065436241425200900102308760115045739340434921540342909942306231839148894450166288662054189333869250432164027372949784794743398252478684506609170315152312878811120779110478083972605160178560006850933303742782446200514007615336461958878606462456375121286463109536342713232973237016533504411443164523329948968054616948530707634008910780269619034955108396!
 7336623423900413913029098020924307507000150505841650163001350036250899
02550527617545717610773715775138004846944588005926508216720022440636703307674471310975435202762725580227779232071401863314191088088701989413992414131164097095239842792148463133388981062896366960958036124040149715983053250784054765540303195791245138370130666618452066815765570979073358264842467029918341185024184363649583539985794853213806034257973036257974465587615041129461115946048935228963751396596506722050057442219961270470827473315458620756958794900000155883156380056022056000873126078096232674218459240338826395541465491575331981748151745270371493101861830567792560099181396233771154688948840826182873582889758794348687607138765784524209952671170319259569148440556141700249635630644567105279874088842490242710108504346260953853459245574508826917360533056727565857446582273118522324544258490875579106852329041730381441768735281057319047737125100365086909061863528497589758781128930301559510636962330265117001686809874326092104849091231082647915674855521119637134925804627928666034977!
 6198791266821895044947003262316245131062970983188381354088091660040621058247435515880853414882879521903414370251447202004372837482744803465841472518056431463255352169085917800414408666817573006841123581276029528995961068021925655282551838302694640629545502450842684648239658549375981214986168156736581712206250916364465419052327611773433808017980805320155053324188840331017305683182532796647151044613040330105552366448428608328160425342624453041230638355238820039661325767013140177431606646316267370104521516362440249447504241433205072704939996020785980387449505400090077076998633972311646672388193245373132443981283589432270691810757539545924411187883952583051832611960113496375764584368560612063905190979156079696298061587606289618202613100855689087783455024026872846604713930659734842653253076667200253565287002367292191878036368288630729861638695963533307453697126934101025654035870261136129143920881602579385172874238659339305841747701766886135045140727762919526413073082216219829498!
 6237067173819153372256290005679671632682295874631758306346177352965111
540
78960266808510972083312379974006567560709154689967376840597013763122631242004994308801120743101233209346749578793678321802729505706174750655104014577576083412903132743454247689227185375018574063619717504041630363346695909082192154016293618708111915917554859266358335551140127585620566059057551842386022211585556324301995626279756789231796725475575803021518397821377426720692775689912629148429909606438960914402028611737075418504707571475733837194651955717716326812435559427006527201092608563104199701929435452012229538091336187387510849989562287096847423324576615331083878275165690043580004185944417597590270181122826531193017956883639488067091848626400100119332080675131310059626072617026578619405447455663106956329740159948775090694626668991689570019518965461384658511778738192358701950346145222385052349723690792630309505786898727126580309932007480472070895859356966836966494313985779931364109015167638146722515041980242338248501881244824498534082505952088432588760517367516734049204723!
 6023634907230199165310356539418245339393569670120817671759729963860388643240344708872603369316361180204126485424471925643157385934346840600764268668944823199315963477500508832250689366310829926351354531515812542384614409306943921521152788611804112599131599438919696373683711208842673048534150596193680130120867569095989601852622448599149442536473741495919671923704729379941368543925011652661685375745896796280566807106166277228205676169887640731729704296608436103238628109731095948599988725317262654065680370656403833740690985944119058947302458877052630888213599128560628413641412327183523361232476395500773113681283215258365687102233227382870950906933001351076354608629811599868284905748409290875850878486617550357714945337648159125403060857881734778314140437707870929345051903045244982876321273801700664158893472197551538964072680306872893479715777177935032465926566531564668253216386706954714246516714016356721301312581847865090001535459748333597737737300812314138791660114971459831855!
 1331746207543558963284156537574584113858278965304984296803385385541350
06803415460093610937395103436241871930127962590453531452479553857432032541802104887261159555482987151865462885742961734333773919914807283488232595624372349876458964738085429356982637811424599167978272430572533286386413651540445997458370660819810984806798806485232915460417507371691093445787151857797409082213085512183244660047957480353970386894147257145637062651286373758686720775743428917582989828581960987599776639304416001241010134855679971409594662016854204729608302446567286106657882057868414198502887426154287293212225741648121443577170100194549327695911394713724851826471324522376101986134738475401776185652145756483142075692996263458885956234494405489788046662660639770274256737921772511118979732004603888874635176841274840739078418328516896768612604829942363599969475134861675778503543552640532529756674991203090860779719845274572127851196235139751623042692452203471762085311276666086621799799523667577052042568970511195101689769334319180579168884581056967585350202456950160056365!
 0954366046427213707075856327131679377664009583742176481186375685216847207194624099954416324624208230727038702949897036283539978535974679173785996981698129332858190405419774063711597838507885598200723582499148547559178786506042189757890085828483455195445581665779387582383484313244932907558990422803618644344661468156357503570868648346484941896502658532627884709248087757352435086087192265092272707157287531735255965811558607062586232816920631132610707776703805609218395332980464728615465097353577829179795521661492922164150108997096120405146652929042646058492808813192661762204314532808526391220797607662781971617416263575793641065514521039551940649589348265773360220547227293619248111858806308696643025544130528338106228556694971976574282967422919591161255866990208360605032791315056909178282292105846612276610945160348294154737305050218348784541688063692271888027627788440029094539377770443873417346047138053720318501112099975441447117859579178304874191551739962767271453311230326845276!
 0198629911765084831962297829597143038497608260454625186237629797873615
06162864037559934572917893539265195272335976378538460415878296823073926309321852756894039637005856593664838833533865082505545512766915340080827157167949539199672224260335439436347438628780363805307848182745493535758337994809463076372987899735623054715823107009462963620579172060134460276774783186336029977518636349199062077193403559688580228151715045220707581557199912062294684825688751906673243575684586207241160990242330118241259462785167957054846926641577890438448433255945826694193614097333188236942830678927326048305592477443213391395725681098884789567340080743279166571599561241052041076960045756976259004399675765701344579874187798088913697632435761310016308249128791624832521093323118191427466972485733864507673566868105337291035879890830284214520835824496119311232685282604633702427117878596416030190113076866724994851219396802036311438217478551452004021084656508696146371070508310747674294785349559802050930420883244243246027909715885698763677511470056738480367861451169267073616!
 3561342490167683206474920214464478804331510835251617333413373763475053378263746668643715689111587924348837552007951472384647784623129136506372325899778709056626501887682768478293150661178466768981277585173090551554823943337520604048724098254288289244045140607517183823007445786883329715979232208126156557845911473831066819541323625734051298685181421131106400904320270530257173801729559212389514422950969374005854060920234726655218259965267539050196771109305946873625953367466825755335926887960062755773216136607411267683147951089967498611471556179752314529471188843032542722695180003685257969053133586345731689156227635864063271818400488246787343642319153224291820533227948737342613063802037286894051829807397084118089965568066355115838880123907243037856590719948690785087685726250446219646778771158253580837962029754318215628197896008323324560251123291276671327352408962173898589628925768190946425208726163963420432446197995836255086491399627732690974296801295748001075198321245656000863!
 0301721712977524085778258760789506898566622564778710389993151278135009
99550766369906985526138131728510082822748439406675265317213837069722417183054623408394560772818098023087984096054265857962656216963573201011592258392491049327593269788510774964350264221035655009937053138268814531228159285126693644763817234910496482008515399400498637400182359099574274635199182026133104480963186120489507807077643074236993927143914133142165250038678940178295350738241167507108716977819151380497674387284812816056206225306766002177968645104271414756708100989507462375395191395246994800969998513066056609207271500394057763534448130891166741636304817691160698989885372148759306165558431102050539627093488419337880780871730273731941545558009948159389377998618740841030651802185378560839562115084933602807773332102210592276025124715399794928300766423299543818224673014401361203328127293704317814379166033411313618157116386648481810371999956318011293682074476277892185852569777289463469195624428539786196255378987588198781908016483384789834435442547761812537477427338921662213290!
 3623428606395784402864860405434939423137018212144681212329477871782999141329559108270980213921663497566851471706490445464504217741760089655713440202984099636900669473239585198484255920576074109475161110330080804648482725406850917947229499776959089647013250685523053378134822780564536278941369808826254308169544026076277742338678406277226607607555720183955186296753564328786268783988566642897714766675585294618664821024434550966397784390141145261019453174476145460605915680555928350597291211400858571349714874486237210018305103446956866225955118214399466023910650370373712723173484842987950954248929389570498029946465453280603182164766683213610969484954299217325182020522743463720303916357777915141121243055343252706401802237951046817859241249622339917954080970112223023822255054802694621639104555810392396848592796917869044154434122830486571406680101747090726749568568804721942162068824573157122217925125697746182266919596683092380943165805945994273355768585416908843699950394526621244278!
 1087064741175912982878223400187977505305760551610530767198030089900088
026
97135969254997672473124253497046148794637250255965268324964938548188793771950018035279355054591235072417178549842832605364345615661657975260368059141697013010755648268890693276013645383056515876264597862125966551602575190878750650312227212120028655130464591613319011888757791951067448173757825895463404963011538982119715761474830095395374669674184190303402319911668259220925737133127025577691124054897297875205360850957491508935332742235100579196659626981369992352640219137156879101563159281392953561790823254018903376147688460157463587194516008498370097586488131050359595405073512267093996340619146642191596757422108915133157460645948174069263430813597042231123741352918779170492953110791073326367638991693365808627757288714709167335265455831782551774825465410365069676018777965290785126871788836485057130538096591823551204437553417611187048636364175244397889354145137012818608555774042992099440663013158615796594759531166534123792373347038754687043604876350331636519565047631997224355279!
 2224422423916121167890916671039644476800498251868214662157089177104213440278995320652094859317324692310809969631526914748295282981338094413509559597789677182318467603249633561804898392558999077183734895381742625769974747133446913341353784863547702683700984858152576547334894077143410710461822811261748708485080671178118954716486540318693659297789717064694696629387457933705575952106231702675438209486221635983223600303018101409362811599492635325638972292226999237460898310484051145899099679910524955661602395154287016920698614357822837744778333154171928600739207977330098292122889870174552182529328054303552645443833064511425992379549864117378972223968062720515924362779784918908033721681530064940083875221689389156095907825538499884630928726529556419900209847589766655007484057300126938409062643932121148888886555274452721728949801567287850288155051807475715119640121412155397863926303390809790392812703469067115565345509631906480392794942077220882058269516221015460876138458770701464231!
 6282040602849272417622773238277395999286245915694994568656679155059451
17102229416100466851500801798733496583148405061418350399112078260323258076326016076109435382070603921760013092449542806968942750227659445114588427382082308747654361229508573756058955509949552725849416827455450894262165506021923157486518822050714434660425887467319528394867509229463622434761528092774435165969562585739687089655210386285660299176765582539124067326896954357544291186091218447108243268500419844796497630399075388967024359615470725731469136101866046946932390952831773214877781716890910363095835195592061568909070351870216832989928734015159574227246971276376526257266865193237276528811370640666016087382205312541713978109347096245532103167562593359167128062890935670812615496528508758425738753786690057585853633051417960513327882925803136887492144427390847437096010756819393469253782348228900229172973561914643435286320492351966994491105730777245720751134439245907360798573885297165999998768361633503112788822517834577460842001856559994438075196199080985575373464170346175188028!
 6077654545149434145583995723458185216376793580217137536746254758905679345649200418579272746156029828566093227275147097114300098433428614441936150636445021546911323834286811655334091980224225136846537242171118147256769928648465511873746355621350892417934825587101005946782768186443309799818400084058042778802081821124572214497581653290431699465779870205012866416083283838228937246273812636751573154525960841434533851286374193575245920216129782784202623253980941082315912929023601107848219760093919277243308294174704117039907129759211763057768051940287525988446984941113407151976205495473484617676337448628717071189877531829858535727335721910923461313076866369266403214692987727420029070332688748581050130637552834443341077984628888107868771463180015196395201517720239153971901227439791454312211108543946312148709110130714046934755970049988355935762114068380096057293592323635928293997685650500603503074540255440740933272520280001067633026589760635454035755621372362880001410755565999744776!
 7590805638246928991705550603476779215221336279324408266638169978270793
68347809015002744441176487207324184816163819670928438675367681407695070400616983511638805932313607817590317778950046741638320150123029532833390511319019718718711758090035591479304839181837235083637500341497360689923465032985563201796380657875717989931452465217625836996351383839816164260326008889313655804631495369625310205384614130174143823291548551051835390804996926596077813320812361847862491126740653134944913539077740428018990505208540681108896432353166611478259319643378684124388063798941934231596941956677123905907367914805391513825654140722649699573123136626185157154107071965277324272237460903071923092629623166893695698498342578136835262628607581564974250778330960021994486167685647866314193641976436949007707029364554263515198350854151282064095398784282926294907551731875674924744789780226985889245829879903797278685150868619194476135752308856058517960433471068066463289488144554216016779224019007172400434554655493789113916253455826103775290230846337298218622467015326052985199!
 5340241885895066928982261704456377864584482531796642517696296264114600793107679816812188721460260070285479111161489820176076244405009291691783051961162585511508727959927945559834768373763860941827517132986674832519516611272493194606060542740241006154154856778296368357521612468347511342230727692195020854944011043072704560056342741246652780601509670293630348450768711175270221066746802866086090682873944640736564106968394688293348877847036441461430562325170672240492654264357321371938013432319984483355952883126664786337663480537510107602643578253346659490571699367022145692919185658579563693772253018328916245987650872996042762842996411128892478119252295384402482935504121454930001686491588020176069472844648167611730131181272686820964936564469826625653747370233778337975013205341136427322457371887236208943947418056071574002716013256846439052061956014611606753210488346441068061337250407008529164633899129278623992794209864182172434464822673671603685112160991980204015404805216602849263!
 2642941612910024084884196104840279202155654968917548986979116351725811
85580329047057717012955771849110829639318172615269164007805375393335693408567359531598386311840978184691118913743024630449652165565448723291292751943029519687282186686019575045096371535758646052536503033740351202874465930291430282672234986660072227053340012805805090903076831958206333923961885128615384445597669156958116980540645777628702846118184536616128148230304419645264309039289418236105248175433627803875790787697311597039025546452012005516098982657786678613586459891557685097946608420055432235260849332087175842014323226398570080911284977808208255292641888185371746608983868006867436893565908672452334956484503887260379207520370113658390143410078824972059159694806942656404917065940427403383756168133120526136321835528060447579400441980166251561104439313036102813642294979247222231292625877508213409479587361113991339300206961608964883818583414385697270458528038681841422724456633872900282756088428838491532304190323184816642202741139872113988548435346232174861679426954272613731708!
 9974688149702405865929319928592138430127560058455837598849700240722139448693194905878712566962904571742291983584691705337315141707705024849196582348284602208442210507671741561628774667454052637641596542736306672716250844194430330287556409874417284897502419483554958703641482049840714527100710311466341977597462358340966539441154370657430765088295345162672714784214930819024167634890479196476388147802767480463086771951761866088803647850009047421595238113313810279017375010299536770743188684593676470621471298786574858818518326851131891935066498311972732001907785822163912510080001365357423153159172488715931913527626950224425320568779738287750208800841365911380004267357262135557954026327542025797184186730638688336626024168359194789404254425304572125635752706469453585198616492232899484960790472510881455997397774669936217731917721529786826235455125179478967239150992825575617062668750159109253468907828378475093731097437541973204426500079068183362353051552297143972738973616886504838515!
 4648826734894620428480273549793572757563001924538709155945245896097852
638
06928521760230022811185290681602059485588331320146475445595690675076652982423568337726301062115883859756490079517630792067986402202483357895095059596105175542333161791332095021393041253099091107921175094911532870689733421608565524898145415635934800147899058730344715829553050070119074628964326536654219188033859690564949971996036567901180507874999660474740701651711796008471279279390959988491787724276009194234856736264136117805561478810544958123306073075119424237106041632507811138660044680031083131701376277044681045910071243495204505200315445756792623239300292427667269728807717758025754237702492993171194565979111982811718629813670299628094514864783170509486732003821371385967468941667541935515863098491312969231372277033212502782764423065811861012231465927848345145895114169665977331104664497946078065818341302875968955125054648873123621003561996079553610170835951664269498106032632783771783019091613917838508285857843506670587634806574557931196686430442116642691114629919917513895976!
 8081928633225744055127194549347334977506481720314712960416576978994411379590140126748224990542790424782053972218023392312988010570203376864176585186729832307450661839825663750190866298756303803316621509351415546274285973569906602396119267296070651755414790237486905978342573526697202629138481035535858693484864090384996320676671198388214263398806392659537333586432615677775516319545984320352878782864098239995325256506713693199282338740488678286904149999965496900482000140101908561019927433023292601122696975677410449197627960191016988429115213061598127699889539728967077660881732611837363562623959616255224550248354740228984655977165548003200092683146291648309608988649554341495082907486127718479995554318427740371218978723547486166508121070251356609326418038812335801300582063381667620473841322593982301208713305486826733370173791028802616805776872733609216251547014789068802133746970080111080020211394296659988771463333399152749098962289248237102976372430773081158325048499171426449499!
 1502697080174906491950056293162205156394973372888532322728341014434923
91848458966627562327387327023113496601877372781066684901132752378959881878138702589230398139530562734773274844018835333194798483593350725677657197196078297958894419057920659412074544023770884903460971471711926331704452285564867914310727111039760576856068186841165090387529304271290104443356081949972243346460413292169358308020241843545995125183215319002430078032799202594920185716007928813628180479138880897005489732472618667828816984245635790226446951957110481514288940442783414042032981706459872429290146603728639431641652347507648435949611952674365634528854305824275841279892698856277804223914950261530006892913341812854018348270410452393526907247760788069430546428905737656530752080829545158271538122231913841093340007931729453906976554887849358073861226891296179100186857441261431976591856370431433127782602535222377949978174301694951618793664181631959012923586525596513378713217884212104426009143418513057604126064435122229322066749056612404138091476401168367307905210015095469152244!
 9447732562506070762237732335779225273165821823728466529160955467760568341764740369659965947032041183825174969405856588305183660995143424311303700234028533030636366010565922626578923212654990623068363156491010398358917720722784537525348469598749911634506396201709807540312383599633968215661862816599380644580363019546087491490356711092084420779828474757738371701223877138057502088327621832735190724082774574819638591221907721720967613071480276825125888190888622680367344967754405165616939370053216716167658362518450284203500095100223744298412968788416365295080613563793330238715135618435263917119740032582489468770084939016656273958581434352295008937546172739848601759405882612726459136676115554995487977257782640418971408936249812043280301542111865554819900121669528667766370719174456891353193697355177248199201406945752483531959907476077599041883353487572220915372542081936759954426007836996932336013908394899253162422607471118346446689666795102280442763941517667914975932229080807895392!
 9656633069838017176169685849419843802629422921746735546579925558075299
30962710491235262047794150549477239108679924684852070976080138322677687234779761146261797907466949638704381219074489252664725819199388552794615844830575724894965617931988884556435197421615746284117708057341771769472229039544641946851617850428595435965948559749681867389332451584366567118998649869842547649052431850928652922617233666208908639754524829010585019096768080143007717994178747218136345453874666070961520645220198209394053794574544257427044194758519609821641788050291345582352407008525105424587539038840097767164259712240407014773643525948005539607253072222781093103283291067399179703478026465095140153364060613182001813313287888354619149557723727393426537044454340984058256034266324877957270186609739501606017137206587221650983285299623598489850745952976678727142252180223006435973057892435179636509067154285183685503380182383041898265774391415055540129864864905350958448906598830699518827369711749007708583196753959875094427592308836291209380378957095705627062036804506762416591!
 4597313587097688908788559695543613894291471298640005545564759224843581231323041971717433000818940425052095685817577581050080911558518249124798279144885581142020894423484906663785105974332434902902522650913364786959225886749274473197985605722727910073918239080401669965567373460373592225892002201288852767019638301968323189804859625141574182995793352081838974357717149092619641167163347140763890713323328122979681037775272280251394896871958162708178754278162113216415552059773669717603032790131581082163014033637584038506102748991176607127050913082957318290947602595294542792315005018044703977913446270061597781300340354320201095997774081922526783225145242814612405250854715951387794175563662142238010388639519883005127012082335755929859279132022373521636211851426124188836552634046907796935427833518114528672113235169897606858544483760659432524606881210128239687418405449111167732644054440665705321104949391329577937401365989139454116006204607544132474883129308467758414473530875752629471!
 0494928481463069356642941637082619614347358032459487188208583024913713
22934987934993057744937287347817088256511708221176633625267201034893586490736697175915258839007266273374269331323080391543423930103876889532206051568047197150015445497242654016022949813568091030182382715003664607212953496034410085734739313664361026616073454701042202150455664788914394571600484669891503009478675083748441950735661189459910440221398490612426951536603741897058432670663829473663453389893364801555758784235868622744653621060536706501319864099873834933813220479318968553927370954044823819892490707588209560984299083887577443058857092443839095645293629854015651209067917721513644361385093720914121177488632202672562585233630348907874654523965584224462009898468730491082924894421125322229862385575538025033619188257604267906902827208516153182116249385406737363899561968610315894890551030946540588622019909394973537539009167625506948988639137348640990689823048115359688570021036120271784860665948441119466352473883467103422717415062227576098373716000678987137571960469665658123544!
 2971058241483971010410148754344700758525304141578183332981639691923588727139539888237335603785833241372067172034273380892075506194568557979068057860771858653234986941164479726228999564474722186608319168034080942120561627070864962011622767722838400611510095211016006237865278973317613261437220361007320434938545824196567826542995939142048311825451488725765160376262137674397181941724915873516591597633807169887392069575829501271523697592623493074417587616579326355150172233560530242303533345939846048601770483823427930837302137888100466639961919986003203043144782618605203723293381979265104124431523785245150699827373306048799254734908377744366720581867271351178577607397672184146184050413111225644138660187594406731369122528759049003079087242239652339215654157724459508910171439691473696715426541474123359234533147868965152416545553091194768238928579643597239639738980867284827876099275242065994909499275915357549931584659424158724836000400958159269639015440297109972141945231219072936077!
 9999381636995559386301018160438442702621297283819502944612835476224242
361
50306837393862754202141384533983495866285634707139468592186100704732880493409820401029924384626100948508308472695914959262085062492046167852700886395165982952974101885456851908583611212049505462735548872637775094107598952678442656944528717951701484221397432097526493187369746293607958970557025213682067373427424574628346525865427715952969037300444950995079185296629540522699159359536625497190620686140139270721492401936366177273191902108043445729668685399731244110303616728752259092183962497593544984456555702001684002337432140461238323357427249757089691662628035990485630647364235728581943200772628422610019699541823147609629125037138957244687734857807724318238150539795915536043262647845409059499245242247043932177473715337221270034353447919107525172220589420364921401647370319436001330090116309295138286857566766465329842750264281788337678337525254577317909111785299792967474238619599456294340457257569480638345078649523550374428891814126155665911130160275671817249338752481865884668031!
 2337261309934413935600670186982013867026243412398647417525657185465272267611457154051345742852736193632862772241706501984849694674082369706406278516516562449205625048876531816378880560446749439890571152049325172267151256024610284459884504305505399854439522688175240144299739352273586301855221829580224341670695474582980027188235407034387068228557047103690651478319947935732118664764585255179348322181549805664443497207172888565847056899933029089812864621736485093542858415994178879009841844629228674285161183849071923807077100021376512153550093221290910757397181736455748902678096946295007174317374979934259356421436227492631733498600394787017776171872462308357076755093303224312363228300780231006344272072104318191197076552193031896067767963160211488523013734543451263192951536880574022961454780475958687322223789200446974142802828466689879941810015545936627322554824716280372821528537116150104666652485464236674972834223052613385640045753970977685617556659723613777076853843376850280387!
 1679021306426772312457324310803582110486869036870474542050054782026597
76560982216127578941456313617037212109536377289328029930480905076746431881326090575906176048072351253104337655033942281635354788273218260324986655104653108699837596586575153541891378592245315737905122177568081718800134426316556030604852471763962599551030974071608374278952932075776910385857776531314305435211494596956535906195082739014675078469946300779936242125867844833162620065459137241632751022449136936228646615367057843152617439358497610211804255849199477793801486901672152532194129165961768628462380196653353687978664757152359220189012400955552632407814014869150225438073091780415517306580119162002032798825703099129694128601054521570589829069254972549623702241876803100277612869133346933938017766804078172338993934062093688767979335510592143160972011767702878249688253212048748217611735164950201757262570672440998691821082382036415914296743141713765906223943584135339830790181727944419150102057891876834266965659073063995794615984095745317287503055871745032229798471017810566573650!
 6337640588724483807776806025302391525474003879076130410706765909214665917467431142389961645501871812781172221863176728286406277727111251102818850843549598348933943766095016283795576313625584626666742261542445680044544224302312640170868111501932338034800692284248168416552528981766954359371485146783786386763839922111916847547992467565683267319200516907794713869197813656962098889419057968414905471349025794014576138351244388278368752487250506085901184126292398503136689350994375415370117296943871714005699445409738060164832262362771847311083277378880834197417565274381408840499509871192790837306848610971788332154142684160230587035052196436458804003189768644250267536078605340188273474349250490906210235865951212829838683088315155636785555214661491368119370865042881932546734705981395055782665087136255867767161067167593307983165898296160413028136611868624302797915688034699497447177150355722418505758979227218113329869577311793037643474441168484438591354740990230713223643986268242062438!
 7682071986708969587287534583542904745468721322150275050251557238890479
94554468321331062875283646056248839497614839480656472999831613286574849655912110610204345327136744908184371765589481038916481244393895665545448511527403983044512490956320849913327602992365827197980370419619833007904610613151714582666920695156821390656957440043976582482500189743848714096876288355790420959502825651190886493431260865664403043577774155815321011468175726716407312932909012401163050132907656074987013663380833849980647781425520605310427189364223102561272292607396524033470877264608788994471938332682842547704034229481004638738587644970646346138791263188437289270654375162701645997830001139760778138027482605024850733092298094921082618263596687807018345597891415198618616811676203854127904739394639312486714930691676666644786102571041174147397253755545278768525478304610366802699960092783982264819572903590948753727101742622583414780180441394221610582829240942284902286701200741771719626185789511610221107038194702472317388451082312568739306036895355571567341219993821823685914!
 1063799958720507734087044874040145227699571307473196615346709208327240294340950984392792250132324007482503820469029354922302893786386325126565009985163718295752371554762257384070689495130284898429655788739812825391734278703083163602410999125980664899560268597339319394006104501184919955783404930935101342915792079309423051292103198346563839225439132741207742442166053256685402713253768502050025555655592826639738173298950575035056943886154870702925331436632477622353416727853751777734657334586578635622943741125799107623796142196283795332542546650939153928495514906675918897604653400026148951820343922155642890193641773077563631684906556092161104435653631985615883327489867075841024334093078586186211960529039681326236570249030294169223912190810933205284091669340004553155234730205480941145411692273468889725901881715209155671961726519100511875191551453467352650309377850243642556628876438536699607524343934476534554459070352299324012055608407902845948644472705324640541327153218052355209!
 5982919684884031027753420888096453315034693075781175296792309363815236
52492218503006050903310752798138126456849803684440550363128170482350088327059760568217465358077409143118927001728925977562684358399485306065328714965670963777486991899384264619159914821140682280741615012281252153860460227194383147059962243504452219418949497461064027978252661361928417492012573516716248950562233901373466884710952722887790376076047836713416348529570744166704876367791597517809299224525303460189130050458026087914780862300403675699216907302556902361507355016773228863107903815741894107314260663979179769328381766346076837022546588046287245965242316082355790109424199752518110396879173019888732440959864949809397494585747958743249259558186887813813405522145504580858028873754452999285584399639133873410393844000959280558849535334326192545389014569412489522137855547947619893561800937270388470982768344378865476668950203797832380307425114971862419592100048697762632003678793636198897951201664879298987086506850919032854758888219536638954567909333085336727943108563604048180991!
 0572535950560221403129877513267142007898531907224780555801004087189053845311385148578308844120966181624042088566500978818854735501690339375210900679315550713311584365237684483699779211839195025089229371787257686639157012126304806520358741360079817847516054422685078041012666826173597345902068916129607300499320393832133163892997630330758491291879618068890538437561591920935989469594476084820454045977790438004838656685938815476696582958955992600730573367981096081960448628073555466516788412571023231218018699483161020919666409599069434547864542974608575177988978584167471676073569399703227484912744061499639702898586028591707446660744157192788684443126580362676369095016785516877740917406456940593972465358120256526828773748353834308312536816272242154079122323820675749890843935344288310438072702235448892838418934033866149508010742259048333649362761041946770385943715735244443733573927732934491343383178744793108914912305795154682226783145738215528798820498077643469905184396745034857259!
 3687437954237149679476012675382354394104665486118987043182308306030015
715
16571273170421012742888195098054547537992131935991690973659590184898008556490936343545757557838034249535877907928524675111272215450243696259476041786728697621768373681828061008642845884842292422977757100203159522167835523886193846007090216186392762364050105030790148866702458006133480302929387444857745309705869984050173651532497989079158150583308380918627983366773354625032033825490952578568699586835792549732321853802033568799973251222689050562276827118862145835487902770065337726118383968441055309618122167885124393757537035123503120135863714480752541087484349669624174223931626165013665498596482274148546445678495002081618996182919057469936681884857442617442795836941203405147214600625928182082486192540705593740610214849536002297385695199627673604225999384698831546586591247156179459183874472413709763755806955174769128603367399264355986465387110876312957925100271313105789755044329554114314978934337864062614537198913358720294564279961423625027026598817937733348323439680377536174483!
 3437435064006955095492599629413068289359539337922898441131376660793077409186311724281178353117590715581610222290580220250709385913976308133367767096248905312552768506482929440351549213120780323055204447417328226568235453793836878239118212262397567399369018562334067383315611802939380813738140846382545598683979331367644114087013927579721311706575312562125771545653084201149699836410211469690362122509412393821065451160068078073296203428008555450001083870182524008299786141620467605050403023014442766528618478202099234006341988424290333633936023637621080919844512853006461142537854927979899736646772145108927166423349691221051367936257940948916921618745656465275523823670868676816586572154031206100535096654992565100853851933752279982125852692001264419420036901792249337887049029768729718057555662160741487886291079819065282144910447562533352803819918322776208914560706406978707034416652279203497467536884115066339745779443813637934932507270937978689006226932943662922401864173393065445630!
 1263002840974579741172681036457161823575598561692348571808108228836128
24276224794879901044114745670250460113742631789486093440800782729989404270690486326353603924877777863224654819336713838449342148803743492354245423705150947636178488012784348607348597873101974408581721880368023877075759896466784277111643185700614500415622924721797306911717973627485822645138862868032345214119126811869793936826347349041005554196389175422758963361090967317019014755659655625389424582134427539851980760771642298364221182148055496244254674460792967702345943596533131391809483548589671437761147201238765447313145801024868489668674313306687437340085242316141593063028656126252983313620293041647785343604139846803005622841903007687801022185289073518142520630505503979487987430527922382046520255882977535364999590247587083325131035214051397358100613659981596584592360722931822033165535573203896349563682222041154295094902386625245332602858246857832950230369581034856863516724111766606805555943877735564309352112310171590831890187785157090435266342917785225506682885834850972961180!
 2950507951421687417082918973508526599399542117325036198213104499802319668668389803555561418146640354637146052938292376464815865512963482974697761241549115676116117690595987368859221917135519167589767279646480894807771991431669673774395116567660352725773121677525613435909666690051106003720502555451856187237675531304856931187467049364435325648195412773144345876689704653842860309545003984583247001973003980477764327131544710454789502119086285100794003921324341072540053936630308989870908574889767792835482474193677094245256928227028343135528026990818145413171647933866481306044261909633976123794475966211057931528546517663835027164799856500375504704905248124292607363774148868975807453192367504842292226894556876195113094340121847938414930357881852119472414457733453075903919621502583885571715195742683013428341052207724476886320589191733264624007213908181654417038598951328668322435905097626369565288985011712690555659085099001775662934334219441812222265542700059103646792363178459999868!
 1627826689384824648099227648793505264133242331642257746837284720863467
89911257661626224608369578218792396047156296787746339671949045654064689819549995185038454152395806849594677506999938835233114007708884024390129218856127486403418758895530407429929473074886595750179448618537419423119913340056284790479354627508670433940207987018100246026423026845957094781461521470039117596854434642806857822155877029288407100652541681210261922276522993311118686202266213430207694806714994214696978907308210037066207483468918452159276366029105217712652957572626338246605924683292375339552278994941366447949562722809489776031783423784805089245770152146818851945532005367426001886732249526267431905488962318932255155976427982392142828951184586500037004028208328458738633212047604588461895309511632974527506974849705373571141636517660607165457893724960819208919848350965317041786906688851372862735914936603675031407834685592524010088125059281318384239090004477984150663981909139365894379793980750947518001417484740423143043591874592501710393937873433134062097898238817351369929!
 0261194118455409356263728633266173636305294184672668479210419937400135338828263092996738878570680507857386147109053120926988546600339818904943893956774794075368200253070745638432864199067752343416259614165899877293647097205991328299856216659493141430772588535681404078058128232848780613912086732539401549186864723596212362817749441967296402637756918889021973078195960897012229422276170866067164736840908246694612257463880401953154213276695141553297053670177997739442281700654311081033503625320357025276267908717862091603878813580538288141861069661085123809467490423449063397148391151560708399852012471381280982622134195157184230208959684983891802315084076144997254610469552840774992581098676021167347634915706971539523494715764386795314936243839194075691441873435975855792758537692650430221656042249741685282164184186229248047449991053671054919765345217064824285690797646649985994569905853760773350149984886277527019598478490652088988231037678150809338303990796045358778318220084053372656!
 2426136137551294683737146844550347065118425998947665362197218175163575
54599153430257979683477856002744453492918647744988832552027606745713955337187627993546155127586817668050159527374015343936284380224078385073831274790806281568293200935804491342685768129342759571796935494856443843037206094626568561541971042866227222697815038298405594525686052194102523721707937620531839471812477295096546533458094013432925506365200315395395769616586610555728600666159396897017535474682316998369472798776588889098432736100990094867990775378669321895600345896277461733523994541420863128333482988870271211542934625992931297563641569072424134004241712052019116056762592293165109080356816596090826539746799036251044201132337317282906678704383224827507110781242209086646748469056042497252069410962054098011444556041619160130011261786565158883735948095232865045003413915397211126991711126392425627923120207566339999529330567549207897185305411052242755320277013587236553499729866801335888826959449989859600935301064484624306540794099973366650050270486927403584283658569087273770600!
 3450831726313466836616536735832183653864404537150591937385166542062479379936984945543432448320478875859148170488288924456663492518923017697648219688328266125341610410113122184038907541359570904369198698565802906801522470821213134923406077581829949177427763767464338286847813305599831925893209623404155302697683146433603743435817340263165168085692517493691208514595721335838113512194805304553759933835705277915064253726050092344938231470267248635984060317914192837295852817620428260901477811288233757279932886540426738471599141006519245325093784523999897448327438991709412218742244731418487306713654761234733820457188376201690471468027829185016639922077228204496149795326381438556645358663219905273954810953159173799614746562989390371777535718100389123544727332812649059020242947940518533783026827042179360044709628629158923387820881983835762404635836308962568616583193153798001906128231556417034529440806326920588014824406260515450110372636135219445225452246658627055202371550409852206714!
 9175647256049994695623377348006412645207906093094750702125328312293021
716
01658426642970313587521987850000697600090767500140279377355332613218374524698580768237731411328691386721091300043270760421731668907774737695865887624930119704001190664336400335936691302735247785620049195948488997555091690362488503407279497480792189439140745874494561909085005330994403165345167941256562087854435908798226049836010581721304895007199557091247934832664454957042319807455168284781783094856992209010380603228610206016058294950017487347488825753295987837394310713500562202778938277282435005093658767433758850145646307126533264039217001112842709264323769766491906677979418908476363938450600155647753446124084119211152253594525157205853474702893818238364357447314283550972926145596304363735736481129459926126247307923826469872226645934395065486895850759918471612883770533910660101501587658116602323545380067707290085476685015775164483950222506881773554021321273100327157849920900324204991932338301373004386977824465298906116517158197319351387803037733682684161132973397868801010270!
 4470002543438704597712770190025960353065817576552187310801726808894923254251099173331958148223539693365478793221836825425415087150540641518031306522777848282623907307455524456123607195298472958466458759560972651764741439976591347402606813319236405504963169588022352407539341664298356436847424481718884861150332139802267715636732211245348817939230740889357494085773059083630828041569862685186368153109630222689773162648130202029915360702408694934139725017477464485549427746706746387608111728822549001659008554648284342503530499767441865475704614047941263500393840221861225811496788998925800017934984183207995540094388783287765037806212187411288439576780131557406934476997912549604790573832649237259596944085392179481622604195197056806350502477260257441497886202104261285275669629772023401492764351306108421981884622521095151978952285599992267315010761487917276654622132429004459570463559366658592711122178632530011146080468957166664037465662767193128153426483842695248150922947639989387823!
 2001357729945197767434335805618306125008753743696598521283432903148672
65217252078351858880666448011059668166729486211629685797477926986117142617102181802845534284780750734487046694824718965278338536028745556780000273414988724067199283992596583506728586054158666992281231346008983436044577502830512389332355259517732646859531866985841307337629461834787267460811715203964417541544473578667541768395113611312092276548370746919456291181394828599184626209564859017890649472332435086767754770684778295229753177073968582524425150379232125033490056737900502584589081270215008632673859486452976769333709927814230510807579577462597169244127688371819673938728437652098388728890651738861594801323617260998927287894383382962227431143177720187727740395309394454360141987684476785149808410882565395260182636741927014419895152238347232766580512801900842546914426138511643459669220777436525709159140475834996905031630228930523213515143246052073800067213502356105516305720978382660843571903404432149921173174620560948093792742360974920338780099962192130726773842049706233845107!
 9806316952151389914712777904882482403853000059240166346245113124393562295416803781349888423397466320387986691197690507906496139682452417185865598592110794019060801764627880437967700561342639244078380638646883753596016951345321172159096150823668308337573325864453849262118491059926013020556095568383071347892917871317097335408398075105621052499428018526798718830902601582046512603229836580384891072642354691372666338004040127483834424255445477898632498139809520739609639322745765279149055356840712791426713241060254841235523826702382457423545935483069425118304268135413523753669073734126498109625525440080938480367774535293563759944012234654730401649477242976845959410124686271462637849049128576571137315595054249689947651295946374846519299590160950650593474453034048507468665739204080146148078829080134623868029324968269581609357765096563772219815055315594863507876083699811665616808346468926495458313102209601071817983222528621588709819699660845804430500182353078255716023064850540171055!
 6482134143876447572290969053779194363724613907966167609341484317485277
53294307377730050645319980798684608303429545445679925249434482182969700086936487332575238961283701733008791252651328921599813021882833951040926359700417043921753948263432344969554376036817936755665148033977819303755730947216399413910490684912044644327100093153880887998528191527238416745266365779269598189335441407266631924955768111503918935582944318263423296066314183465166678769374965700846281653119005684258148913983167434758248588003851575609220484532575885183410785111249733673345696125578583028817255549980198952910064852455503727883799621965231192684704902226205018066907143205491989337454596522225265155751570466510371980833946156919970037900619494292761180806592144502399452353160180262728382562146271070828482232885387628423087837197971011638388506449291285648901525160090314094847625175772190441839163094002832074161978983634839937620128275113595110459795417366589642414496294664705801888243419605965184111185758648264731472319987873047784873472456192357825002234290062420155138!
 4062968986367632141427281053546433254433440727837567515623319671690353964453505414927610523441732690675730218518362455015096750181398087835652812766569827617509730163082416541433916707975589296696056030661133170464575168779810875435438794442362586307050778287303764705211883770128276376807708313027342116411205617489848378556621457662944961215466237530710547825326934318482569043033688882818091161311112804148863094504200578159730814129054685953632108635118090216168162898979125641575454589752543014975382002840926620846959928363445718158660850957214929166640793788196728095164655539813451009932519280973502716608901273648951211366713330456527833711245802644049246684457037815906710550615544912828525068837128403671040753199424836118860342537638730972315795588687461324861721536681202218187586206222370279280327447597419481470077903932815306190395313113977487775260132045641043184198525084459754234216883092876203917842902927850874011386933851854613472311564351894317643852706015810519973!
 6109895203231420755396787686369093843516355851690167405399101208369989
22821403005014625147771659081199135166436082665867143075339069322968736350777278496782816744717937554449709315972636359233565864582218368533381877813296353625391138875514930427340814057009293907706026892120816912186058296732820991964979885965723091513665905001205033624460179307381076702386893447360601496941058414811333619545526301627257621289943553847383770897337220447574272385788774430554778651197356864507858787053540929595376530917257718261496448909341103339173886329440956726077459899544653446516000145936958601794136749929936254055926262755905109209457459714973416631304305073174348167687686460089190142694442852023432450542932047755859053994928214788175699396587386941889350831024807091021280665666942422095518205005309145395260541727403409177052106673903175159504999474874816576750525498732322436053511739144392475941861209337285463075172699391325056261250282693595981846663628589240727540013862952760969620124177353905844225037191210498071660771622842654551066210322293260563451!
 3212626743395437529572250869642136976543730880424448476280842425316069211997333869066918691435550345305467598634882603825051415126193928003782283630871061183102967774076370473002846784139749355766264933528131268142558459798864230569346176062380141654891633943044285032277128731375086290449717539646063100074343547128299152036866444077589266173456717763752679641816700007034480114626148620082365484170925817100375046308243526693506755455104211361488952549771200648169019431669421115108045213301258647037391069630687545667440600260194420500912296846742952977339954954647077305464700672552945892127920487348898842017642013233681632293671456886063636905815267059483572032508377939538952510142357765434844477416737477084765608069774708134687435878853381306098491932849327862063017788828248055657937723242049955192282202183988769189166727679888880067291284768343051561959353772366278436302536489384010769308778101958218963468380962149317386716923519922892659320763863718633738518873430023950031!
 0619338408693760908997644539079606601938999439678631159197605311452332
934
90036339390726875247940933848167125792709897646441328390319496700404800958820796038030869406047676407358384617731859067646623928194550248863413319405667860860592045339463291046176358487461510219757663936810232903545114556724863388496936355749539961572297106901880966933305006312939307232815088276443675529225371022800261292443009589609638186043398904603649789136697927356512223140448856046347070829804363149115015910191291312603910364581537686999699420812064172024840099983446088204020520011968500459526239179252746285537361956067158867285056615750855351324420841465917592323334059785074010621992338047513383301563195872054127819908193916956023365009798674070497553572731377111640071830861744362351086443535131564871674680040856633501642960350258313647321034571030033659357240442201672125372758565949058851636968745163365128687089292165017763717114011858782901682674420741978373655117723475622567617674600376473532420774404146118784485963750038028962851852314175313164455172019639667090824!
 1539534702789226082138908127513969879920985297432424444554604161425548187696888249421759740220963576103067697833869743176166570458249889898349718487169502678003235635254987631066686831276974510562155029547393158818278040045551503716138142012685089362485600224543587581276159441958256269108871810309657388898999198401520504207622939176433387088822056527217193434732900781672177950007294244610860145300916197080382892301951602257517675378901402750312199689211631828547974544176033966320897878287883831415509412146177215566688130988749485908201237778139856354822229043664480570132844248280185526916604958229190509814057506116641667621826100035562877905211410990074698659045559453161674777958396093340674336364072876993654249256260298140373633867691443121476154141391814175969404348369384315936161686610485045373396902098941919150209884021397405174861093062713646396767638846632201549030194325888739877790207868059957631978023684588263426989289772887870436774586563374314519189067287127379527!
 1554006926853655158397594699988675839095608178371992578293578290647446
85026745103433660072749012148060128271068987784101658246670591747890595461136574380067720646790468015275180903246610537152406230922130674766048312076565939411166506500787512367189710572337032043981549865741286742983249491527833489175804717269530395435363292937819050921653229683564485938227448170299017366852810820634045878707112530024321558701101292563783466270358829326015871347720506663629584242628192882716457921078722764394061520562830051194934678990261383390806106204038091776794528099619804151412207360355986487151890208924069624890771749186428083907522228938077408076699551402690592654261822379089787589443313594526502649491521445872434618817073533390848372973416557559582751130487253497127209480523774092896698365238005580554021940822158519657264072401910291437740640644500985383173975399918776849145183144369256723873795588632956623853542296577585384111507984615179931692518499209208802856482601284232385267239249238680609594359531645782450721596265059775532903876342879953355180!
 6177097808065512113665121697102945864082981049861353871126848982100920330709701047946141886408820818931759165039617595244211036497675316658660976621406986460990667022720528926119581815048935541912769932744119184662111087972827763138842988943307108887945427333591123964868064447326479203070144838595881735355271903000514939506425304213327684727814060032100347307287257224835755238644345141683784620532548531371585273399756770291439000965760886373378804032759132708216835176751987252279108982096180157922367068015324690474429787738326706153372505480664459266679444970575559187140737470516647463506124247463629372408268619085630438358242451136606635917665855816560179792361265005322538641956471633439391491461287658020852396628387589732465253330658320746233864387337685112284812769603161035769683477688033594552950380012612941698452816747884164382441426053521534479104175983468147737272541692390462945708139834398057614347869250303886211173000253927683969462435885454622043965730293404529630!
 3470668815031164609071808906388964022704263432266530122432458239165378
18111326627010102995772155670267718033320922342333477645179357794921152676833816880153593823238451887541065569796250799682098082461901968131540797908811847290859098692297580957773802208574847724685818562300413516903497148787593905247052885808029510304898302429228836378972328171346014001011217605498903792104619007959011843963843490101942947235467438778636599315668590163409730230605843214031651141558775679707210737573815809729052823651294340194011678145744631127763734997128653335094887049757664934993113121720389385849609515661362355935677174776308857346858817380811822353789973772658173242146473418639896603957379747608257717010037422337298232787628009132057494996363802530392254610206080068678568504085843350702671336677219297388851348859583382780807722971094100290398000284417844253890908346296742115255542687768439349526870206441393916399363940585448847178322218892698572416504400733345198827366980460446989965027555774873037586278166127779760428691606351742825089439187090125458232!
 1659838338348548979652609915001796725564151645161892727765655409633637774832201619817147188504851590056687618221456363162582028915158631121334779149096268953882717253648311528196299444547264282289333805497498875493140318963930562974092942802891847689405576271828080544484629614680363801428643955394707915508334981020913009697485880332150062120191824380849327921405992663272914218116758013111310784327024493825368098739311560606488066107444501715797478962813830568573490661379990817880638496135638885836181951943842856600176858197446847322585965839087608443368952350180728817827399630742908235160097470191138482456445764634359235292244744056282509699137510429347653931502401279192348428008771884987577622146294726920918901141023250386929598348253167905407766946025748046779184238987835320581294263757969703736212092172956504902505433312758286013706222541982923950630917497798966299873868829536316525822311763832652781678612207444716262811183564753248810413739864284978453203769663434839887!
 9280305684636757994734705121659837014334618016818789652480957993351387
13075051364964840633098693631987094757071175307225541021025507070036613518607182728142718063579099878744057384971883818271547562183596145916792971935670510993579357030456608503035442362608557673574243794587006849165759765035415847645471676846616121690765733403061742197599776031464299817814306160068796692718189452074237419605160507537231770577363564848204788174624296242956157374580050679063505683513178166921506590755922659525183565341343680225332225320604366331541490034328179486368948823826808656793103178834230829403653848285187318959064122019060862723383674423870922868499369673999830227165183902839160588209602275102029673410753115168164838806614329392259142188667708011208546494011017024024312570802390727058318644236785811334062861986563244263936692505438942662445907519428137129667758113749122966035785976782198566921160878377581904025996667076977297676140483552972109215102051349184722064759856064015828430507392062941200372715031764583981191012923288278632901276281414353047931!
 3408581255580257067270597733864252748620679765765312881842930025938990205561225404496153005814978629085672385444099670132128191002954124927741693553737703753688368691813354492109395919270850319121156284515020435573916227747021691785346155321438508369480273720806626538293481166769175493070357189874171045899704741828406357052030752366463106105468718365377300120293974195448569196838456141425491943390340852424097948315765869450319384474019190142026826667920391086555531463996541459694292877762739995394719193694549271790366226564467042443476013465221164550389089927088178513878533717493201639369732464146233494305992686280339969808547981635565688415364508395999988568280775968746341542263989015813681689946857731591358575832689608341680804754855301066646691482795532020699086383275111276807062313278462695269618905934423068599856035645140334423309293113823828443607257909830783612030487277021774785077866199612448305595697823595263881572075444466406939881875980697221205175239019726931807!
 0734273950813414705691961778814697998283965460401271170556214348413394
351
41666715125780491560690118094017852039060493774393085291786637552171275447882146936947335461887095495129774512139035074548762503154931165928387869077015085218288869177455950933282816236836814474411849567568916841596930546258295924632796177425741586335238436697361794064393095248582912460109826108699620317666999955632193790086059027168565018133956932749482297153522769490464151426777518082446502702343721713489847000309689900739107240808492034444148590885104910490184583980952328176938732509163307577396337631685837447175214977515166214609778923060703550202439240444554554317481439398315920119700031217786752789580078740731282669234322525903826328116668826747964780943818722037359476698243830866906394451093947973568431372563257018734686399771912784246221822632323729596056295070527560740158154074160815371340172805533870406277561994076705153604559039053932824737543941361198185973476389216652809656658394069364729879384690108485734418749753031776745913872371851518204462408337640449705723!
 5259483467036770243700655793973765182712632328654719772021447107846370489024156571307149935822067636986392215855087389430310497391324852422925735677985830919629254889499279831901406571861925557905839730198937601218180413064474626257640395520364084351205159665127649381012923090886411470395107193262409616588396658422149367461459245340669726908655227352546243920480432557290753779022195380732966008214462595333230148849488480460625704653124571175139351257473077081089590587375685163818517642264461564396983281696747461637841907227792213569120459619912216717875070886969898556687726138912115305618559286774382924981809755356112358411446990322392046350392653073188414879066989990272869474680988654626811147695250832101071564268551547879813557042860195906340753776075923043445074849252632608707023514105966240514568953818529221115871601791534550430194836550733149983812928051817412168455673546513648692249801593180130260118315803535910421311321311384315317743238520548468892388971782290655611!
 1955445352471477520368702242026243209741880985971922981371062632928584
78113844148509181611765215962085470878393908218541763767908972169931567118591181575198379168507938870249751033250178148367486994806243337789266310037894926180605028462452403797596444628223908212949984254698106433599579526776622560428445677876484699201875032762033104252565500557845307277207792283362142861835136808379473577923921009859189683411776606270973860152375222832883377648333644964060765659785399778437627799504595944294819938954876661366439318146720287702733768335496876009207096524910970434066840902303728607550841420786648081059667369416933714523667601837372642886788898435994555382960148558792848280026501506135968397881536870312326513716165151394322698564578265342045380833511547579046856476277723915251832854644097404886429183480136994702853167392255927428381733993043691688497583011856483819511415908751713205110420391467391128962914819720914880537952126457167358811544829462492838696563344613682612627621432364562264974367298417502395111152585870707913646600298260754851225!
 9652731436210503135549199930044142698852627736476086577247905153509762747077895976704396175172625253939316873324010173099113419254797918004528504121237543107424089459541624914819980291506800972650053078488368788112128994635502240124020982782846107432622241763403345021345239607512096646710647931086445961165841307224495952888483446574475227163269560784121348940484752240964440027856681461223200307820658710060647695157343889537938559049568313936796106538063518772223024260886211149894978260583780668604154899736199481559727879107229375500262310130724370445122343712405479748036572260038624656427197222987015867313629472768278859239815146502956808131799654689498909434354791745429197464519773319102831111240420952293243405339558426978860830825754357560431329974096176005646651079765887829149987265321318777100455974734062982054315507054374189815422596397271953755138413899808262206516119973041958556332346698105848862006658913503376470465305320248109582837652480139844936473885939997573693!
 4353351692158328592913140367988911981274430639925215093835810704441777
07166534257124481722397103248601530758391532201182199561785805343118200631640151479948610855747351560322152212202947358631029733024742009979735334104441012506810072312652207608155517196911537470147685194189732426709845001827003999756741849681355203622211964216836011922581686724770584384493701420609907511784482227341969278971030809075163346885780665910318672640511211877130675459131632105688682307611745396536374919509386347353288921237154985155519954477314279467596558824961315986609738431727219660709677896605683748177354261712442219023429144669567110267106590147473865296276007133152837285202938757536193669995409998358438663527345111330186382969999304497033178911835513341812600930109471426749865290405782260472212684583604584237627738939649146133186225925485250442731005863220851820357728156294844833409338220653832777695499010886665400797975611221594701537870310765031698631537063075316737579391733804564383163876536767130413588084510274196481987023091642714012340849784692615907991!
 1426213284420072783214313035647798717833100898847993698934477137651745285470561650690737264709591792822889081571161107179620536988301269182823818575091522690621328436844280347005089653434537971710038688985410422364124468317740424222020286148850258853769563850571899611128553078812772031465102966303732576011386037321016715410773275956691109121361487487754268239932548287366559382583040482827153937110191348819439050616289022723811063559668052426224740824853773754933309773703150174475693355585946550621732296648205427344422427129081884733295901126699045251348260574397612227380594193209801256633580535293642362593028838029841298958785407203897823202304856520338370736009512251738864709676598653766384802458048048176062018839352347223727338267894002430576760314242850279023749422070334935401479792637867430391573448698590362197192162885478310534838132681998601231346657107852790310168079716560856133521597692915039533443869994579892444760638584396543520988089484662019054365540522854582183!
 5059931310276520592259867679389578867569567448099979471024461933984844
27864773250649723851632128151276595393244589213503384263107992618141712961303657062011395495700026986487850185823309821319053978511338984914633370269363805905219873208673696427816268036094442983968410689434519455398725980235295122057203829254817621014083565095853324981954159070793050764422759039393459436913442930248964420738000558184731450608960819538246636810563185499798384786983708849012977768934753734106761259213230596447768016658559904247552854799118956312077269311842200407163843369583282010532584333781336646811967453775164424450619475944986885512635573242561775804968052338681319717236146549165973029880363943726671833838418603612085168822353403979214516342644963763690391660648714425494586035830176008633164611122489086415122197824868849289121525918622610053469265375067648413857494136347161738554638450170864888293851716157163507319704988498271512363522878313901254200472760428272235375657676273684280101753407660541107067589336486860957096336873125943130014523401631264443781!
 9532564165888004281886803237531610987829701094952537743485301784178176719143351772542558527180981350405566338850496137844097666421249646429097873144146843105944779646881519994208080855890026413522296890177986743589543917856345279281085875552256110096791603682026568825361856292581812034830511568811049526503339427486565681701687808347448086265035812700925537626766141496020205166936006598796765197832556241857617038110104883469343640386411393594021808380143246165343554389380556531281347388247286587503011298993282737784706499601683903566810906988801924766811748216853145441388826389432750726429320611047231112591185437667966331169014431760601268734615784284703856251339636779666285325686544235009073069486801952653737155534192669893470625900018740607704828798173256144852414057748237474966963896207041139605878705586200333579661483465412892288864720306417379486042306539588904948437784512869523177901025399951373885022657790902881144550746375470168608531174748147372482596889294271229352!
 3090856806950162580622038535388820251541157143710250158211788318555169
885
30526430562356783469317725672423929456243363884328390017571900167949764219925962517357904330057767877485242996781374063537605202876084075019047121321290665212953338751850339821118129856144678158553607931290450680698952899074275366576476308207581350818735566609544464316702244127749661926798715589044083189511561232567314317468544497585539221872338200547211406826735738356659121144485493161619369190871644050411479403030814433245037341502501926533780833648338032364940128989915393074532924519899231649990187128324050463913088224123758401101392623847604761406770021313286802780169135663121378258028079944083074874070511423255407139456681081363896130421730814797769412656832825816697113340275252332441747015080876154347161069950832900542211148122384980059918226348564158126117645451264413611064459060349736757695106353162764852381831184147555022292975597125253191294654850217756210535084860018372294782150696167731176346460850788171199505342729211684476758287720210690550795808719745032206798!
 1262841604530304579799750466789007809479968282812151467244778932482946148786688688674735301280515196383856946797716063989423037600851970645296925081249700253300166317648997903604929092155594595359347508322848615826081727600601446940216821023592354249024659693432109149752179307413685711132162513609602944664483494783094906728008654890236911371987732768230292175618185464733130446775160400727512849668169124929990473631542181969637327881176270133554323935298531925750178666949210843600118591364642235275847022460977376536877055531897336358569351151943419380671340977311080882260725133861955304795622821558621898067034412865863418854531028223327911021123059405582796045020680734782535923116685248734196130311056985250649692319062395947405771795958027570455459516241632248480651229105986429577055128617856701386314424513852993221163897138868845906782181396035820108685956609430661636586239990839194880100238770413226120791342721659544167902758086026880187494549254943669492392685019377795864!
 8737405525664445461285821775124076530786933096714620438338959422970750
65666333386484657392494368387032612376603333333204827332023461690349062081793259416753765748043203629420102201209883332879645454322348085147247455564572284149799451001193543660450633692893176601281380409201510618429046628979132748072107765631713736205154041836260748929772221223465194572614095839588258190219738360195655881588890775164456958123636539832631770369829653855900645597900836050487342188528980237035766108290829121405183896456014119283002838001788671084515819855779148953410467745502457562084442230882995756853951566939510992934387569932127411810988021401727362667018321498063954588389736126805748977130793637087230784585746908367624301620583009572635071334340043625525449706929017741158423073220044549813094057843230473271559369447026036764921307345696823318414677284403025223606510951520674638240634370581095862995904300808482739760562442285510122035463797256678751748671560543549181169636830464415387816842100119525807403463726588472374938673075708194632755143923212089658392!
 3918165383909691293407872844122408985832120366973001436085829472801816272423358630277469510864163644477107130071768575245354854920248878492085431952386294779102443404641134208421349862215973952243322918083509005001634013419694683317895329066163307709193771785262780174240392459655281818923587141575257578070256972376289456725386364296769438397478404805391957740281036774479398010569008806437852413425782625955350979561873023243909596702091513206043162682075308459722544776756294558019956877566472125488873949021312631177561045929184815055444336352858671003257052620136714717783969845706572528764330381361831325091092300826816335483640163585163027669201387941992731147652168408808480305820526676943678570445780213003059759377704429088333499535693719899181469375885010591788156207306438908963689334334497500434864067022231539382310027416627845540402577842173146623409908907472127662413590372316653558074503997010076303056523793539289621738986187452333536086480021088672278324438336535594019!
 7719392185046596479128882513173208347019066778459978542738445095446985
41510682604973842128209224439578407882681336054997350798610736381188888047496559700666022016301748065506753408334070702471778974435266711758723782802012176986963965923734012798162511550639704944252217996447072381868098017340890317795780039459419275562113120981574302414040519278470566481213984290493105319420151126825409849434418818975735631803855079947411028061669520876815035633920306577658357935551866654195267624108418508548355567634794424504186429125663766675921218055325966591470086730506919018463526572391389797344359957490363469019409891758741416654729483351731933275750400653581244368416228100064800408348721848994594800432641765249943219554675173974764001414802846600716812075713376120502832426608953077666016423963245202586127373361452301238633623398270768355012341069781908096118850044510643660825578296460410219896565531258504555975776477416917822627429379210287918917227262811183964656029681112061360704988745176497845193704376037723026839883802073740280167161976792954369589!
 9461590956120278348514988057843158367801512428831262967407380966228164574518007525453329607751940300898959992132731899720171892562683002522769181758309746366097968883820954024993228378820036680033139094796330532702595379021802904427493866526518810218556183390013567589050452133417761921822616714411718935895765334543573958180738398978646575921259462700976009547703781039532217848936796372058826041339801999303033871458227057052992713368328337284169731328851802830559881997235431470424332591222203492496081567880802610315990784307883950508047254699185965813794454642628189898412679147472052588139107742492954272653223666600955949230657327540397759903495077780608016951899240478871050669102990912009120707205359759220477697527037384940945460190244204620739306906128150415955674100376228488397768343140403174170341446617994624796370247199485516120622228872278183249854239803285832729492549028091143582087889894727643333841767689892181013974567044611441921240152983211175663839323626880361187!
 7062583356015873691897094963452153439145681317762332907476364159435659
71090874460778121398419348728329630393225167133654602998633900688394329722271125910037207749803122412393525887930891406329865893253871869357676501093324419624068376352033485334663282272407446118540892577287165430932095219416259920104263621676971696006094690607625516888344378565541775082541736743799330834852673107519129032948935249378645071339597842369458246390045178040592776689497383677445574353278841147152123565835361772579674624640304266220860186479250314860566701655804037990183824478412198227402868274774562716521399395322767621156669677301919739836259813589492805889949353810714019818815018276722947080585869714054331801787708798937027871790987304783327595533049813775400794008556475243767013057588125533848679913281469071202199803160071948657413568805332142333335333958736907883589764652672542303032934168222629993834308280568787474864835628865132768581145689913720912033948742532465175475462418116425948849443314608612697761688926794121794657044759442731151232556598188388679976!
 2264986932630299843790824773200734324913307622125605915717110780205428956434472479494437074359155500854194583723843195197520627139040934769059328382700834562531153506809048388919368880965179399748972770183732545031981881429611137426692737689288748033135017074048157278625542316852157224756999589833621841496387922619688509317857584065824166799019329253791373083001861182503459661226320917693189933545032327046741551514890620888100740163470168481897714979398533557646343415676834299198824283439430936864987363000755390034605704766729733279313303875468970821161137591202299877127691048828053669628744702513518673023257430810917419775197221810381100965651576302947298881798223164550699919226208786301838813818447083937738426182396615087027702167868496148602064362383225326184137307523350778982763640486068560127306816915124926116917724397673724144719043434304505463386621045522270893628131157498804904747580678033882857596112599333992505877593167149635491022367965128431429999012939084458891!
 6340375293715426301169058543317874251641565580620242809342550096989258
109
68204946083650831841815041195692684537425405509550449038482028551651566914757468773513766495557156410644899563458347238529218766162324164562093323993046597511409364658008322799521407089794863461000924335816921485977984284240334004143223886531626894175815073754249401968203531067794785483492137665717262083444710739526796320568209969447313830435113130640865745997498930992846398364406087744432220555557711502496017351665011683170595330472749107015997482347141041319117894119401631750685124697340602744046506216948211479724149120924460942773186013405584096172230049780916843611766754406315541975107176529763118071644206907105359071241063967450645499663219971789046856818383935047512563412834920600751171118582549958270389188135791614956632927568417285993162972621831495499613748846809795763560869299536422046768909311241093086739839489623860216390093527510497173972224877045484605896572191339313189368492429172764728163470770512628759181134964158596185435737255498456141997446142242947195938!
 4978404202567831927872774442337098251078269061300115167810399863287944456026220006164068181054664923193495892989119703804186891806548363193737195640121961536791998791755157714929092589481115281950306592241088511696946141925942478446887390046028253884870792945330964218171612865940166007536758486643885676070571803746582235700580168572077703714665897650237619718703020029533874686877484510532647546969075353865304804137727973198732785278917687382254511551296159731292118045820515621348718581071895584470749292465458178057467528355903990304559529606240652401394486020654466626827479298418083164367182383148724567397281114449225382766488710695435706174224547392917300809959261968032102938156209322534562747021899656833618622165486005690953693804551075207133547973989399591223865290590713888491122195635986941976058501547588970466296759131320653232548920939294600487040743490865278598113311261770477624674210566345667809059600890916749382510096050261417787841879490990928057507897136684066662!
 1553734951717914168568206686948510453409278555674005556077661721679699
85120917364700377509789785743752906966340910161248908267089380832786266508399929926419821086046364093311970814244874821197815080093964095526813566500710992967873442714291798735755875398501136362977776196341595583410566867647755202284675830104611135754457119181205837178049367190620229587849069785745120841532138506256669140738293370813561167888966390231273153946116034457727840690511613479870437823715107596456680181354750966070608087589726984461075318128132167954850842503541491319482220662838081535824198744930388594800813191178127533363100034975940057795208845294879020295260181653336818697894744286350549047505704043361769256539013354056164146736997510375840464542330045523258798000899880331795387381992336064771821431545180070741845569882139348555179646190050986007739458677786103089756833754335717403970252076185138033528624247120911402073779684637053544379167320902306195222915570269798141737092090280176877443187055158844482791587006231017564806811363074505985389394334933845095512!
 7061746533984068190291203968578646861224839007997927171047776567790235842232215980783178442027869251304512018612621239169635887579329575286539390711233315153796697436415014946240191065404838244172570384707591596070288237825929374767076027595261259296006971905178499667582286977157542278861084692520693370546352813310455219772996014756414134863481188672385915869960351683162175077350881541285530305836758123588564507799156537701339825763464624097094175701104664091778738026866544556436803479938206098222823702284606795784629347666093399613048612669642303965408563103360813545252693147234662720290621564761638929332194473746631436162668548723042323177121141369299690395992749966783941788786828687226285184502237484124392472642688927580397707768877550242050120091357442952196432404549917009254460838958177669856999666603633697317997971389594909448579452795611249563298959970168013364751665275767976742476824847900425889662213646583492391059479845312120342462669970988843770321477659192200528!
 9827555484571115146679255925970050838560497285763790521426465110099551
59073481520295964518387354403008450146424135503716016295158601421033249175627539806082029853593982827339875621001475642924678455758194321037344832911000148581867157885979180615425606371295995150742322660486905767081201385079955898061929934006585554022888507128600372116666009813460396467689948402703037530802116697425600063916689792924943629174423141681145155962977174724780565183979757497162893954214946896354948474220317914600105003791878676816269781895663497321162405238580828328929506654673242403198488782651777399259762256068714021816422728945062086548782457934611723065079188293138299215309911542957226674819747543281622037975561582555484521797959526083115904388469027527674620750928778468192405013270594924587232527322800989495873001681562549739724947012449743431685440342288433371837116111748638616642065027182377325182696519091531582836426671607405092807108686284126022278069025740126874937853376540944619889984978556735497708493557592045273304127093160231778115868532731499909635!
 0940472001692869322340356342657323182047345042067721134585780412788406003831150709742042339040571594053283955838870520023107421210739497199362090434207692138506896873270533805439717730687847931391347637147315522124021383036702272302392854177260410235432704790849389746498542042472491665506580976138746413471916185155864561069641477149245054406182645274649870482874558057777704892165714849041963625830494642921817259093471845568946991253588887870255548645652322320915236594423560684992313134657709187733222522683568152142766586297606891522821008266779323271125424411507128242542383334653001624273793063597607828307142638897472271993944745240760236056606469633347784046436712880703325478134080754319842889351223582250013661400127018814210883645707984572540683651985614219631380785246718613208268203975941364441246736363918854787198155223910378759277331439960088535253077469675340385086684505271867811410874057645822146493350915632747107127669215088696641863859864697218507766448064020056960!
 5850803130766076902982224487599117718008392168367454062963062208252630
63382729539312552484467810616081692309965371553434273187613858930081063462919588195611149051096264093035490725177994018779472853174937604825386093293766938685713098314386634841322536835446725043957446612621275890512221481268534385230846446560996487897466996341775704421416648038856140181808907312518353977959699349296211781485637958498343148991411402990534718682581221099019830590704852360835642507858616769574003830508478588046635777495181239055072071612966018525430298413615015544525888712169192655385989724966287842028156560971096107103584346539215736307194757569055300031562415131235136210849378319898117363429107072021298369747257938351091380792204532240355450277560383296012959251996915488912434740412453343896078158383308298637879971246319995624059909357604633272033327519261322154216324994387003263677832477204919169825463128907806270027774072073957511751415991003644437169756253829392677414469023781077000003814262006946550608191655117627448068661189023792674100591213958472882894!
 2850846357317871449099611011313639649369572112741358669230361002252555812578699137294299551672763964486536498604194683679552434150955119688135051937296977380642284507057723322842869722033541546178885566195483724003611912997063332699541865263287096221754817571649888710198147484866799457963777888172630056878633446035625866830479902098109320684833481454473614393525174043888916840514548404984133116000567003281939056012392639747701453664798815848296516339655470709024761619602410885488024201015578134662631977578606824909473346001512309384088747038894947273465100463250637948971976955443700796886745641770275271666222650301800358731532773215812943528248876737021855301057235003815979747036987471426629890076324057774621704690290511794478262960565708677405665358950096189410854693711587067053086674949400763893051341337677896546570766295516869182908790082910940480029534786111111042368084167638727785740274128908590231942275387845802952088711178749800101581498955999774266830798087416143811!
 5288627043620959253288477250559690619985721599596224484374373687877311
873
57454752701686400483723334881578451280246107818640788418193643961315257716299699788246823558626431523685421492637237343334677329763136341598169230196042160673495206620395899980431831346790410982163952748967212948320874794434883524324521729665794444791080894825813509843125688214231362967760767997233401850079583056699730736148806410245117947904435295414170259333339725216476125750212225091597166588850980806538481355080175164672041040778232905891760434805272605746195255578623283085266008518922772555246635695554205768891564572243861108379170627831432829413593641265891983475678032663742205572930989571955521905075533351047119265784997007656284104466952182623406328847787708744010335950179359090568074453669551708543180002693189164368157468194848749744144803307470936716060514390140482446378990527316060838121980516851461869331581755069930300015020785929996543081117828945094714018723029639425011861894085033982570154796914955579894322937230487624524704828569063644634007578530850346941075!
 8558530338815310697805384611589516283196644873849512490713014810352286110108911358328816609644980180081911935800594936424674836432290324701022321672938132220706136870213279195744901103039041017471205204142917106858304487231416174244843408041186496026061093564155525088145887544124833022500533742556268652858375686743208571228255978496208430310544997901604082573745860929661546227368550249667547841975262977199996941531791936756759029319028868865530024941737529585261551820183235989648980690382051173989644696314266518033752614271710244059177680195854310654906394999110059066765066866229296329675548474539028172292867870461676789174643020880903966894939791615635399894450242570971864968950801649730294333657512617608981953575028148546487062152777728102279969150742285071016869231331364751903825979304370750647220084503929726024445946417635920320242105130763221618206637545426344661718973989187084175367859456811199483824121231704141319628478788526293863170192893708281071794104116666432444!
 7842383335840323713578333006781477992194119027353437104404851814358819
79924875406054679830638194905174964985109636691820598712952716961330293732054425533005167962228662233275965641722814665591668806828436077444925372981232551674312173308364392503366476797011876854508137198590794770634337246724454587384134323444334235737357493250540662705538798884893998837790480185327264284307373771956531734914034951860755723286155848875150741905491692347966586803513594685104612614926313484751265294407319166797458417741684700172146123415585910025923881191656092946527389416464083671199334387820137863429327616892956257113828567754153875350486030047087272255951032021858765338607368345972461503883672849194596539488044468751789923844678073941727378277523391593494364188238263885740659965047648254037883847765788929442588372091711671496449614422756165433894377468194155686304662289846548882045025158825162220087766583134197129379002605603797955578951663408480049935215865368303436552945743707904858030659621717251372585690258413609454888115629190881637279606441922617074443!
 4185991469673595140001395507922368908244920085154544140707333956651165106306264447371128388533280868372295648267017532779729803947025319761868527136395241818192957347105240095602693507917103355030370795591435723724824301252753286638882270363577474333247881109889027099125329107800556763055585866254286621592896036360354602226547700461671899099605169362897592974888416659879483518074349542427780827771253227860665003119528253650603391879240303086472058178642436040647977097438999332396608835017073213970345743744779496557672021934952873123854537034424169069655311677265610622060490875498835677373684875883440756216038752436047501847850189934535340072929602615082559229294001884285964920620209991549622314631885760813569400304274551524656776774611268454262578450420562187648701366006005200107127130631180480354116307814440393503320017608629472226615412644668406387764897060415749561117265370403661271545021280450973743882750899038348146588001567839203881458081398267129056017173248083498720!
 4215608500600201122839372455115551549840866943799134460402907624007083
80395645684568834074776637035482362764341895369557425495965059648844690061498481923218032098174902089898310200630564789932956262992053757173199070232349208341263299199380719413059710398484524198876250344532439575366839170480927764708236293088628952447567620159342546769226685023922273437237809847307388803662214527673901292521490441925304251145937578732561316171932387880424235926395396327808690492280951938700787361810535703780885622567539075013787394279478221264960342000024096053992644065006913972704349449670469498267877171743251084690905381792517261083887121296727856947762404841125890497828480894257475625560428680970966933799012988438955618108222926725574594379742383989636789096460184235885051915246938945506733605630782049091620894566880918947664430803157368172968531021418084960914961410363657137963455405050355868122118395537175077581888562771792330873148366818065726778500467267747320460851405091291883902691383267907869843967161099412972677042952956996515899750319351745070604!
 2498571032885081806716120013711797315805526070951119127911637417885366128195001861934494077725517199934635512724890137401193921068124567717596864089205340323275552066344528991476405319992611907536900187222981471625663712840700580239610809811925109366972950315067279815702957657937303166730586899816736670553143252564835884401209726169585355656474551756645548285191944407581423303252765966485344312529650010616602634521664466362693607878194203760881768592728311379174994177310796579920300748885017843454652978139061667282456055212729876219140116329361244507632191042668275207977905201183041765718828521925290132402371083172214301988559425934647880092212634593767033399750174316159911340403181203621007643769146678090094168595620265875751637711267204590941939170411208561495273873146600260826438544825876570148747682057562592236763305430619089533348562320249748255218599409354697540021555857074824939855764293874995127345404492364116872266225432072526056323376457202004350305457082522228272!
 9219152582722038058201599932166523693982844207943107085135253341982631
74795783494519191439109271146746936345432590125946395988683958626126282944628011165423115869839195433672365374211546663945179297385297723656382856685777006676194307182595267644123921418830959967480294571615522621616172116177851284091785356676003097575456917293742259971096587628089047973306351492694948225153163791609123082908743036210315955081912173301125829567558196025022033031005075988019011046974231153315051426850056201553529549258214703420051018201244028578974264114679097794626456804927421502557993313479221261158361748082204257042002067783616336656663548117737269871031202956541546644250363069520627514543915100131161566421142154100963747405199384501255077652570557128569335687442747017037990797946309950774214065635504278012961213156506345560443137224122657613695635199141010733504843930156415296427553947178684292458731345503474141764134506613459870369007339266559495173462543222319586077446734489988985516359384465567957962102069432160913399289317630648692804792616410802054047!
 8336743568853160764029158819506414340784361714083280686446406990105404440946819908701577439248457752158203982788901149596509883699485394317950036189892707785900475419346346773202418770209510160037887704399302053552068931109003015508157152981439580031601879146406763485459897158632994118674542206135618909266019808324114699759516914073480355325065743667911637069735657842799920529169111250967204437706319515559236926707355420167895840482880608833889628920086504474096207107483876510111704937555632701644296372139783537646134742786750586749429776777916676141623692124445422984033949318822224297698993586179670633892794442343208747441257466427772968248630655786735447903501959288435565327061602187585859822635303043141100407848457854843913521587054528643336331514779918752770697264795649980503231639098536018323734942737327123723632481049353789485126630469953117165484037871727662900370743705207520602352645969358663116982058159084991403498086150107653267615183049590325903261023261935790889!
 5758301049311483771310111849586455424498652120192355088182652777827715
334
84488401249520348361444505941490881418265460639922295437791375546967864131952309573666397445460437678281669223997824955762604079374228714378928938720865179765576624468096857169947769324281862959225849245011017738264901481406865887752641912999025932942664965403398680126313195155656656596091222090930264173382938935254354066782367004916881928702426290469914571412199010637741024098816791178407079467368166487550528482862481514122516623568509002708831613272180515331020991252645273958706377340330541077644208811078905048438003484748166605576217673069894717630681088127556214207772014525144439773594631867444909066006099378964716086566204609612453379013827248215882978459952423096260294070019315709966520699701547827889380448208973349622663289835614534327933478701146084841013590226182488754844902773110871819860244549835746742023888677931419410011478056753608394387694425486396776927744004972822542930671352732228289467187807896475194048044174815402236050047669592962566209582703846768891646!
 2779626421237997726324257110447621862625546951423408883642398303562777434689588182437643414109932358318905995280748904961877222948897386494371002045122696138101994603884301012336754810231805469535432001029105314638117876780365107696405962234844079415616889105910211905299030352996060656873419493974625504026010048677910595161571425334946099240004847751820368789156326511535148711709458373644026295308191788439225119511315305277179583431637958841892105111115321906381989516125831171820229366547888442516656682038277717988062498741857098214546889726581649202598907931670353409905264006518960607484477419502003566984595863374858437833198397712166079065533995869908791515032813106115029102402400534144340129548714258128704266481120398693176363511899186181514950718758369324424954627860110728513816172032308617731783575009390826699135195522035734325271105340255825728146774517063890393928201047750434552282150749995082930652956941288456980852800249465071881679892872936783906906110967159289848!
 6433821864156919588070686840070738733370560810657615497996505085357830
08263855236774580913205894684570714160144864290223078854396715827761787401121945062901393929240804170340675402110482088951522096379936640318304648319414249233419680632848308290989027217806492893021408303448816909828179851055589581103714018374593216507176474171081939680195689523992418153933027060129239412191957033849786289462301739839318189223461084268989238771566904062397863828810743207844495188263351780138600848282837974280863007931255120119557545362805588368007731572877944245571854995548345288210062991912043345050997224497769670289173755795751688724364094315946181830264628618873369351265028288451416070378944523968529897535586189310515371760625771905011549471252898707775563195763129842987123213304095769708916170905704901031095445243377317681255692970430680587506303753486690009898410110479285734429068606153397257087405304899818387233665228642298860980783807704586927667001210217514803769492715773722228606962642261407557217464700826721248602241919341319326399596384345593061087!
 5080944394392433170457670737536373695420790278754083306952778374443924960537773332122296054311193417663089710742159137530648135251021386952493610400653563217391238522665758406692190599632940876919464379410944530079983757828287783427212223151996317356132117032868402422278427777056145226881837485925929159947291745898119089534550476254341334438095157025632769869671586259259880540778299141411530340594608171305110550898796772377467114271300459115442672852281704160923357988691478630582936848520620543732366166720523436317696094112432460118041198079571316330853155008692126400155786575987690934881384530187622579718207094576875723289864658463790850842621621239446736253836813090119883922242197515589416656461549586965251177316309555838326058947224235052972449511534840870148741203517319299724778836379278328510936788514401365641788916721848272838631094134976013482150100777406046931478502930107471503607302840097384331019213604587839352999804916681869559751224364382614816178602027986701322!
 2819818521943776205605554195842068328811717914132386424914711144499362
30561743274297799632853190580638094562219134291475835717880656096203297376497070053967556408550702150921033724560236847951671259916592513395005514879000605178735104912959345910933117116157668662811335097934063390368656378202057237024077106592447612726920180093760862035053859142026108870521624657967069513255305356176404054925815279358308602736094855198313919370860486636294045701838903287968561872462677918372335157868795121428289875109204522902690982003841482428557016209447242382163837845789058805963002469543602906412909830429452870968117410623483527116099788434129521552571623535844059210698988473890616170665704104946166663403091277950130725935897086425682023089874990554578845679701931026781664112032570083409342655277275078468755842633403861606851048725309634885697419251128629178050805316831148391410065652109462630512419712638405615604688683022260489537671728540934362701023862673574593914207707990448991490519473659935222693950943615622241831994453297251330255795185564914720256!
 3273446729795734224072359221010264416947910625740413415894749526518860220958798491323654100187937888978408480546058984058351922585606856569754345711105615187678295227488328456986478124802770307387653928220124481122368127570958789931463925983623769769547029485561469877245316899584597926074702928196056982033670294861919538902729736771895919122935416157451873705229559012092508434342668911826860315881904891795964648779952999437993043842470698014275732780423598306586702064250075336551629827510761833697102884951542714240815491656123464857445105626277974634849164680939070026330597117714607422467845450358128487982889775424665300755932447700027214155387182844259649229105590348452208278687894482783067821281747387304419175383158825205435406062150946062160564568565580973861307598336607047483024952630183929824449828690291893229303004580916481569300286531427619018850281339889440968768484214176990259705255615224690877155305385640138612156249269240690141273298642864858635048864579631965295!
 2774302335964563130921134518781036999599486322481831964295493583152540
77956848415361951027853789384553772667803389045634972836640702669330710382149457623126964617467221879986662882793057353560613045142269886698773132715550810096776695987578900639068484901521043116280075969845451071005758530212905155147384449419309228849505774479455441316395417424745205257670842888747947979563374902651073771415224088285233702066657434484024372287491051313439457157144662725187748120151816068388372556787174848686620517200115274842992238123114455903635023086465893485854493226154141586554722737945624943400560838918146344152158502819743577735392070903676469544382725261233813545581264202276355108174102674306986714975159243610167447620659542282405756228649351156459352918174036717416019424705624758357986273871028093738189901260210279479539234019023588602642082778917343418997434076295656723705549316946888565695484094399555323549603344852828990076332458853312946185593484041184891505130979660319784717590334147841818984392423522563994123688412256420161239036121334516880393!
 4419963750311472872215396436307323857415680307231603830234278411129693325233468732016161356728065212558947393658499016060039056123882617043357955523221396209424586485460627836377892143574983012166839632776244871285609516734746836027079827503760240988465860465139339403461170995158736406190060321311288135887493166667923621322858274788530801250200859590909698392852091469312118235959217719749997913215686863088860694625204962863355436328205591364461683793783550884080978956477318580420127411619009968172050292146599791029905595851723255594442446469871525744857076020283552442812023973598024387179001452967002316168784423145325903019240510435640449019230044542331603658490689770817544703854229242521862370591754815796231684006132055910888413742458226144204089887299245516482824170075820149976885686449665690565311731431890942547264445690825128089263986295737183690328267498128908270582351819498532755871747253168135606739326664171503324439526096796315141113664465163887958872468758639109228!
 1574508023192944256431020746740579738702605540039040161474526158356236
102
84935854512517517198023629513653284791321599493574179746239230175582759052085915402380965826975057791582157520236881592946903830892689609034380195935396729165873669743470839064367644597837037148971165444255633150172424369598499642521058016258230664665188506678614035150523093135584020382718224707461767269952150409520203683699786575978115276446403883557801527498764256642024278834988830396791951430714308812469452376977878223864252338093871527804492554846605971577742742300936844370705568968662406064628055139084368693261699373735419420652294838597099798706950755093726105349461958998553335774209414666717506569526120976985282838228216501311739552489565183298616786689983579122644982028866423423422383926254870164293850463975129991814598768972932401247226289310547714516852338592684138726629999718399492182636936231985969088832070545059868002596032548204882077627333592467489535362139503293137487858043400019214657124300438409611197201939935016023184922487872335219361871283765668653481665!
 1164414207612846302195387075989007030703636892603137486161960674484506279203759057835343840514809081810302437118495246526757216302000041042461049993401001210962990981003269404897498927655520013769694555267368253468125584917133461616694944143071793374329552672533422278435996295106811015233992785725353502426556840830849574142508917881973235988868154694217039768329475705630850434435748847046833649518739962424137070772238316691264585565658272862582033219265756358856022700509546311019815393355273131228688849832248622611869104634610288788880087525920519734890142331894284633889810211927867641860988218197336316981888338639178717748559908215019269123045338851109532525350690924669602337103481151949502467617306394991042795832102609177604170923654420790102930984044258528345422993811361249957666046918175609709832229423861093536174834790249800409000268020666376166866810460725823131574097799703797539232127882122608731102571153129063451333608478075694540302008651200340377697647254005689412!
 1921912010425234755370777596777273432601765769078883185850808094352407
97069705556784826981814513732619985361850224109146609905713764117831707571688658408003113698128662215623442506926968258794517966218674184812215733382925212421967370319054350737484396343599205667816001990069085903549573790391606701994753373627948659971340366946868021844076828611592968590404779938799263674653772049202526414037897417591404533344466511423500092144637584748357904933479616224725035720431343174039902445852398717671027624942354450272364937393473090909803220864828418764376558131414277446583540352748012425744512000651168802245788107076346429156810029048698123846614435257230151601429809468278986567309804159487398348893218538104426511465411567530534876462706802336140126155134247429729859140765092474268498863710363034099052070179514733925049916617557985290460819439671277494500082212762744673322026505440761764561974871236001822436184820169056427566410598387674867116609130433178032720531740695692093632524220927441992701946265443735863807042187110439955663336881647105350222!
 1345075912121330333600567589138532591206929151777600258736658810955898129179754344646996342943063705824441377161115430261150170467214590428674871683695838043033591009836322696280038021894105160208593561632468614918306763073666404701208863942534343883343102430438722407955565252955295787236947961194248933618450085840596718620710762153400907295455478404885575990624486414953641742061704563718509753042069330657762427503022504770548140912836110377763260836121314666263596545658459508763220674538319070042309358570088830344863237656696088377316427196363279448810392409362505444948849207269383328839137478735110083272420778132796004914768244439029193968838674940429669372754013837852330806973416620288999268791463143204201529592583862654245636840102560819202943427737986290230362055329775360083469434185011724300487075230173779406214365574513010523387348434705351175073636976728718238875789688438721021865245819737312074081884778370635016854155995158469386196916420580885207237616119322899350!
 3072399240670763871710707871362323579185087939562544008193882951674490
70167952902276382878268219693579043166122896591773074520501967963765583797404022161895784165526994759585311853149135270601959758657396958291305560476506485606082933322868502475988993341738360155429423477342196884426847549053594499721589405868900274741160171941842598306614814699391324620458152157089785615950261988699655612293605066722005672939159818568195013639751234890989272924544770609147507179117422880973569885936232432710687361840400088789547176429324438355612427611553747386092983831034539311857628530379798005136591020566087269645714797824902103889653755639037575415607895210382913566151432431842880174140277394307619207634357875224069979999121904828191128853718394373746206299643140709208095534948242792406727910977030672054701766094294877312081221824949037243962853975566356821446873263416829340181866062850653755060425789084184427756598239180607692832449014006633276395341834313136905658787062348745882008630654143819024924890863398940614968745788142844876672821265698451525406!
 5754261002735126836664986798620145946833576288594838471337266172221142824041600403403015490731490187987932950221699049451348584638332857901068518991592693664041781043656404184129832743131514930032538746671834451761549781215609666977852637493135505582354077511905560206058482155990113309771491506083947939067036334820839448871857810260805103099313701622930494675475400208256053146692252040163337744336224086182143720414709493987116903689285841442393107755875812861951188326526691834448823594464724486500231998594925857279809220163578528424615667282357278038722537208508228664695480731574262263287279882893401750922611559960963443588571325867861123790816791480726623630075773435432573551158144114765540744524617229669938022972771906370891804741568717878445103312562137914809956522206331479645840258096680157369288256345734736473082228855604540558937698743071406085504234240773650129728728158443773481359067180727390239341503872418010839988834861158041488926605405920464927140063484767522232!
 1162808864147015047278096851251766305913032000793466590594828253790964
13011695574766961419941083543347334084490937268672869476147965633107545735818238548101050276498351165332945794319374591108392679268044560458181868944895143126539063320872636024715113631649218515026776138637010605761586781565666459590329596670401661400726151853432506317646679582462525342142604454064161800592015694403533488527224998121320149136988101183990760928426003044150132116693009146463162185206219131903268459854126487850675576640891109524360513276544533345369766091047269588975809030490218334108388811347455798467838822602605527539953067005147503616124059947785598700886774339329832913287212366047935573249023962813244321402785871906610943018584728979536145839367338559264190358804833617924362604580830457506658585980281117403513803994659328658711137820344242213121376575531775899099498853074040984787316604087842835770001446914607939447707061533727358853605501245926325085908200876142208742686697746743551252967769984849467591867518301102466279906402529588326119874737315448796461!
 3727790135185379361007186628813731965484075353128753269192495701998896314739521437807320254721571546154949782680014310765435196504079579847650333834834563260798131527386741631275605662966208790786453739213834433255854357235702023502783690951837663217254942615307924403618470004430526028364518432610312407419514524506786157289436698428366995291434348293923044905210751401403562737389148197407971152192135024001089346350180704241181168388192283850390435199908585711735581436275562887834310267228369849518838418750994632718751789567567475901030312730488107772589861659128398750644487365437335264120748739103128983300866285553411285439994894333579575883227452269954740543956092388772653525672012288352329837199274654652316430009731333043001025628094943597245853549194228699256263943008120071995824013754420487637573156054361419980695226186836789609411517258437401611835540431988871587318715122281198435091643570854629387221629544999008263931071093601103408204623642717166246375141494658428922!
 3353611446446107234266926387555532449813524192248798596354576140604864
570
14823677573887994663285099847979310366327769483245129436585199870809297759183336246674207864146262008231632192443060396084242768531546805967706314993127102230751911586853413038263291090843498190327006881835524384414313688121605649924504352810444602888803598573062202522820787829312095393014863993688414961419860350832748008969144217873360077128183170089595889059106352894781652087143616240008062770513387457818711216413081283574197495109834228137631278559831446641105365475136183370916095246068041335903712904750583291257881497069631977776853965286333965548523836962314495410915938617172584705334331578074848989256083671496781732493087203946318174212871008377454918471559037629092010152818505304230573327528664474749739632146689084785256170837055651473469294646326984846473086670559904671938294923242752569466156496933140981080506144390820354610094884704438783961303407052325969047183709535261087467108343854258459071940799755808709815005525899159446117922183142884614914821697621966690247!
 9784236972893811368291762370296336083358084457239126868060862599029254084973157254997212056389451196373623443797747269011975715066831407512554853220691088606147177971002204164946519027172081167162984996662477244831390927450455969280113176072996613616206615557751026672911177428152392317028345580665239225339784855099596263574954070327204442961658151103927764618117075466941430249691445567849857371062458848207704658662826177083014585801711653794392013056542261740512172236696920707998992506949364933764490800932318220265639723098419908872237307909264715545881773903478414712647650638424026590609535880262880552430047135367808196143043820161930533456571253049858401524701173070578856324438900873557401532361372655054740336213656221390916950548527963725604711310012195471088481232362604760569919831795237399692635090663711846982246195309459760137094399428205709929256541398010045643971684889205584180875694785630648837674124518279194610483274694285244403322257144831541057704665488777452854!
 2673753464480404514238058350249585712967565722966682605234345786533041
75896491431534233815439872123869468424800346877503366516949618839206686821104611420570979838657372848839151605869408439858484811917135857424440206325212343426979663855492173358515836069869427644672159199814563349792822209442619981805687563773849414349612944242574333357909260572942962590415902759514169330397012317317929935681146355264369969930761483066321887679001661667948095648883987344447064904301940569094935013574319757483210318389319327285096084910286772885582541733645281726007695527987131097079617205386079646873894892617167289772208326334481471093992055639146467953546868066386656345498881810721591777471911034762039390709067376049115200862198644849037922110657494248093347215964453292346812530879287272603376011432268375408237952052691294264010811529443190406871095492704323857531724383419548583083551517640163818387848304805456250383950411302053602167353999645618631382665703597374433159105723295965316732228591768350524290435783116166155449522164657300109939825777259087295225!
 6323549329145041359122271283471156727673675053217902166936648482756310335874613372873308838689807494536202294360033966936481125630085881685439519211917346487781516349789353899044315402672097064722298430368306293488387201559829467416628416304286294308004752040873671061972485556185035056406374357661732780938154477196876747854170284654019486445923149770256649853599082656600520428940158157352855668476575343663101968823591619117780797635252982359146900206067544459891161538347361735226509760583958383664710919570235661988756393946735630931333159692498890229469787095371451584460129203565589416992970593090531400887883557925979821406966596683729284970104478458009073051231423805932837219611527074416599692678336889437405097050171835802205964740686568724597521942000826046844931991456946986194828633722488999906552622545774019794659593807685001979988871922802258925195646480270040885736132958362641979907656308867752543686232125878587304226712865952417753423308399208497228938436593273895560!
 4503578918885668654888271263403395755030188056344597263417987752318620
92072164362698242061188273000342682400369150825825136926351424316664733173758851492863185242551234299920291207693306887891531520350990776427695245842119221689214176120862428035607473372391001105445787562328614274255910800939644336895867033645305458448090417788223769157485116521160595067839208882469562511683457442781223073028295826853875485013559955440878554875391746592253484864675596272488415464201794012055897354956591959001087799670194325690438651483782984398482295615231688286164114581998363636041113867017697048764758508293162269781142693395484657475209962860425536004768400646915870087944126585354483837277250717256084435020198312907044201915948073209466250910978821729393994212768768237668246159116388955735495164897190834699412121167481093867643793109070400401758817438627961094934121756485658783880387060096631057250460067954133287486532047446705696606323836681176114436853558532886640157656136803382759844982734925564572483642660242109211573785364463135374632177203961514593974!
 1673971049915304495982577828532155411014681216117094234757973387403173767336353828668581969711895595321749975563512988377622936996829410568519968142230727724367095865719665653185696943441188576019774134303352679098057256410286968554569679750358065110602780299110830717091742846029787403993954685233312782178872306861708182389029162555699620918956287074117057009917606276751144365003225111068728904643477739671907760757388627171700269422025074214973655805750733558957534218763177305457322501657819663466080745069363115192577457751268515469173555853793464781573434778381006508681271563379293900904920661565653944011445157324738847205610467222910557809487173255024112187385958180063152555520564217220964504210051952276837119273419580152858378041047997184028332096709464817715367962404700724049773713798991815169100928847319251889322342582451013902706037993739407537131113912320927835078470916959225490478844889821434656654833180812542698554463298816696721347020182901883791628063717231844745!
 7719105215718503440104875558203822657537089457734450530045028244640141
81066859946267997272221681495952323787519529630955045688595655022572783854119874927983578546999435604481828259767529926205609229697558806531579306366139611862371217743431293507742956148186165127880192035326137343257729871480131480599314828968123016582871164271804141804148656069398636495764163383873428218414916835594058514835253790645061440909642069781586176389763054682555687026445282869514581641103039627893394861122515784291330775934801844836791496660137601249484947220634871312422485173824539369180768211524935006827636640335557537608923637316588010652698069531849110024002009095077338827580261252119754164567501319764064494881392517165085382998321863698797456586812578022699346886513999962669289328555510304209447717530471998824661217350563532505435689904865674590895403831949489269797021596380434921747140997858024093157588657690319453793618550373513984757105458587292777897169667244204090213377613738615331752941791048729615337093205811468425495924934938258977722113318647516713313!
 0452948859446578910615356831701685485787601983757847755330705104448094766689968810550972599422874671377840368709045751295220444368302894066559394778900988922666827535268521473237792615812488938006329948891175447821690108948980278257585449801500847789143369849854098524821821190374982041301297014477149657129455526343544770307213853278670251445748398789499572422808490653935698021651011382454068590813615076406611178805746958346146446697961019038429353079469112854903212134751406300112108055272499957287482524396096512220296431342832477321373628808456850955163258263754390158966907087518716317106359621921314302731253409865724218742451437983881763248587287103773226862411031996552136383806477187141528698393950569758179146246518570870893223138747374864182022337117422070030997237220662179143641248046790703902092716128019928219774228023204443909552938559905830360576657204455686984172042192526174818127425621297665231727064456196367955157672631432827988776355220323600244945664597788713229!
 3094634976835250662773804087676383398188163731186221192461296500489039
421
13158166255037336547100725310856194977695791374622173265430374616171997162213796087020213377404564998885404247424084822797958872871631580842018415426375278481031787429030993132467890694971013334038955909822206026045518657602046222411767950151918205063522814094027980218539473564808343543892632759184785947829438900316003526456144272833031342956674806427477921937689028232818316259828075891550904505568983256557352239126307416489333101529037178392717383331476263059681837260824962181035520056053862063385030729607636381655436144783340452122487111048706051919729492900640396206214880672665796214947435636897816025101921532754304383825897292959683472956568688682845209101122947180045475325969317945982534604685438089881787374077970296667119450925234354707761034714071014660799547302264962104283885518549917556824445613351998568047156846493330154450918645057906319941990527217576908015671295513354101349379859235407517310564535371793463173442041457325884034448691920178517451009078858376844366!
 6759150351452053289642113616082553595005443579685302194347033440699829736950837199231113466433123611809125067332700812481267985327833592465370947352033457038560932008515441079165865805572728813677424529232734137778631707465678770867073849919603938768965613191074180290046147956285251875818032548448558299813073033438409258940662719521679472768790917668850694312516504667183187224108169184957408317880072741012060778680533115120604922780641682162427024911737650979635470548230434800932122811958192320354734637472219993354432715535691474078216422108638873012494469322294481346067264501701334973667991927187196489530909274681047861118474785783690589883178902211027167902329565984979037607068971542723706415168639298712222870390973118339307429241925120457937549785864235642911778700226529790679481699873122741312871013422599844223787304518254350256375705085535785627249573968559187156444618811615891607980340508601924452863778540999752319742792412813241079187617310479804908428222067109354664!
 5900125934357702694887614192385247110031122793626490464317498582847057
36630271660366144398615156876304035810750667564994674071005992566928514966413234698549759510916458763311452802750213139891535071231286884255264566095871607935989860516412168163975833831290728182968231992878857599756826879716160564869538481194270375083255976363296448091654520406186496439997455833158141912060898382180086262115249920766239657845187539223128006908902012485414895994964271583170544196299498181799625080149279948940303518700803389869842538282729085567256341238738541315909030409986435163727371811641451433374700660677247660215762548707638850327492814736817533446817507912839632050236445817686325307800184666013187602564325090697822243319143068987418767323769413866380101405577946175641138824331600208849348523452441341309892446562088763130548085549023358903505586008747702163463977604711784713482793026274713675372583382622859896511987252713091048612679343023223124796944056450139129949027060261233807727867612903383463096082710578241518334811287866560376328112205211376889368!
 9125113117212860377002741748695688755384842831638073196966263054831276140276606251339212486748624285225632229913385251524922816211139274628383857626773629014515570016826284688886934729994151297858056868877339258745960591982664845342789555807593807902582566689270957708441418382432545062869990455802139704419749337350687800957006270217219694181017583034006618301047030548790061776303885339464418641253506100134423138113326836712497281970043456275032266389427276192558797008717726075039098251960147166737137504519661165145178712158489798231910415730774999245962338021206574413325357302573676617778765608919029801616108859882610796348301813755420543507926878262553068236504980181735074796821750519583636884679294151799961174760573177510813662635650767046009632413566257991249752749278000446520048275698913459653338119494820067676890914346316571973682411875113185476329028020842542954438813127275340279263862121308635109297137910088995001428178446874071854863832820000366282232593383918564578!
 7428259233136190118419464817483547695718776805563620267188575154581962
95388596091368144137412581346691994908420005838192367076150235533571674026712622580901683310132657151313358104573148606127523065825671473844978900573748317281405498749846131357487704453227920710423751974816135322759654117339399979873432342626878031130163973524628685079394119892322793418741770938319777515823222725742937852418402591227606449946101461981021188115370419944906924858307829662697091039460484192872472004298078768109274522740693530329707276060832640692515421773125536451189597343365858927371645510628800062854550663914041988574421059016917429855099701763830207246709723313595500394672121291989735763418985079927306327914699637156585126989595008571413253910583662465728001599992817194583950502858823472358533162518361662435479131874795390905792855819380072556917875812878657536841345460731199109191173348556203359954178506138052613554029020367794163620343090110998340423214690500691915039720347910795149845187701921471192780368987512832423471022661800034332306158473452184391757!
 3932254664346828964435935026180870443849791216103638103956724147061607466240550284457476535010351814365890950429344438001261819936160404485854099588389151327565000371879012469377320717922529840704147398730919568734092923769729392866303328150820377452513237227921927704264374100043776267106462366959742315703563077232646427406811742486364969773409850789350097769464326245304152428947207730076051402290974087034498511660124837509493997542096755680003145598479596412386633943228444981949763437440105855169302705771978867050552345078964159544922819667478925381911685779512118441011887271706576051370810802323223587490582758426316826686363205268274893933585212357286856292775827492554276339937581941708048552850516523027279822398862375502078232919949944665218538101659996527134013249396424163126778682177755829872945293602404801154349659055894886783461747641890581154866148454090639228089168914087946439946656146637174170970507902346124280374495041846291249983284382003675234358279891782094385!
 2137633652959676369885708955251322129007844907002601346783179702919017
01888117016141031877722430853825290462971546328000550424101941373526879130533211476795919115766254816407474753670529496076924843140705572479617066689683492613355318956683138062026743917935304023725871580674987977460384072077139892582321844536971222312480932564447612161433506533033537327189281388103596458964299161436272220887181563640853173621356201249951229981579405411675379160783018087874312289444413431796924742234234336730816399877321053486728002556062691281630229681842802829757988255288053847851521104274854452514045916992828076745346935775737356336796710432874173778301353302979921707078724975598156597193145678962361357993907603277332059027679220521837407759152446163505924881660832550729616238278796260673879029681801081777995128073287549834268621241154646086386209171631571217554389127453087295860479848897772143315793337207413976733774910185737808533353137422587964220652961878159970234709059475748853407441581657568990175364822554353711584674919922495520203291936444351027588!
 7118201175315429386072928500811241683648697418707449027717974940132021485377593916312399527267937300568097869838223628574627523543322660771340681435042941300447977458909943158145726948762094459695258309925986313447210316960361514306589818930461897389972985353076109104687343383252604018024725270699427203609224775457584924973684485790424839632019224588311623084604703054571160600688559911700198130993297509545732925555136903579263529117321056747972705783005006401616555187263472790496842740454963044319977709917498738942603678064757822259394412583579627975507124117303322518445378160338361735314735747407710058564950140011952608981014341124926972573958842046559104260549999760741004346820777558523910611153458857756483569136642741016493328611561368042375322894479807260750435009897664060485879067595761866890788947272158730166947124767107722837486809264861092989284809799444421480853779816463233585496970283272884082064296288094609546467248646819650534682578304023056582529646659165166383!
 2467370127056656141551229752242289240349217768369740878755737487074414
178
56382878357915273094228627609408562212657808508720998822769486476134622538263218062389164936818656852864873042799348709868371370513891736296323652397254299012099580947329814226342141043955658751461503764552950592629718384498092199289709787321579163815276392057806028754944565239701915960245171909378226294267020209051871127457804072209908977375900380346677751971449269853911653608851874401752512171899232420519413055408158970081959577752397367419023966801418763752042059922401206871817581545665152474322727109179620947683213326595254764161429247575547254382019257726021995879700366036163865857439778635247909349136031041972849428408686189370697487571722117535286370025582727720063909435942294761089066170264111168871483582070983921621948189901597286652479022700813167707522575099235254534568858874909159402466053694178281430569894431813763035741156233769187549114775588248128728719718712799817636811545077222788014418415369494256202004916664562524168467157549398693995369724955620083767759!
 3391016658696024174224720538640167409525929595079041036758387448033631623270948101492815444376635198244442344446944773861189839846808272283682805045543156032619059666849546007313520782472702978647450042939004575136689484606470863046747118802547755761153398631585630862783447581647279688611249836413827076042293717201267663767842593613307863447624240614084556722656677768324735048073483943894401438679595426329458846053899226086418120102662262162609723205161959486777032791747160495629534594714570905511311252619294650730549160163378141868897673642563196874843470729392332908761633774604468662469540335112471866176021693381981598944687742220512587819656248541672958401211790514963691077309444633133439846239590057796435414473793833491110994482372383447095504908889500180027571925508273330546326719190197354600480904283994644609520236932426161213980610086825387727953956223510915773340799769491383273244852396293090195738554889612727797066771701671843176211854123697923651589766337547722578!
 5354351694112164791639321741884388574843838402327437407594953280887437
28656107378404415238443441758801159513386248932072484514277625119825721858599229158955249226590235818098885203656399626452506864856549719449048794369872860238999938658106430886969411752199770420055197137828878209390565479335311647070144982033827918108131780190777620926724891855120920173525361363120302461480932527126655633910496413981240181166496195708322036322721283015127172139898906794293298335144364857911441449914471388920349047797091528019286551094735835881611401201152166848586672136030008583841327648503255480395802184083944904530319685517712469089915065625551490296245191495711368061731881793477973641398478928170497379188562803981959679801693296742035447326041313713995711253587523677569442568473203342162359335068966966802108700765167181389423737606843753656251189433180182545733098219035939022603235222927749882660573749335804869448616874389856060097990567872986447523809560496108049414898197653234546049293720268275019476521516377014295710126367703669981634546109170169585382!
 5960054021528688291697728261189554209425523298297640649261682283617769633604646340367183902525431877462524682508343474723782539684618835488854861551858224941959311209827628021392065610721037426939123076042077340063874628078631441711391360536123415465741124091614159581925987931502749423367584997492245551598553620946294128862966602469015598424075506564947273752070749377632358503393478461795531869446010121361159644807595090493993889285692587754487276639839593936232111035460084411143374330555679482910162454807667879636505859551428187618242443729009609582719704473845172460051434492839014873738608735855873621332306321935469695280396758059887007725215282173762550677546781171770699483356619375874031228151103398309693164519048420625645506411635270337310624817498286414327535811468005483133475381949019130321162920242081953514890982381056648205872306223126109206293513416635268179007498600968565459316068696541302027054077421543908224633930001257653294902424118728024955019034296080987111!
 0867329659171813450865165272439709675230799989153601932514953013555009
96453159386698972507063486144520583182467672820239234610941787989779055415672325821322221641276163163187261074418478198455245694027360041523908957112434909514445866541459697674448095747854164862452136508523572728921194955752744178877264122418415936083648217517972091101905776480496230422737472483755507428583980369751254748771722702882693582314212206228202709097629291867623624663438795323908529741852928221708640016499278501930901182104879625465378078865595782772948672263577806397005584990507805392214975846827686605802054015969510336374484871365244328894729218563920249653932686300628639102086844852598232405526548251373329292879779779958075962721305681633972284425995292650002651017178450521605290977821657451985002284799354439697398267989869231135694292000527065553544016424569503611988349522684190588936309215828467713912602282526651249157605605246356794409147473363367012127445722583413428461947147000239907050677524567691405988104507333200365939549359929262299857447670029461202915!
 7060099397490733924806584503616739260583162824732959435973776546817950202909944341287352556792458056119178129519256167384624618332073984344942630051250402903930245457940268111274946820553009118058726876189425924685839315918816411533811868812912150581146205850134160184699690848623837062954178055164447020332998567777053608799940038384803400185304214632371229529985679278597934457667826663866726955859323593711429910956004903552037808547978553431683526000863106571064863335046273660261193313741369462525166089696107879710352495142062022126004563951301742310820003149283618223781524190954260116848574871826815299592658787745874390716544843066974333531701297255002539148442377956834805815538562066589478628462248857355143208306312551375838699271028864394519147483729256505550629432086622365545685693231450930845448132361418913506058357237078548519069169415425119377023460816024122778346579500753132462082491197786116906968897869982128613053004735298835503017754679287469472914335053124478822!
 5122203627863508446833287002751100897886046648599602278877703376814379
79827165045152477192165563098126871221426047055125166418896128582462846773778789677748762451878789017560670020713274533380243249321756726256967849477976443742048137723729237453867743496745176225215653321511145725617023988212350923696061108564823832837644276509446793437797757088443241367485567365904700642374413758310941195361451310420064303170003399983189492930574649251064061102868464127916913305745751367330740674735083155591087078472770847963618646655658044251437277524769404061120387933190518087020355553076390292670483233291443859198463929908280200912578891931541243377370538090762441366012809271720882002668191686468641591368355830863057230970568526664940762580321160266572514995639525246005396829584146403610025592620783621103374324935498537431102610585693754995308149709500704458853139980240476940555086644725313327542478296942715474010033917515295957829351135094408326059996477024974835438981776616251238193842707681668049210318211110677061862244077594050766389050295730618501052!
 5651612533215188771793446945101156837969051392722269062177969971010999278571593893448159290292870201928927096813026248306276506161288833414594863244460244440840955999899038319198267535385653337807883460825374758382106349534775257698084583532443896249467065136003839465037000361222795957643324215329382982985052993908596296452799529421593294557084981649564027428411541177987775331691056361904450422229274771471718482784129046433510982681836400269077182686533546024109322473796592882945952455481595141499273083388508498593971582380849611651349061055578438923120841613063569818276158656207820120476622088278730074347895711050627046867509411323026379823849052089674674694907596200978555531772276227399696315737435504685687038713412094968041563689502788253273299907201084358897823584580137521827272034712223962978913973283693641193975419608170159530020341287617658326974588840200597897210697483164315185883698870019874733958746274353061016208113499244167849066757304863746233114695943146631219!
 0728409718223319277564890258586617490871004652022593584978911370980823
043
98544917522202625498066594881626165244453612387346348949988079078353852066839532732739617318508914909266643696589814615589205178502778283271444214518108822741336983082974723964969739183480254641605219126604201217129301944830780288551911140793624338846350443971987445516548781610560961317118040240302342258912405217419452883539359974661016590271559151031419974508332130233267206436700269422732912698172161742185731901140481479173405231843413957300787264198264594839813232890203874851725466927122737439369526507892051389591887274962928575482744670746981443279159805574058866037317080036553784334849655366715730789748702942298650967333598772246238979657219602947037758511665179163849093530807156701083348119863208490747452584977589390308329777632972944913371138014413257614308185523945352699300437958000964885466466202959492817257270426313241377257352560369230001235653974333384076975653729509153723097488536793819610035430254609081246306886320200804031500505865218683024105031427068405060255!
 4747902718744871895733756685687548136233485584598765895850377525867286538309834724834561730905412639501753614601695904876697392175550186123308874762359331423836160731811482973291876813568220353955954880990865105613351323910605973646195192654257471000138070107887575242413476263047719735294273624991890681612649469288453769139499869570785833382660325740103857462403608322792381010777140455100308252146026974289197042808715200222536100605439176771799720908947997743224841635391619965217479880515513187747230605611560586187229344678887501794610153468108710135328523948525868703810421417128242084803245614446378538785796910788655156243722370006492643722537514095468417479415656133986037053555626933520425476615237000570614006166186458332937445166804884353037569766522957035633970938235303010745021510929265050630933641153422264328773193350706379820787485675474821994897352461709466803976647061159040036761490323798774111392316576243600533478067760505829960630830602226105472513382392914384126!
 2090665265993524542675449953494900748281155831499962762851705167740318
14596273574190525685265417300996696613949249326109502464928586376941005461463998064360076945576198541805301775487327993044903087557128084316924922452256542712282903545804944124787065011902675238355791753766529993538577400201690914617756818067306969190135839270420258345576895367422274697364156345204203861863777779905682277400083355455966430697242375155909923315829293238257860084771307552314198367511464636873830361129770712948606587610494795143659135815337938195573384259589618365303797723843826193549734690103393608495727344430615042671754847693881415223864765980290705219700153130756299414636704929262698882020910410948130687269679491369932105712809391578809826177644540764809121502839522048625571795437067347296430667833661291378763580832714427402173589665310094402261289621799281997822935020441334868409847711080201945697344003728557501452010313121841138282007831245427110189996236201171448418949748595709608454826216933013553908174796729602004679253050840313510564808690474145725082!
 3281513172670817320149342140859745412843268983798805467873556884510936999737567390300296713590063338204870799445766116160801268365968572232446256813029964806313806163436067010365920526342616182618589289358391003804059943012013542423846629206819279196234330888423693356426703353877862731472943997564752968944913304311361052750469046173450313208149747557706112794318465765152095328307072529000836079028453114289189498147924557840541073011261713168422296970641516767990349616254860008815296403739778652485625104936240090876000883376438170028849866235469859069878028914131125407434663653252406126632938425402304740131944035530776674851693722193844535961808312772639591620868135930434756958981958061670431366886723391068933076411691526538442568629992988795942556086332293552792506633213064915003940186309431573092883576939533519107360369228429033031537830930685556072685459753905723355894369347640274502137893275944418488242944730507075042732529764739515265706040595717888097200506743784687038!
 6459709166722793672451069083372541338519920783038395708397175623688307
24356869013411572255918017538434569033933698589678268629510706298702915242936275376736645103330830076263226750818016085280931275742917468343863165694146527014458294442385321577448911535628247616135504494055114260497803826575178532244167310136254916136582619156250204190196763426091859596571800449136181835950790251776633541567981304101518991383253374625644820866711547650083074188580496333404794328839097696505751254325556675216006859140939074518253199915812619507735605490630007663606143938723299565639594874447424886099884051267859106779837206457532948760535837561110502819872193018127482214967634542907437234284563889029874715060040313980398652239077116641476601423067252321637894489319832185092611397865206650309351088439136548280964750354783993081184169763708467592923743228576759897443334054546657297028704539174359354881847299479531324029901960415299984075213154248138906540998128855973647329187661728315916011284391716076875703837745424948577963975947167742697060696846145037910562!
 5925019028631760439224643802781238670779807668952662606127731032180574623453693234502319279829403391640661732666018045336166011735528956249437371548246168710608004244719164983225978216008418697920667840299089469730329499778249959164139265048315509260964145884359471834142795805525323635944023348173225192693873507682955750440668477728147606445742286996415732081254488618496327723271113331845411045783622874048924787228320428543948647958437195362345843401022254198843833025006874247401195042367209658659706231771910746235536085736501973372508097414011752562408804556891630157248425264795625274009974569378845154632322795968126856790554313741243881086899994186263846409247363412477094297597301411586018742354093857263635136071165599599991240068886925795628199363050738630541889224657230336427637795380412564357629488456125230846761495625988535188991143528526600894821799337929698802630809639294822376199817366813318174597972357760902457268356310506682525207715858743607563209839644348944527!
 2927079479356335085123753442374185974297311417260447030084164431741882
52853992677706692835918025763592453035492511414641052158533430382782709486628239174574852422351811153880941444624486122234025247905108375223283659367796825215144247531343556974212411914626347113454825321684916213651230175632773672067793149495296782658929240908060043581910507874021161600466348129618474931943514319233466433925123614642927115306359170555398395976905928599961670657278508053155880585117820812735034046095375438446724544896508652972212523580775006999883750673592148685697398548498169218470829119651776549626444545250026359526580025403179955147918879860279987137351173278990520830175421731101981215027751365514212504218308000129245138718468926147103646203608221256151194489304575109363519369973788468466729330947369499861178772343801234556517406298749511030716184325613437515406228229944130567337583903406572869759517071495470625462048488682326210967926026981420978340586746084976695973571492771944873810053044496707466314756548549626508642240575495223467593694740437876073909!
 4280610315356328952536781360640927850516072549891780794640762773088171565794396370757148592856405090512594577370820917187597820305644839855722874489055234955447844867373658727858921892098424909176710945443786662286685524329470448242847840273506912080241075667990327704724590526879307761140576477986938147575270419139342777093120273962052092468373952764352755473516492573097673639706102638866782743955517401452927669418681553815528313756355520775471555541122897529798759695183007961805170556761004098168467028598587082576982429721099470828500955771676716288154212594988675725201077718493789386174446236572963207613996531320765300977830975032159943556690356705244016973515611692700566825900944968547321763317523710189900574952860834830306980674997057134145482701757419750023642446310548688668855783627152451609324073766606882939365118397143530213907844833471336742882932750254214494774055364366279884865640705122733642981171509742708939256124025665655201984610322621760598719036998071798422!
 1110672286583022394864861089858541731675448197637777885839934787182781
622
63279276829929871445182584288451904467499565807045326761317037287967841370044661534056154379016053000187832084982212341416712702305985029998108250505631498189922417814902725093727610080307138229002497092567495440686603747680433374225872459542066853939523019381443425457410886747767544017858414478026393045137103231711576686889889208348838694920506331719385784654940780534218161989055970995867337236597875682474603692031342486223920275847591656746567030439724139865667705195739630381008253902071648245030604456044910250657985702698150680760203839662246298147132458595137679677286938877559105877388912043373644861104600336206203589894901565488959101712077629987865720155805310470776109754124280200033395241220262796234770653532538282017970970138832539695667037730837010238370871254553946914871458426500976779276232303199536814644382329206994707413426674953253284203091478745021399064075545817353149126293031055639355592231465570047030058313826261553326651192048022440726267526101992700685991!
 7524958905642195155354971985399583054392462757412676149633963322466232025478180040866476597569164119659826347000499827762698565672973166102858791587009574128209294476248205302529663217165558665972202147706982904917926184839352756328901691870943143495405132212262469239606638196822312345088271165821597947489816978537607749548005050232297279193868482642627013782737031610282955291760305334356857656679952734775096508533630607256170810131068532238813441345334882918693492141480629315571835560015392312324585438762048981208842336777840380753697429548261046720026117302302536075544942485032548568684508022451901478787711346791529950303837392940852606622764454239652944852679962030686365110588016148731158851996793255391656478961022901094482899309895458080593117810947441887364395546157229759134491004685055338244420371317554909945231844955570598969607179435017104604834528266221342190924442132848795749948861326033507623395800296548977057137842912581081105011626047813468609433890751306225754!
 3099810003868136598250957078501459757230031978931988289262675307227630
74113900737096408216854129122247434935706602232332019755466370475213804314191952503504040580884156447492963047602075277907368949474592836101292136292284568229914752595144519939485425395870367676118491137847962417881920573780790859788656046148573211928098301844687842888968202578729363389345548844909879664726118578841070151535104441879557436655793067238805583026903330977173966794398758632538394579551561186816845546611528167106600154125275368988657073538995116027370090943089229127754233063811682298450949264926340571761639285844043754987412343551214212665587988901872858564292083519816741769480761512836071661192599530114867429794368461193754008409061259740577693799267146467437052899508719515704317472768657126759019174601918373630790485864586765487231970494016106552217020170841447230574212275364882291002920849883512923398470037276606438938299640830622624936732583405323926110972724532373311312562536691137820943155180249630734552577149141604843692926031452027329101657113111035993875!
 2075917525842104004508274811121501707333532168415533323719214030032902523786097971653260331453198903974792428588572322139922779496066364496831684494200216584068899113844678186978827580948977976242789069616009144398556632848818675572232688889520997288982049150886735466530614542199980140013771380235844948285852566872531922619148861530957830202593971534464218418042733192741171331610781490760990453232324529568952383255268833883943291265206873138165140795209335741707305275664821397257272909792302068251117935210504526985096198481632599534908049672327282984472063814965095304160472658315401250386062889286186078666011286693737987384109992404117385131141887535357145095566597689207061423765994280253397481395299355960313885419812974631768520345775652741921090571572628029090352258530945474444443725777426783207217792239294316946321011541693433065867144375075649768950631573546288908545887922403246095539393013437296734835527865043796319182857793169940939527466721513213927996826288916260347!
 3590931990646397879633998607472580474533419781454272373905811920258657
76912412758500866028486739439153271341776324227531565629897053127460622948988018775935142032264229930790676112808151390472795294736619009865937812140063269864902787169013681905053487253497676476491525982927731262824160859666628053373034543162087920202195256830551427797946350781137942204452563776274003620318890086165981868844687517291365556224223243174059217577738390398379460083908038462807338077321052714507176122041799232502481367951849799029448852727148740428114587521114135006466080383743659418507731101832495291401022992777168311897161744374312362901968282257252270559860215941824130705262524512393015846017576951523887546047593285731313841110957163082869952018173013945757735005163996444346172601292315445875557585367877355210605554137865024454809256217558549149594492081593748561607039866442863854885147882614038444192855409819343993912328677280089475946641105659660337696384816375831400507824125868313217969994623039516645317872367413962605968613309283864808308491627927061935678!
 6932919216469745647189466846877457856354274840162010084805360443643589445206391768889498660320093256019385309728897199834412857867089527640376854068630737803589549382228984141464829806851350536687453179701082916610508227994155463902625693361833693064734681935146946335843184673321190887462279510679922906593922011791958994815428555641389496479361381294034391686374947804853364983862643805616247001125878160703416144951544543772912825126640871953730641731268806264653994897576154509685037543369966849554738366818160877853098820878994172538369790662494552148044470722997974351185757354267345559030868597064612754241886643991379711224918372019995229873029462616770408005682270216548398283742893423540326421844906090153095381395445473447776193733227363771699117541817986461595499740978031049928773566633768001583077416237597482312512515789797147665543110733794274323770961388267855023658816742034356897405286296656218180454165647685221183409123427665144295212670446608095535066337599027442797!
 1916034692927740939368473012940451443160625210348918671684749574201125
21002086559878641174165378296331699510675559166662516466581871023889730847602174502709190959582523605167676052423970517700854977129217205701095176522272525491839438374408996848369949223361470248691538742187522186928252503290014991836066023686368027375692784510219287177193642514721076273342739452149300290464687003202515087916144736816283744790830310925639692933221531833942752034388059493317141711484846971565505675548023237878796479825030907181661398719875619934599084882199336156730069681656278850605616475325510066266596539810541163358801984093433004747322550646844483979024472097998144115499022356405259768238103521444416236168492203146762804017810241440660665650305301483868858624866882520005503579184495664631299833879716825489075886618734482902998182735688736755123817168202054312663571121363527756715912205823096401857447168717700709648439749836618049728464938518137983298873010366722325767089337826696881349540411132998882985451753869430202211284975782210966691737369926805980834!
 9667543437778725097378303672521180866463019384163826108875215126945873876673544420424650475541039910761344775484050746037953743688590167328516437760581956663515594509958207709153182293753310030245943363489226177176912988591294042480313095829251117831851737431826767340947925181995426306615543907531565707240955448839990772530350090372514851999629330392071761307972508933274172350279030172769991383228514188915200454468078097046361934616633571601780444954192274344528475763478833545364324957494208905072080775969805313366261023864292419902925616380534413016937025589458607035874993849190047019142464151589081890379309839402451431782366152192499823561254216766515504377718441365061548849239365964256439208759927879698502364374105359243531375912490245567888622091350863638805102625567049427083939865758312041221586983788872668440880795517971897073745974562999832122856213512828770676489543833757204295113876342810283468238747768370773451098853726006456898056879382071827210935730839190597304!
 0455477830593853696847756877890775110644264839533412867583277524802881
600
76398278055875134558639400689547231590572421362960419176083707450840994882419902684266063422193511687763529915770262911679622550558269859332573716381479230065727773527427155479319997253094187487048618531667340926297729755095078838524462065115260756125356944154911270033653034249586558650474558781746974265956633756891581985153932099724241827299188993648016855602244149410111200003066372214782433252376815640855890006149376498932967796969569193345414928397415922304193178207186291987914563612532131392368341500853497899654770215838077795821663384485583413082086649760854966962165622394518075863752202670856060904061699200740920252904057680386804102193694282537808301939437772589664908869524944500637892271332684710345418053741043724881067042669436372787685170083306470490676364024985865742721138148616843630093195383502246944671624817791389400755079783571981737319268258491989600524947225697276732376193024106071958759492283204545114868122901611721524060598474620745990652463932938958418099!
 0866794322734542784229269912079399739421908144004421218252556141743742086232011203525867955224253525097095209283809256073341294671675459708665928784412821572533549960747722995961835600835556051190506829842972583662090534720930915418128239777165165685157626151091886262950958252061540718369512026455981817044450390319589508987548270855515464992706778179505240740844282185260562015246233074619174770373338452212900904198388992382575797828501414394571362068187117253541235889456751595504425312300789903219382327414959045193374729496314149998434256849041723334323319352903241103725283394126840795768742761716359158646043236333592211361140604418993269583426405401185442758368394762718079659654865870839401650490544758603804172616092914638641744170550577896046779695363734116750854502016430932933658517550637566089003300037422712261365847847040539846903258703705241459803462815925439030295525179073506992550978829795274723902067999632619713141357968490421101355330575412727708371397590249193282!
 4283875199864218012216451867504276115705368000420837850834754237224845
61793291355941293253257616297859993170987043020000956458018480000367578224628525332267264625686041670023213971633798139890793569158012349973839168805752407553595881544249247367852149335312692055684060883782041773386437211309794464978391954982853675257920723732273341308632158380244246115147252237274529516166604866289788641705902587865656826612423536571442601300850895146959159914395244049036936458132431453769465703368172191518852035966801927361183181914284783124559017413470360766781191661185564217185731637584068130405174952362288436714375660333274477713734313075675586105796485961371910827948143866665074719645804120342531167901854243132096242844685679670643533657676047118263623855936344122796535760341013412458519523136141300866597565742803950294659865159117755484637613332497683965804916275659191650613009633303972951791955677510254539046881840454946286802828317763627971066791842264270540561669987274722454397744701178320963622543428687298190982879598083412896690773030650474822162!
 0309870059837541315463966507962682742709737807080124527315966167644106028491733418381562611698115186047923098201344522991537990031371518454355295449472375781738669268210221911193288768847243191010274300869728991458956329884164747519170524742667976938071735884101549787810708042962548537165813544702328173688433303622307147844857625651013703458195212285261974603488629688985491856350222670006471765933309685081755833776286665007484721510264563046546304640079313665243153856737586710772053719528629025488518156160460918924946859475351575655873769949268248147080000565148670555628546725779385018084160456880925867751611506246867245166054298901057302721686894018108572789771633624237779003242671277102162861217071268392765846229419189603847749145025002553909889700107897558004226565882362456059925917357236684716931196538755711980004325978192174647388307171267357428296379340039187951610345357047151858685245955768444686374807470171141668086082290586287095432121900743185575437813925367386542!
 7420736075613529524115407942570894059520284286022661445983672034750236
76019930158445507379418298250270384031475072558984785711944335470906689330903295887500269113904168337214059208747452947926747044050396167197670188733182003349346672939122113261156137376081488863546261265082445529007706756387394624233837917003922729005003175633050907802515477012482643441998429999210160674038450689421786692930114988311322908289996648490829118543302222447964279854108790834569473044141398028051286166266160270677147021384103565295522098707845846093606228538028914113034001864176252630888240726357079914914843920411409619700393979456605468600866928105142703631802875503868962661172413677578364309068035064805647020817620917885771488900564549147421041593772092996438089083682162775731081879746160159140541265157094069880720262002024489384301925345167822237140710061138446061773326575686579520147734140733651493933720359648805147606000782459258230868069950417843662231811024208060736315536649089137818311909223002879787375653862539520279754619078245849711513745274304414539534!
 4576282637542533463301130486084364256563050421806673755874411639244241497951091507164688125836515839900839178554993506629418364040383382720380855251091944371565624293101594909495610100783020658877583466836174846055675411283487576456328710597329249111108272286485765553945235828494255069938443679442088234876021546344920517127216542412899352811992200527960351227881391463878659704208108524241704996067816872538664314220662439924950877694460815637500846271867060091887931836444499161826811417611763792056526527486466263583779342699046064114089811930668405546646212030165968405345403434662783617308714481960791201303446926835042838651046027127980557832460232373405026838607452082828867461597418598032395765584525774172614243002275415443308558739276825101686628886471452956353505353955370384715925751484809458073554349388382729098654924349715649021503262751336714296033465336085864510139075380866310292157083943724435693779722035869814335149492996625396064877204382528555135264102216686823566!
 1828919426874757918457055307269780886067695869237151729312368413318511
61034685019920355812129627314024620288739972505089471439110462836754063565506743483541451951778513224553098421133648303825362599104682269674201898351407252527548095113719404090295035039447123977322922229806634086923335799575732446102514221272493323322049198715014060788350166353256707063165935475992913774402319719806700572422968879242335108596595394565663334498955051432655213794191400550031429833364887178954256234573732667046440492929974967203752516430334243003036443531644405542313916363875129451353646530554924884139398928350359167502417027311326924054284986326561849449640827042956944399542132924400545022984740723907915232654826917710358661971247841892895795969453074157551313965500321166950317105147569305756758001127964499883657608231349134934949157169127120450984524493843047697787558668352229212908846308299595270019845736750792905497271030185095005304586064598479813109959806458420908227859565141582338193932621405444228352702211593426627886746943072955103985946488509750746757!
 2531054141231270072944682507030083821119653852750013884014074437107401227941049096768989171120158938697600667145098960350157417138545991570817470580090453855259013154215530755571909392379851991814842454713219992827645676858062029264370010804757657881502646466079981348345292123990112458203080726510609592962557356894210686712188956255276065336901665233530033491172121871240035787728128868670230091104247079110032970298607271013834963271657615785866836450200076559242131441796337665763102272800991277609780328206611724231976717293554896989774735559001580635536885534192078708261406291371823144386357109708584022543607927312404386530685797986729237640544904720684882685191728517206994054277293467044941053356810920910532902502950264100853771931564069291030235792226269518264549981341191823644211902734429040909694889220967778755807201300243726593567414018946425926282317086135231839119072543840975539709553884651628850908689415712562496433827650358747755965970262904481058052544622061671775!
 1936573797333605356118177167277574723564991173201813511533740724521005
352
93779432659193455772558671335621613703082964345146987934837825415620754966852642304684583847999338801893054834657403188273677661885040023894168165437675054346098229912418124774800873095726345929917530840674331536320705517553736189124421163813919445595857449847747587366475414834900547047408568232292700177323051636653039312873061394406989965286806842349173723547937491483365009910588539652518252792485954157752954527302571179009382943476588970854587685031814277572420438829889573804576573604642010789337409389274718280338575577750322346977249065376414043293917592960084145132888448370940324849037438555304149146904112859455813640975935663780907417511924113393591493160054313246374309697869311059202231949672092168994156927382559771035934270841507731318682360650566167601318000007056053706019782036955499755111094785958830450993826576875224512538035176445988988555765599307092068961333190344391671823899368282518978870009984033151213563953271370453986616606991122261087405158922606758963463!
 5063358552343827956058019723653169692350395585983027773277808469355746104723766186021352439689979870919837674526902193132221266693829022930638578294798271187922884359554581821985714816867897817830256199548273664147740292094800747217989976205068598127631644284195127342727812778748298627333707701065865149667375118807870488983511988551391850995209856484619549715722254854905098212298026846955737198168982536024505742182679322293575798972279524121016747589982167135958670243371231308173820767087826645427393639265106116187312288944923151961416633951131041355468658084605187352911594924823200359371013146130164742496608639068879283035406172809180409472357513089394573943668417779453405761448341397154539899141882231439703045654714726636173617178306732072496596130739904980362978104770357483935999242479028256840855460738310352229489813517588622064073206573707937393367883305227333027166839869567991363157700018720253461728968958382395476889473786263712572374271768096802212858034684688920305!
 4764964490377866372349408743975648630024847311901868977460705633743972
86388438188840796101279396885011238420963748119217866851333049927766028444326567704078941567661653002258051367038059991405405994235592742009484245271975995309906977525462087829711893333972687432195101052006042728826971711029430673108534778181354632501794246859491746295892334804933747224110015120357075580672811205954898987742410042897442507328214295520826470032941375441424795163482713210293737345523851489529839919867032370304288415274597091036835083653029190545077705241081230285697137182429704886704068744891208828183922441873611290573424111818544210085621113020372497083530112667820418436452186394796477495410097437280774695663636906662824523394033316673136549557792688955961588114928799191835484476717663677274324569813227461774932887269090078292131354113991397383597394621191252149732461551432812267272769877551574736554699599335749154484914608504119658518775206430721681896448263382756129479769895741243886429867717518570357135504079033782479955722477817134337243151753425925150755!
 5443705181170708627277949022912427843259216728090011750310849307189252693015345836053505826014768891857597921743554586788133075671460460581076029581028904584410141349701675483249001688935500207703774302227079034146600782683019098336416793212328666912131826939831726991717097710710287460274456186140018123196231275384591643788501699763589259260035547029370152083213083911064028607514177555296990215510569216940383962326287921939034141360108362707985059781696197141273845623519858742115791510387724204447448081331930548754143653701978784584640419511608976009569726618915698009668910856041615520093319456015441912396279584964675631752242861935924745153294194872961478825189898771968083979620386406353939104310361660164173025943965307262353786732538468152771541983850206123370631364708366627741097726187037762434555711255918024583404426297443834285299907274526075382401314482015568425223348182823651758637015386897228526254034238118304023094407379548452966231197198673997060942991946544063177!
 3778264193882215884608194372543718423751027570308978697854438000105728
33896178702256796445255738598818771919237683590871539043679101534670941288847752816045073218060783854072993302985632682108246525059274846404112701901776404917887018218789238220523436056977146136051226695530297862361636239222629948765856623795200884433560281508545186281686800337721561571359977736171616575449463104246516053083298203412109045400791157948779119565779070671826086184327816253831649385288997962770615243237208025970883024811431527098003973210424198589803090238735826086080545822843259469250852988727851838434478686277508705039579037789794498211424899147368602641045393139230755632892287290398843256486788729014984099698262249973528365884486538723534176896149545076777492893341804925579136967662927839387488475270634591239588406643858691401855512010423429699085095860588030801819564817221700141254986487124730898298971609264186048495640887382904931118873119258884093419914473749579292081863692962721727409616322108899073859718126381729675238580519076829691457917561064475760970!
 6270108507588805231636314715131542114692944737582687272696035023546155138379615154585426922482102820407594110593923211713405114655810351185117272724956634232687295433010749479334069471403326979650110747081388979022070358167267337963697619739498621455818236160948730703993361872102788629803791738540488812573053615880866727000566953808591585404224362516778320340476987200809617243916800129230664103953242110925093020717386658850347419159716289281764194424164329954209537235982434427142321777641858289151026365454854517691523641577028474648480061509394813204388142628720887722745461386033403382009084415615075640929818543940376126464983678327863187709232962052333866931441084774329762003293177598447916646427852606605379352173686595627054333813000970230797767538935086598612719251969120957233726180739573441587288175681413553478995958251562715744367572103385979817092417220745007404454146638032789403894901014534213386413813093097458538696276404288824471373918055262472196366803687928824149!
 9135319293701602701367312696468821314986288407717845775201881126461013
77870667469367902827538108576021384019675054098325965216353065739918778493962095906885564629352006165337567276930452210012755714803409504581374121792257695907962044189986292557108843263741093964032541737458871571559323118628580724205578282827945002719217040724596859604109149624310562455545243908287952274849013920272399061366609402944434032776071580132093120474782158488042798584896897689455497134373545581730371734891095621295053194731377675697806969044457217388662790863506049792603720511233291597299178761170075049535376762656353946554738084905247869398495913461642968701231358337551906566621963805831942763825883664308453962504214327734128211148706134782854123373142120874439034078938207958542691982903529340755655469056951059734735390559912570496944094069042991920970269700823980240224176660582998656100286707249628845474422620648398548780465517745267686471305964481326599443254248503106320498132720829947663605864317050523904378595885485041753326151652883166376196850714453884419864!
 1201599265118181628298954764577036184378820032992207712083025819150246737109900306233772410464194920229253195825160120165322342167033987176031422957024209313238281292026768780744034221677462707634619063111455166655814504223374514391045688961639900740352799653938419315182613326180450338150541541033002152460808463601650041071149468947320149965753293550848203617432299447922246882559284556153877376672402760132820461433203652466103971130140886883321343254017177997003924550183132414165388769936315475487660155557644478488481037275779302875253601937829142090081691715401037948395936447730552248298079977264587017176611432084274807011296615383644617756284812577334063569170902854922735015723239723474892110479181652294817616780711646277828967313968655278722354013318613379952224573996059863313711450728889966643102653699720044751608340167888667016530866400265016467379700490881415665994870712144547107948443097266044683368663573286538022885338185204772321850677457612388864121928266592275901!
 1268193020814136767441199570729162451568368849776556240377675013527964
657
52912699994064264590723360968117179590481275675304934892135035005248459761515997769350617500689876784640915564335569456310918430281724484992663179675871450563330240528033251349534257327714474982002619062553711768237383718778390445296456306107861769899079473414749685369781727029436833448354410635829046002057031342476737144565674619927487500703151997287247112694864068815317654639055753610341341933920201915452646852051476778863757083963843822464906752068307060809042331122429056204762970419854892949477409533951556093882093398990428028581802510956081940171009049403800581354974428871517118222041600870688885587826349461211685833404258150845571104963596271178673501344597662891403432987178123181922362536101652470919421135775845953623780615223398251898046968703128772493236805162046766161083649880220941228800797556494848192245937383825361594793548695764001390563443054629046141403890503931705954930780964047392950259867945720388859009724116644503758910269600975838311970287045886020370759!
 2531521043870302250793419156430894440734349773433366059233689843318464578465367630890330858089276926459398288849969329438860554575266765899754832661818004265957967194669697836675286293124946368872885411169417144756977937399875162830276633644829585790945604549469403828974591118935898608360129203786837245639803040876768710229463226043983603615771138578971321171008425028605807743761475232446196495631701331784018276200346480828542835577345782658365298605393687842910777086023204461114373883530820978315907850027928795286477238689802709656029159466475634265989636711356448576742633357848263028215153596032127617927393306973722284468857450174300170702344567065642517574406255595832248696923894927953855306332605480451085434955989199124231370838143865344174481364808871804222086954343409153498032399376608745845675633572925733387909410588815145481966039634465691291999407087136367126348778447964048903976170000051570404364447787700586140338689811131016550370879484470049449709609074978012427!
 1472816468110544651569997344015883795298348651526452035556955699838070
99756604107004396280689581647691989945877051003736992438332931998422830627994375593273167568384946208924336670600557241948886879701520138345041402777189233125637303734571347879047069387455179462616916635575648226777136228640733488082297606953365848835368343521805718595640804841656755407714854359159324752091373140591051764148344876743634312737708684014299575420162646565690749254536965210190717576584264072462465730218098697945448210256653034996011952444901496408999690467081516610771750501609375056955092341956862381870008794970438235302045935609470721282515968272493597695343967086830694141535565129842295985496170802699326107718163932035451107848711005387248184335782514018615517327098375829985643093540523278426953813757573533042427503883775957671947992654598591441331619282191671323708120795364440207367788166232026117387002969036613678860248119721354577188379685424858325321332001164122316954446931801242724443306392801107495943651829414898721648335299394251860481386339113518690258!
 7911655256071151155543094139804066269830168826623299386667719121373667431927816479134179701568200479515592523738494947522162145165018797372728958655463757590709653114391464001987513632918362579345060282453660215050231012467776952103154380292006082438410856151491834852147048631823776559754899010769397179589043948421762777968638489316858832511205336656244056862865797901589251987002053746449676666607632567550196400297735614601099861179122620418162144120106839436597322008093699733678343374015819016144736701793868636888112270384290999029282614359383412520143679878864272910467559621478018996473752175664505013164314026359765434824335704609285816987819790297121613962417469538041583368327995608177566019487662355951834781778003822508812377722792985830151408648812309889439318583603477438147800505495166177867109059269463258005403823447193214405981112756991859218900318079240525583697187693485303586570468951055745653582001472526786433006786572546877040236593131748009358492942229555525802!
 9590826885299199278978361215898003356339787782753036572201354825154293
34101087563070343033737470693571130131047006184103848253138008214218776633692500890617247274237837229438617819812749936442732252883432980040295570965978406595017508808034740631548340553176342537816208617119685997912395130137207272098756702950590162880576602400337203012648209828710973611687205597849991300006393099567077791950046616351773510062198605361239888458475183031072353636367336593200197509718541359811669818220437560827256314416651697837148612066117405988421674252996773808642551436107557638941720678037671816567775147075320954138665781032241947804372850953189826841020371856846395585809049599008653276973446124548953377234539828610191683582250388076373299839674918759925866373422500411766940365847224755947980539923019013575613109788781464644668442344460940141958805819982941025506713541400515793579637721646824201026526244144073212136954855229806669081762440512635452570605542570870746801119797178080994236584043759773068189118269974401625247259480563231742467953591092103966031!
 6440178946849788026137666910836807399775686418859203875726417420112054025543217595624003827640563115527049400683512230783961711545655377773601275429638357379786714405623079705906921628801940387488731784130250181446222362067172878752116531693396432604191385686657641019410567604520995015971510808275795442371291161038465181283825430137141503364127683147806897171652753633038204386124420994270585840346820746314770654163506327218094351265210930900966370199510108090100752585376919633433782371547393305252513734172393837243552593616359208668985435010651707840853369604826821417526040554907375304196158776460493830909688844645735821433321114630347808304751502613156057972832990345450977636748167454883856944397493999278883878343240896335054362022372748267286690766145940874846583059875080008642909476147933832335393465710325839166700974479677323559821455275212365899208775982502290352563490881266011080102487234531145086766009355901806543021723066237211015153243817016022537206907455987209935!
 4740786433032437796597513493810960970057801144174602620630680122374260
18225078929813299745935899585422365627104423538963466644364226280404682436928161815332870882257554506310828030989423781184005245220595680597112949573799361051198275495988378953347531403201414113082550698300208546378992680595216919476789419751956337477657991642763594943167321130042884026857985622189132967160715553314803309729831359757026984314302593904408465444579222331158867688482760333053357620572962605611532690625049275696708190987621950769337573470434400974711068107148501779935931092253845093366674679433526538438572238077860879129674083931064894765141293312295242810442447833682729921626926809188608233936881099215130441807903804106318555456480377872636466281798346391949761474912300909856887238673509996829651454467783590671153383404022830892126463765511255751215153171567441989889677409711088223584501966146848963770840187234995862265205592216928110944654698086834788659286131431226239732253661658436802267521980514426541747841820919786072077439861594429495361235991204868700704!
 4322102487065325298237073032152485742350743189967007067275944535793378131514430715605397967824147880966803430404656488913068130193107452358213226238761344965536570807274185391041818612286292339157583892425704493207314215453982945219780198380129480916725661613084369189782391148759905933639826390891143012809347676979527460437860116977790544252699932531979538222459256218077993834005306508927441078221222865052827908424505406266411911648531014179309155143205422945250748211785154517217313380906218203941307160521282720868566835336816040409689953977632239206302839245789083984495167288670950988540750856113014309290336620728030811396605500611002706374466543173601714662326369494728880902124111253725425314943417096484513960164284817599499761141760635638657215798014798493113194988296823493476102351761437903211790504900388870956713180549871879145877174613949234019275928218447884470351332134339900452788655830437854940106333104522135141424821072449511084378851514481551170888737514069648615!
 5977219369472960363042739098556669956670930861657388162958527501854342
444
07316999659758003811107477179501013493423427979838691404869947392187689106878829259669049924111558012806232501231323113501219239374838348016829795616028797852209753390978589128972885314986757302468146035406928409807011715958287477271543652990131626454862739373300083093149662340479093579581755573249827470362032865572791145165737170306821287582213881614668728126388112850675016255794163041220518812122424561818165171698812655133687237767780064088479057324551086812426578287550341057955898054630610794981266924744119372964295137289312538731071661160049692759212302655771331858389348657097500666333013851964563319151670220599067907357902229875002855324849500360902298921295479618872784126913703410314720793611374300794441915628978083326701402927767095991668005327404990223235645405658714236812013593165738210540743833184550685966935316819786790196070061844985299512234040950955878573180426474585181523840217824743359853268528164766422700871148863947800722929925502068566805530021221324770647!
 2994387996261998617821929866644754376836253680544549583312203931815714416549039268654169777647944673501590660944256411288986097031929733094987580605494767440419405489004538552329436164240811765555791535799618536266582830442304022545005112704162194288450433066081649705178763552171777837696325477931854775169391544812281945029077423496063366371467788907818771873678319465310329523684199286355132445524945746479799977098995448256600686800780431055251028723326297529161262985876281455731336280648472185900416919925901941357500556992605504121642911622626788307430906116146921674822058953448926590766391020353144959539908934172806221036461408099430725469822648268687548067523636267546538817778454457646054418237164517257781912633669104782061769698822502538030056790760146562779119930130197154312086852272968453024114744345039179435885420957908523246373559116453120503957154416800664738206987882913240353349349883434689881629888954592302073797272590528531541209237006089211089595228050834187837!
 1102403879873199325650905107298533092055740571344000067859079445239543
85440519469512659660019682229457942241809495472397480757274774726935937416601985147853769775931283542751408263087228948421479367295002138238839029127680562332598064011724425765828761131203349755789118551555429438095349379363900493379548426214871557425764086055270852806082766709420797765524180025317486194551751370380842363521026027765319525193030579490444118174444446195353467306085990983085524251275096114804761362169945463820187921404439651964333473834842581769924780186585619216886469653711095838471153826456193226370814340616708041563388597601568743019925677116875429805896966900983319018615539804401610295391940982322413192446894333933691227004672715703581831108174742548999951383679614669428341443675064983632019725271073412169042488842309632702828156982273692798124689879736171104368028655791860654147187539105384792322931151627894038098811470435525755621835972702529476028627963767228145196876345098557542396228490639924026247815168241732545960765891524358578284826879840355242496!
 3540037981293990768773700374154505080245640653480100075525769226827121755029152947396494842291798608908882471231703021825304855386988770151120101350616483720119112447910101808406264304464090264577132345887396519199564184153665845902831181880495307383343333357402488198439041307774395214640149299517993331342819020080661383478645172767051944378303909121883889664719819101753792524260809791995254956990427013757251148720274768413513037302009046225804680180725081518210642412636612106237716455463189769367505645413994710177743026670422446140230992020549314331013968336515277900044291173934198780871554501519524946205057912874666904183098904508772774927865254892333225661095777119388176031103841182336249443305380581883507826577511907540025228020964140350755129153829307723979909739574036731981190168321112748049227872697066510411606809499578055600268088669350871745596323077239058325033406168635190254690166481045559531327376711452739579872836111158612962481200198033096359131438531838945500!
 7502819418519828398525919390482268311709101336638617862278646129545502
44699770856150067985476832324518058745909462817696562026839271750207935654354844727180623321907467807759552561055160146061532204647620372347390795479525251710977822134343428271852158461037860690910763913856600988415939678947162721591088862152921000532832702186682602389860763635301139974417503643476304807218219198726900847929059139898750716220999364475850342809341176809788740040146253748960747734402139025435180191561137719117481315063901024319303227863488363249523774024919833474830112238014883073381045959654351418034031387531207658010270753117726704674393625313536196151082680710608405213534409799840995099633497750510983262854068804292209523746766933461692276431861792454531303540938492284194814508666808556159382325639067762275657733442391453940495480178333530006577736648355618109225421732792084170222722527741408026480490796603631417972728568820507705956119468415852447422100318402440250628703935722898302660048954472060128572792642707117948879548512472355134937113444128454826637!
 3024841359095405646034913856719829668920563338337472775487786665191357292917821581869470885079408152066684294723969849999018189220894864140124963558266451033236636918290944690331973546916118877901291363638013199908382058145509073222204251065419354506378992846595945663538208757714325034441537880032718659258871777474187324509904755091738877721093889351360998279643811981287942752391740269147421025868708894049594604656219704046155607359409589229952026737410324380177168040685901166914760402361441516234317750214214381424355229038303522448817333771705342432996490159413242332109255900576163625947170354248631527565965189502664954538210765146948852954009595569209173542684880555642829588564008416438401935348513914589810233023813233137369701528115654021808269015410713962705041603129686711955247634414923532166039792048549212441716257387073180813941435434899522348669506338712882529121037916228969907065163678097052923459614893856643631075447518276463066195036452463299730896093443894424086!
 5300674501830348951433050849778357219263499923209471472957887750278708
75426811011945820480548591436890899955423830289907934219635477658445864704252931591798113202114718830623794516269279871286438197779671165968838226791018355502393427023647531978330124089004575725522803005716064017994308400560154595903306459201845672871920798680118537785124199443853837648734444699168890294726892622320863509874210811035489574258900739932589218386510455600843687524663652841526753466860984065953214455191342861951744302877592283877302901986902137692799807270723586540435496059266617782494023286741330801669608212378585377076172952346343943364979274106848420162877196197154009182872935206796820851531246719664301142368840301552176769458578668762457815436994897158685756935516865656890146802724407803994623803957548451430021461246623659852932430147757725930711401183158295279346244526158549935372993489516933879723071877239278983456371525090192702105848911262510749006297542086025520579297847397888264738189588475551447899514561434796192316640293413976283384775386879636903437!
 0582566749235129135938647594413056012012822667815812863944322805798459362828917116381698637707188374363594761485855529746402257013504163195414578048249047427454821588473145944576067822623857101024249446872852633903208115826929016891342189415529463845313240526000527072364521941810274299288547980552804981694866853984631950992155534905889561969434883857999584122759939211659412108495150162822592882805924455504097771478130980649671742499868692172042093400384875589249840736792267600713302524632270001730069712060584426327181542318910109202131368325712893915081041367329322495716720442683477345324765220715666504446672246020474306507494021242964079715282542191093377330442537445017718837120908650458343138959885324712220306293440195439934898990927893238026878182995673957261108551544350910763746995820208210160193314836191184032650289714111110911820734101183081712366055951256381704513813831151874246599836664818774642139415831613627784559473480711482421778989801321754570462391453183392750!
 1922889383238448298432034421092199855881991688123849621429782116486653
440
88662796669757362091701058677494099143469557667056792571562655104279008030376905987910036241985119516487181576190797092385098295057674461864320490079351112729341051370224244667625792331469970038834818319150695456797734564724365646275078121744847867519887330476172446208561010815584152356113729331206959034971888973393745799939893507730367395927657761142412387770293257592583205020310585469957677293696291718276440582431313779247824936733599932943427656395161171285705828443567073614866709703155571890952157512106319862909379081692022755893438016621228077350250242064899622769005394143166228981439910852780168595847454640894897811579310105800380377727430771499526211284048648351328119642806236488393915864614854876740952235815538920031909696173151195426533494286007853618100571683788463984698271056904561645460857307601987530991571904859198242238381275706668985361534917058436784070407784562847005460640005493373614737433403010869600262044778315987527738407745752096748671779124546045402244!
 0712718447356563868002751095870718217062462073959457525696198374244720879665909513883047553102311533964004398285789129695518488663880055729219863577837177243345340084789407442601654196062902517334930962483125458469501218493128953420552669552943840455435096564087108670775495422518477792379902934693038325110967093912813514050106637983769743283524089099421395329377260146299037839348954683374103321687870979101365276794420620558959998909863608325961049439944011204721458199658381214390345812681748101383422558893313930610880976812510175123523808276860187796735321899156753271626893894043012648336313603010616504491924156083520683784333476237374758585356931020379489508961157855104936694916323698093217051842775091275388854982249014826682656297099003798898008521621407543747576678865579877685766845261657499355941318522413347916152879405881713211477631693152260457428421648559240060787523933844216169679066533137660866592719856683106246074123292040444688325785847261243838476566558034890406!
 3170977919373768411342273521495465803289871159352716520295733211402365
24514784865633275826818286767162713793099464508358742935432837017636773403627688328871570657170361601283319945838672500437903556671078102906980058768810202341447918181055336209022252662717389839615463495473510698213059785445515321187298422506241347218589348173719795498541802227992790807124019883828329613602937481567995039777919429551897211178276256591496560749547749215315360731722046011028025556521972243777219386035374846535841811852368140289069545144366191509244630945268348916586169220080983765658545819201686587875190065977163137830697700218854507266348367479874838309710638002346489517038018563597774523769980156362949088343956852063101153332508799144207514179961536599733528573506131018510097273688877727613392899362899907078015474663558398559058079415913760808953738004156483824672715712472633713894487210007508781174384965941978415361918338544073859184940319604268476037108106596242645077354030498287128343164599505646987056467759607242334239388571606444639972901911496592479879!
 3646955165163773535616767652611732046680689032323623260686642535638403349290918674303678747233559778732655695191121272352693414272492900976326812077615595331410060739594999638371727496191201763117226659433672790708681634951275305175186379402294705208022433228590989365668368417305045478958065469074748957114961866762662799450843483956775018172164311842989268861934170226749275086599675240729298425599890062230894344122136116045248521010699212661955114039879916459135857138818164983331304518552699267096454166484055967894604787797586053144435700646888638052857945705996090048266423984830680902876258025636731145529567218608772276445420188129687882287809033226412143724128936735530616490883511818438926301187934807645804266680829850067704175693801542827411494414678388163912713812637972681956576742946059106279441089180729052191506593511489520512091967085876169683493609853935283216557646079259061006073457068699001378897103357338125146724001049399604874062442382325215762231899044038525441!
 9985984173340354816418895990080893632568217882487077485432954962265491
14889365375720993849313846824223953786620004574179282939421709138766592318175228559488468928518975024585285049731789095765158981133547777839640766373821825774381722347225332603976966069634634980592121343057189541535238620421935427876652811597586038080062673109355055219050029233605186333642128576633369267719575798938751499603385965777551468267112396614297560483145678846482617063131431459697857251234092089049098659957565149113797773236374139683170639432738662620072390210244651223189568972955784533517769366800883450291151276748404957928910729813912428269966402518105352068237621160243100998092490600420449033505790663380363394277109297643223780298557574463561768568897742509297337313105877758952113402539115623163434123822294315472647058872683324500897505437213940406204679627269747106457905674357600678714090550178892680006304735390177072556072057686634433061457318887817264341411653684248237426077178599997122573836028146596984775735034689736986581523409102118605151897184893451672851!
 2348942064873866626575396333662023351781621227602909522295859466624173439026005193065254280422632811997511800037756407615364404471380975729524013629192649377955742149546314815108198638989454417967364651088387127558494787114782800757526866370695388638901232940719525143202536600030100521737801618448099739097437413697781611552857495047530005277712435872495369412866970794526306482278567181085843982793951205069411667127817620311847551859338796587971174876570687883361994428383758476448205268668241607780132660538297516319303377920443888680282863285913491211571842387533860326083730191401136183024165129665161027365550005658295786642344066602808867004225072343101703502957696106349625086648814732509568008326647067672240390318106438246088297554456791162816127021160743719743550635704283836461043344963584801237785977447232332186488868723076119872477484192880582871864103161200276093111459535179334175768012450099008624276320754772622985826585845438585382105599280543228084251098079914214577!
 8145222789366433079806217064045463498421241567976438339164395553530692
25872261022345385643369899595984001614959398275580044018908414709736458264131170853441984380142518741429750442105379466127789011723263941645580195416991232786643424753209771510995916923302931655391038569665415235012910448208397342608315441611475326265428629788129401782588967794727919747861137044896775461862534121021264688925361503177453347197509452249587928595614865445688985282853894603155044303473433434780154644754602399332607203959413515288201893951447278778880397507006849463813110638453530195733953579927226752178976151242630828946173812636835569072991329742516539916064798891542269328877574676213969289056672591828368437764375762690626831644075425387093824757045815555707123164300617285590851688442808341939954664969028151516837048286781375687723833077575999319811529613067349979506921497862748083002974270135924468735010547741535119342383396241393899745034345974116337161685902300852190937371947856203176529344458676278752481741425085657822239019635075055343926278215884207304891!
 0097908874648170349447896256072469285562744829557148917466363048836062163959585155334703677151972809477715296440279271706051010395010449997396043977425872250591696954536752802594839384600980962421903282958182582884757621226148731859896509528808959618630630518218031215279448326648624274053893633458399449890859177540115452106646070297153663968315694059854212145269746906650489008847452627594090969144907267295675746685948149218349990372224132414917610487054560466649625562389399536217868624119618349218389797862781946551853074630785123550685861644675517444912883733861778436469154885916814543679723323687315662808178119824063951623138895821137359461882572133633002649173121358652005337306995999700698747368272417839714499819813179813837199284226763721824091602554001905798651280618653673866561198297019087337519623725888763246688089670591861683423842038106920272399987400024247797606384107608840553522184707526949204013976014576770606605999931583324455023825520620172797166221161020156471!
 8346976327719567606702787242842539617800388966547502284305169251955772
379
43415791842790089983493853835525756981138992593413679114491787356416385496156701599777002028070630886814471488525223849028298393912819208426627246482143698982922435551749163658833318853951594105219114608707055115918078847992292692132505313452361764035140120968285560755229226430071501476333800230143338771047191167924727359269754918805699168922829611829329972405789292143907457177435117435122147749490884296495878043923417690717937913305388914350589676964917947272083102122457491478294940566561384732455373049552624780221312947314035901133689597402736378493695046243397862648255823430676991929223529685576521943666546935274764059375049871271684222154914055010649144588419538473360752658934924096190515620326855579606146326381340492492273581558777947830152346285886677606730596068578240946856024925548400961393858085071068255654905431688861112307365295462180641107353893521318016349437702241158159885494478117165459553446598620241847624437875555628411663285021070915434110232392980287890724!
 6973615758341160075627374017261661441897386186756003115569035577206824314895796276265979160548138448023940767956543499959631142186007130000897738616338948393762795810035863845511616027165551734267571928968342562494157698951894387714227754450650499030466582469605507328717797423821129780989349375548680974148306494462298844395799895097453732889899004426050523667555382681596989209376132266650312257448348296236735786498081155615133423625645030831974527344340467821296406930576798788715921757207203008751997598170044453022691854110117262831394572415368842451388907083635408425011645929932492530498294132776665818470626064084109513143604737670084953026325672430800243884421652551690431682928831727553596209020636672384197244669741072362142638434729449255681455603209270630242151881090608161217014366417935650962696347011741392268014462768323697935828072291459884307440040132786965918908084464205141485953309761298746421372149386473148502046240889123644989272016038042811697047647847510652620!
 8959610773299648342860454603855785765448349988557492980958596274659330
12493600617399285559338483790434275504470519160862011020819818473917342413924364818381158919872614091997010054710322998459439678636756402940613257692507530684562602929698987444676354009359226043673098287008617821484911727071121134429944715823438138847296441484439743061191571974839934391963774869124446296804556046541683147253782146030939885732496677157473227977301259845752732130854730921193549791949835761685717001225284858512725611343215003451399912803602348021890659560983413607171016646526933289310610992718839805410519338284253597878050755998238771808025475902326531464200229096979111809931686110796033810703253036036758780184415954329084255528462851305417488293025408650978276253974145888786926298972270136873923600207262419877171040245155747985897930582583406629969546264131026072293146918129291274148028988868765948529241034846925003476851612264762661100147096631981580357104633923541850061432871673259941315380387347716762783865754517724462787674296069433212044283672641717471232!
 9730775924884584821393395017163698351836540802927176343202018146824052723196627246802942924023549562857125434652582110869599578494609048089455292032749210559744172577029670997199095158352350707766632081831481685080410869296636216504475780659238948168264130714191880749801570331815135746863589201052399469060002699236537471753441077628709626969994845282878250785508400637673213686183170132676059147863408091114930262710170118956607849810708603116528919187532264229118585378589592741664940939460352942146885348720753859279966650896077278992275343633189798124076315885683003333941731313944139478171016260090630532422339749793637343075424859179850587326788598931370415282553925557573148271049057087776500008301881550303171724284310952829586945491568336918095659260985198759010626826154336082348468491192456518916346194557091521206163451316176896110197532480564073427035187886447236622500755134436638391887862541144458425337185422531843015199504144497040632734821362799116420892931043057290115!
 5346871681339776418090635912987980589302594633615175412585885577277958
72632338308384699947601466655685602728108931793307385766699949389206157355692714525397577471661598441009385311007058360618140017956713065777087131349529664203815226103028814608167588685903434740397634437194146751710651395290907701108226153424273350255075876411222736878548980375712944796267141329005372836393433637395976542466991518051079437612615946573282524248872102334553319349063097359180268782254452389776358422417459122076513465346640963060006697959145957460087726392980880829667092269599851417590101395553623864833118975767103242370403417590805567141518007211693506160594757754509998664770946819304717080179461712124303594370308846183577668282939518244115466542773344527821449923358441733877258283581602019428726806432494315118035209721109263095086144533069914463406314481252531895381413434262765668038339115829033380682489269449713668963510735026336681458522901686712558370242675497006570323982096871992142287298596598678210116706106484457133486603058453033776776467429316382856045!
 5737073296938225682221659074593105135710864793951766407915252414201548674232199788341504527939773434977482805048569679444469898815311609548671619488096916091746855805853498414834295097211928693269720674816933953123949448787045690211768937751451796311237338858533902129536629450352329836020251901383719822931605210072177523443286235383385539213641320692219727344125444432238326351977442692963596689575759909542489262547062953613148317961969885123199725195350139584736108097128075160860200650988746059602156122213800745009867315581042103819394454320700585687980163074536529462308513408177497924609253685883538893144365305603069950734523141582050445173374737983996140516338591241933141153929009101908226272323582500775867018858937191099822042968708821827908069985755435601217151274963162053042751925866535092875019339114561599601705290841198500307661186357743126325297788391773548986668515327060342312250520708231116791518065747862824551317643344890611287182824541945899606325342122098986196!
 1594051643025486134582789637327886653135162717919943077359038494455647
43968189859212636966695550216164578238386231460821560840569910889091125071657101695221118711074090283048288651311990810556973318982636722579142421492483270470974944417307034819824032208301111954994726912431121074427484255711688658731129181419675886902792810757071883536480838056718834456657558163653956166659756904971701016724077114424197229663859405971948766758052860218908836506303753595696762491880641916208128033452046598470096569946985643222827718119096916714007812001565994263495816310074940248872127494850674370354657880125269332394936789624779044141132082632833188830801158278618151157324668802196477518376040349031318283109673941623767105228506816039417170863254644594791748926466204088674791910104851589514594105390454587403120158269311261589149337449179694986657374501890685066758607069329503583672693294138144347403657157252859201685555615945656814488826907480444200094922335727418941745877534321292977707670297617216885451173241499116723170362273377862135277071945172333028392!
 4118628918226480450971155958538473047276419394483455752601030517480673967754183972879631599348914266726090024607354774753164483804998277456115910323857131815453037184831498305303993025518680408567745030783538755337946774744623961610200192976295983094287077290536058787038783356653383586437487347511450409718415019328917104631029653718515485092300675630633496228147800506713350763567351934168019026587276403242238463409772184642376689794197363194317307515672077779961126821551155986642438534510079118232205393885791230255499501796348444655331213361986744809636959447439331008725715145311227915461886281405642206991298346937321436953774842812734417585326923171515323422464107963149938274147470111754691569854633701373600504056307233443185471145055279989125672905680267961149021105434495467014918276609651719195159009120257568077869348867387855600870000572459615259915067543627441286739234147119608081665781577517598176954942916267951992978824429710680707407094389127682906891744367169649327!
 4065922516071890205271590069272242608690941463559638197640207844507420
307
49337782898403751213910677245439067985323286490450607253086899218720166021992864592619111429492479411133450563170860161369404195267638657506221341577834291770128570304308368977294244302141606556072246237046887329398354547776715745401434915470925213805297416811944280779605341985713152165492652358571431834241651305518149066894724260323985160083639313657049796663939318502989437605589528004646433865096177100777303365469681294689829825684477528677086316745196404437433713833685818530141928404332234553870305496045802988836617842468136426283236031654115452028103829231063739896292600605915144199892481285352193425587523000794629326305823278473059801257360425724351898615053454934140017961389126856354190036762875490442229982087929075214637691476423904980620517734518398688408246668571106658331047187666320398616986426591111078118602098472433658909058840661617403569703793874056667319762977762601176537161035399445094991696496757661197426526483086162351033201440765017539969892731255455181793!
 0233340063444474754136953665430283100249089815577267448762501278233729053534973852689600316201332315506200446820788287623102938458221218314630367987435959011388809657206128291352938612889444041261378624952344494750559652233202529445117821995921345068500537682885418226892575503837922702159723833943880235629964522861186515970833735484775830047936779516729666501546007337485794209062871453619798952164451527812389600854930447499972352732616645955639423782736846716354978271192376414687355867923238386601196850275648532190712611959455080715577788031667387280929301178271773218414331646418961545590594902031041048981040218103584395353278334600308946589098484224188769185926620608748319125960166448143348791054497418833617848854674504116160725379197924216367367902962144498689659993650741029620184015038205411696769994818204223539698613380582717682177940352696422101154568493169393879533675412869026151175166238713729858073267619397222252745475386697075267345028948573276852576205417232989067!
 6078896130927973251609467315531961693986754136004985624618818375841192
77943061961973952760872136876402786739320901954773253195062775314149744932851341063655472321780916243421304526589576815170376755973261729472026801986522883773390939889054858619431976994459037676565022082445868166800946038426651108786744118977562708447953066904961557669572429511376770522273083565170473876852972594336963035387973164376149196606842711615487479565440064876288516091917018396842525210594478980515269282971999243358057763532814714076603074514789062256959067318379148375575410116393277622483942370696500849614299217701924945288047689687572395664566133592824132813196650701217012849109331866161484308134662770588123942627767572834528890953756759235478415335698713035860543242059991342044079125439528116523911804655594777129975916709944026965958961768478116455608496787780501943193004274449912912473646448116795211541539571604074904503591825810582697691230232979084852900753206032959797014118873349429855918050778753994926433762370074526361341834549978591059620821837426259697073!
 2780302579549936543883632858622064558183405187115887532425032800479666658449887736429285861616231226881648795379600758546540346497015325904886471014630219449754795014759599112725757492329548813436030812758683636277533981907109164089213990282149374787403767966238961552439952287006486306631670863732481104478983863938642945196729573546981328522553689580059390889711630442801689851184963401231925841557299039694324039695542275688532398683875979093259713472782706566779567993985631507936814758352833804013809579730061782073323165988811171176998342749932488872746925053690448622963855702607900008762285201345998939386548358405007215340592234555042657523336912262334437297818983847796906145480180914058830840913510196028158888208177459261286028712675637366499743218598018933773670244011280105823474015976357432171921035303915442366438168845423016966164116537415612926550795067188034020803001317811454538169243377201327075030620442125687823916175103101391461221203616302795753226170875612187203!
 4756416440187536300849545799093589770075111026401300274034180394778527
27971506948758108440184101469566222892963122839700732125182052072210888982615748545689763759066936009737097228474863061018793867709007748249433383446891298467428901030022729697524908198132409586581315363311000313163911448306305741937346374530174973944668554240570846769150007887122252043702124879644663953445599786371919052031940935151850673628503929189234716837040221539590666694950343606733986620725715882293836994579761629575254494347463105476645439400317505741379565057569696638479154269397577575425728320893041733747990573724844664177122420632724309929229866241232102997918625414934184526985585371311154273627549770129427108157425049052542146405413073808529813504540537878672653824672500297060287154864361298423258810613728466262987063843131590330643370172701204998867998340465205250317227528157324546648739704662196197616316675383077787527660805956263159901342766783336040255446661966507411512941370992915155345631308680740528798332412334707007702978419179414989515504169029235093381!
 5687982127507603694717745788543866170896252174143722458442783288356295439724635902858437785225880350790786961034977064534822936107306248495618243001958417068061257824839727632195149113740392268309139524267831948684328365557465554902549555456801354041147896739652611999000342958507613553766341027233576501780006227993239727844578772861559413981220822708967770053972887030900335759299657497555998133190384284902706854871454399780424708290186514519551744273217620339432437766983042218412131965391897205801082288845069287794043091404015491593776631491777440429729188361750209766226825505570598594609714157359229608955181708116953006294723444107248234364326492196157980012306369063184377534036356648116908709885159383007134423489523500217643658089894282961866884287604602542942396033123678876114302086369867339005707172119060739946704483455674780804898975254878084907426061079035120133065941865848066590175207866335242118269698898488156080905355617606509178955389140990882212786083516056284004!
 6975663704240486131897819352006126992376968520804955268241338695372684
15332762701303333284537686578921634935302099250176482387416255646979226555024918860128448217874349834793683859619496705243562385805574203163234730620240009667481679785637991924086526279701037186272944954083523767886405461469317250175390704288996350298620796220622966218257656402293932160893689699280289848782357824764157779183848662568534203410862154043762152302620324983158719169391442331974204826666973469966956553679321794532353334352865447983939623514602468506659884909647413345457337816310943598413766442613535989971784352647220566029208938804865142665576390982041676344857063256136712572905206107002992638846075816405867301079812818992505265071826211927309193755033445285705832716624051600929264709957097203361805626145392167085335199500381518903069491609517023620096681774235977508502998632801738267606456415114736759279364587464643501703422345742781868243015828833128245754509960888416512058976964378102886417606514676429096056117670167943208302816835267705185894357439961181980662!
 9763250485047421188832846608865490017184367251152455931635189437968945893490318809036367976915640318867662616162329118234713879007796631355092013775944040641925718915077237198061625591352663249303196015974478308421345690692162192592499874496710297734501683792700788316120926953171482258161666471486873340248124480151432968909319274725114441571061552806024251671826511885110330867566655499765700440157781215620875151196367208865010137509932048278884537804671117682107297046148562250542293302755149506770273232814577568860133020652349642554777089402579899881363595990814809543092237114333284340176676141136078875010048501594337368501497857546953031253572389761981389749423532592440261251367273861272461204983603625568677594381796576752895760104313639688144852974339392086150325366339328311094024299549072900718024609298689502851341667247642777653072745595689825015813267825750398968302385105445938549123662434676564775311193271030214078953415519264591201098667506370145901480851521378462451!
 0656634474893930610079538899115838728919376386772566783111206237457373
894
39889336259174771500946796120300822198607526242101710627280310804477327733816524080311838775354021222030832912764667576559760278505653481168148196405396186119129194998041856180423678369457514541118839543302494256484779879834963132818269718583231686011918807195389978787345447930590851310105039675935208343836203414781901411871386847637257853538845168324909883167438556076468670877353756851790566761453686651522935221479475638593273923019012195326051583954484742355932829343180492167144670154838674857299706778066555166187035020389943943428276457878593861037505520454344656093397937796850591876169370359454450612793865151058659370402949538746752458084494967225450048797846055978445836218212751745511471147399027247225899728376828435043134348453808517923912590191260375326975458997311946149534230429420224984941172600170292526527281194659675950976439959323631901906073009579899633395795984777942962438696428131105240590914894278886594065629368855958436270626823760294987018119730465294449302!
 3781630855988191425901085192295853100844009336009803562839381837518138393444638765199024167543637179343761198227322303054908268944031529646912183378624588610013808705211064775764461170804100581200307599208860742351943156187981050898574684941702137895795097271776994762279616559763943634651647721098475277670769662417079607248949639146064624868155199459410634624737671690255246570957431643522494577975236108976355424845863688183492993531126112752045606259437884711302970940757465687892229803854007715591336909098511292339777412063274766196917751213200600805968586947960848795368186356145524567102050714663264118712499532889542017861051061469408243409426088094589479483250895333676686941723643229078235135187247598673944360064841999384583135598586239899954655073680465481902842758946970681717740741650492449747570892173206317144965596178785069008143607535426153812053224172852274678395738441475365520237710751429990976541134738820217139500181766296101499512448998665670195269356263815408637!
 7336440095851016919356955780401909860440678730103583415083768384050246
14048923672079406435469738046275031259612952046327689366714764661810074197901201818141263153583383590420685399056456631836034943676019499825709027823502999300664571109410689888187570370919274790786572603209507174306625603846595207034589943337862434333616055900554311977654059229837368559386816764924004837197276212461100435820335136600202443282643363726159075309781045650434185603499283939074417480751347331278979387905947796448263939369184283250771976424052234684712112502780253961288224573607230543013058206081148614040634015232009382824392649587705504293256020691448989654233862311577846794095648952619851725173491071195181384994412263112291280297406979003204055069110059209004208901410964061548153719499151273376697771751111372176748453293420603518334782696629805145261339665156171062487037210259744703486962635875893657541234969633115064405985695520138678348008398782934237247177771229923782333368787658712299977059624645719764439551932361500735694735529643551786002523307354500799114!
 9691985522934219058078159465851536116336649430078833201981972131820236013153642881655869932624011631946352836583440961973138268516882617426642856643659712559933618121983871704979628746515040199118810098112927262436274634557679968194421927937024057418912835450168389134113675486842025314991623649372339546214900892168985401589048581509975886647304235686891069531504854137075653022932945575739436700694102691399795507147704648509094990463537058046379990846438494735487722600278522042658905448693281255496614486613590091732999297190169572189345726402699115526900513244283534236240504117541410381231745813661077757206701706507716150370983818755427392904232850968854434575831638267944922039282298937835144763538339646891450920579855912988500724100700207354195424598018479535372177432084230748601035853697891719418335821715017444520297667070258328324871006635288142935637744302492480298063368141761501439251225954942218569672154328243785010976444654432896431423667069827426643691255225924551063!
 4742416696675721747221928755100365510616043588689746484864526914665147
14176625216368715548414641349950410534375960213076739757533117697300145071285367466548949120684090251585558759931622867410134840976467025493614792154392017972563002255002440651424443815670027873683827845852658777777736314225598937731392327240908780276022956289376060625743534875676482374171326889371196984434351806374897687904412046293096060502540832030637353948878632487840357007074162747763166138306337034363834883001191704911947660630161166691731675214945302431182616596801954682375425359200309102243848262541265173242273978545485865088084904422172881417419752106526686569724879009523087374632605621332980275108458113344644614561397266810689245966073004332516405010595249607897981087796116294237156800153250042007941151638406760964890243661806227695664565023021524094255413124508492871883746671284292381419431706593668150044597314317351673893444166334156571746501190524306630995927140962246642626054441062297269008382952829410558330665066593398086438337763329715271891223603975658739031!
 7804493871506916901458693358220869677279875914098024264196406087891909067686214596757838218144687889412092352407166756415012678881474996918752171623980254824134115166291038720378893307477207628757924201534154867121593393770994409483829792825425522626855029858280680453625989789944722105496319736243805841380194834748521434544778349037849571778549717062882603995288111680091870453837100578491142375691473690079645235220340506707564236982393842594117651215793728828265269246604296411896333746768136642900616709046659822614803771502787433175705091191811367605704198129005496152022217852080289368104191761623605535648528433914993343943312838384367044924980357616529656088971029361122991306196342606782809099118381015802679274991309237798457160008792966567646530336162407421971836323218756610964144248808564059898900070807202359935123254996386222365170497632637816673247102572075433204015125567304855787094863759668943704605040436040062570702017339747349503701729964952820310559885089264009443!
 0208316696586220067751699569541142691394138822076068323290813830014186
38560040360831480242008583755165868277149516989320516350848644954119381654722923065053859763716768003344243380656364708933966462959879748612942418374939428302646707124591640057541652164652595638896639988797414404393628981549867253900035074971024398836876827221203781104224994169711345948431405838818830106322906810900499319326387563693791918119612009236639409248486090975040020392139220291406782235379278993810405702146076457864758553954451547139976090480311795468591470682842297122216125963769455945700628506039733893425297461537073493386157562938363564761784749422879051269838713075301784229115169904689936347338179432191665002532299039211673966455468014387554124524780726135487257264363941281531914297560241083164896129659216592943405281620194430489712896267445123717836910587655903305646682906390573762858015707543152118638071394567478650714407262782333491851568721584664084755086667714300089226201425841460825721451594779747938340729620064035530342812438621511687422222073648397498005!
 7320187991358449092854860062990954217690363045963022024118632901868242726745025311734133916494662632836165742609961137674653236498039976402107032732406944756484146790514695826966914134421745314757831830656828922903970989517768673207357076105850586354826944607017104598965046868574125923192118282402186310328145030267528934181413707102039695100255374302514727829904110585551309514496660843659161567241607094022325206697256744331231486252500488989370200867099587443726633042528484089167513539432272198643017478575943866611781286302670397390484191883053948943575850346770381865087995576821508090999938589839186969726400958782407821200753034264051743520818316633412586013922804393200215373298351118575921669186397533170317528426407296612524060951796341518777593802619157070204218845126908307063997955620634983544927436176230922768067784319563742982350771607349370316866671841269771195830963752577935545250439807993649102665651015272490163644142919576103204389402185844096784283963744204502205!
 8268910598430935773273076444643895048661541645417869759744283528317192
033
51635980510383935628105399063209878005942644109641213717634815932946211447806381470506294125490329722150352153617579951256011312848255635228440884567006647261597722809540080291197871246973604752019031200910557310502316908708822826512891801557685835527768630827478343190163324624070738841515874562205760306841605169847263159452876257440701006510298298318749242715116613087001039211953677534026330677803824285061266315135766910798796317528542268590810226233679317456107810186671884099371186559998677503674586957135262035162297992143817154569122396973728106883706767332475135088362539900451785957220946194698051715735716926263917832216922435667576085276883204953329268347633046359905285415902603884441156138037824027717499154232739152447352752104328580473797260394102834278718631895170608987989362814492516917287277913911094754396110059131329564692248390686578841336935398554263309790981969785918717470834294470379931223748701808966637175752271649365710338210291661594801344872215165565663266!
 5167303437511712783436229428756352044759788846316236540159209712707273193669004609991781175461275321401891460806793628461663685326522342391684931790120365236287688010906183362844542515329658329490439819849250633388902083693646293919732275857608272662216173042835371335017303278920531503047408796040740119482433672562784181316934134416391330113997006427624669719671222403659462707174584873334211446100170511452538123166715095344669822118388474409829139916901947609222908071149536749586557980375103862055557177889395622024372955509020700220068726211791748115011587402874111277958201943673752737373465539141395220189754960470629321748067827434639241646318610883793494500026812910631032130576583242556214015526927605564597614692536875520615990241930769625838879431278870823342431274531693283756975583238846756915594435547654928469206163292152833690272409100067563527584549955598213922643120808080369088861595804799422751538570487939767081006587051850519220465582572306460535366947410098402269!
 1961632696262707109952573685027299409311684914345584217935903688050340
74065925560460837209325509614188668515904084833680490946381224197172905911677835506063912393112860712197314135608689195578772110044025402900349600080456429726401598319151015516208491681582083733998709988016116980463426714993406181949167489484345447122470004300218254956059314490557973897314900527343321090701805976478726325893882707198831804581394155145890038259915896171852386168192576624637925576634914937330659278330928796506958289537976089198874646994311993135072482506544718764733862489154230712151614505502908572049488596095662322321183555147334065572702806196995134491331789347052981390544589611126421846674635939283008157733961805138321629979727251915586600703617359167716049538710247278602008130787361197535873980456714886235579157062482793361787503930711784295744816945522178066012029059738294275859909239919554261457664677359833692554470412611789774050819840531621481271523488186083976897550961096588880479167274728497908498076722793512302556347910841363550573254957745315078121!
 9259589830161405573077879975721529698533274826352194441444113224030384136527475734855636518599297146460052944816307253280238171039450240527903335059935565882068795602990995480473067280776977677835736458965928719641163818838213309305349486340220378000435017576235606683477357578877517827733305117118069291536952287623511808484277609210328521601318523571176199122044234330724609091633293677708158728111063918481729536736314804659769458990417274778947048101193251514795066470628596299694272560606924236191067158919159364884476672022962479011040988162442695093577699456769483293904958050099765549985058147411952355611035851141248498791879012168277771580396589644523571367196759070478917652243668773880656194392761934635932140683635717472529029071452972158288301593148216188356264122662131550812532340773878236405739990419587242747281527010413383356114367544495435785510877434324402996462520192422430571011566610494932898992835660290231532260290320449540262632546302481384894995262565881598344!
 3526316027918786758144135142174512567235126005446302565250974263430953
31039920360296736354549502086572883732361367409798394343483296211434103989694615028113140873907270931852982060593621004760764793314279254390954704374593365920031099010705432894198908548031281944538633431018815533483505251086729709894742716855858675989678162276169351173523151889789701337408889120131513198706191151278297117586995031057138756290763902012438771977415018994736831432698113223342561415379191276702569445830771721757572029736950351143255867378744762616642666395419813927606931643028259790767029920263593220428392948092206318753297073084643618264651687778827965603754293766023481333787058653634176601047867953813598441055360562563000486921383854180201385261088720096494082395309695846541969207985228044205662891317084933504632531659911983379482115052155732651015846077827168037113870673893824907860867506136653322505375610129696051758891283852830744721731282278451460629876357657748788064139958768529579774826073023349182069823549168215600866560616132895774116889699362461104222!
 7346762499772829151965687072660262092891577364369972580308414307179675526651389573376831301539448538539270885335171326195787180474613623376816380628013901054938079628100218694392448818547538428478903909398382864822299179685152197253544483786257775834250661252575892268921683742941288071692301850227573081599259138014430044199137221880609459718050179994663613644865875614651296178665973517253302305019924320843209433319956993950299604099324874425190397738257835195179217665494344576701701441705535304138269316411966110267297551110395735264887504620437047580955378072780911423868215066888100703987464775030023596829329372681963719347947605252720861870379505410818378197174672470760868564135084174378752615884500720273707142315834075339460894495317013409256415445268528363372561356963079779476414544050952861182470697299657677336749968678046036539290882880164478817724738231403721330251086531086510817800862089632666354791939426091516417034064726191287443730362841704619360567234349222295747!
 8935608216203673858952851522700901543643785005724417904046360758840064
91899287118985838648037862770305126718735196435942238250963253200931364847510775346367343778504975342209720110751901976036197263064061045476723151436177920225395411553809123559301263751078666611527986358201892735119038493560861067715019914173929045780703199733664302486808836267249440397308413916715944185246314241073311209505694657068045252106214316603884227023142664051010648268215445691573184963572606393770957212480604811934826538101710293416699859005152581335114986171234041543276906551692954846367310099871303522414825624365980945700719568957124451525809814998970470184923315392935024710266951035896173499618883626892449829528006622101204837591891366416682795182269580685427126006802995522567983469070982648818326371320827310012685856840079142248271484323170019022561380229182549993527119278225774202444947848683275361889941284548505939519381402762123746211679943031727301610164657867864312341267696886817545415772794971759512546982552372004514681203042067101668396095711222309905943!
 2530337806905682284391565228263007933336499017881527884284750469607809544975876873923624378140881448722841153330558332426859488976284088286009928805778118809935326405677341526464012606963038310792279673445706365564747402755310490841018785048539901225869539586291510780316191532853385840547207472660909046229093017519884463891578159431655958170370953938949555264205487194287778809445576024552232852141010843373669281023385137984999064437772490800353924192101800789801774730368055408534913316790466023098957109320862486325662215335071504696179331622438062775331744266211351972408845252258080649982138558319892016151308811705200916127466181295472936125393028207226952415825636974731869179955927938883120881174397850549232325496589703919277447289400715455273811650079033587691082923068453418459144753747483546599716249775693328059563239843084108929532133883948885692397062126378586139343768910106752360281271306280469420478006259421222854789428573913574137058635891352545254761518548065113860!
 0833511429687591363363312579914509529391638892536171178148174971273118
016
22834607270678416347223743808153808478868555144702877899923841334102739718061321331963138836626877534820632318061908720342183116386999472610142645591018770471531402150238052470495659476895845520444427202261282837020288671018076429002248662709357243761909393403490737823766970321969132080360877637942186922676872286559909156669910085487930345874471405444953021622671627017919335415619948050185353600208263389931112470395864062639955732055635422078505531896851868344474607926701567878412306435644516242754274409157946331300353760282859370778930716524941088948248910996758150059248292840905194842360036637608252385782784429537206187198476293618692943258292889230801629875819778546998651038138329910125800102341382049994050049626219016597058089566664868527466835599800799952033221837139494969225298147595487878607351506567394916971598817248820457497386049090110825086932490745740930791589261119706148288038753646595170034923669152425318192543461960627652832868879609663371322935430223703143550!
 4874734927923989224320640101587876995027183546484366387472770840295551598987195397876714537323252791232092849203427230229269389615239052375337453559205151100941963561537893554425292681523942453971042850928958912782262154422966266824380994270494865330869576179104751777575727947412389941938922327695386708427373070034195342245952660705963909940151741838030153049269516440796565584020009737414689758977438279352209462758343908946183371211585094567951728191901354676063684382128830366463115859213135846224744694568540889752747951627055389627761823737549158453993994148573422577398336745392519357150473473900673328408344748860595590297941363751388495677192130580859685309483320884318615051288383971443694546747616450204511547371188175429646884404142664860020448263030004717547150193237969345780747424298206583908718473230270598734354981173210043240813796421858779313249663283572838334820442481842121218648343554780941683794168092721397734489139406633299192350411824718587548048234829026913136!
 5102240854994428456015223709072113278491104503212665632670471365398294
69499355328112888781044434052149057458529514562468618780233831526019847118450278810462023704478049758154151011405836175623544468814541347536197592083327273319732646019739229798342566440769719522462931462962566645219348668662905366772680430798600360932573913446666975116527161903944396701961982503206532204878270769796254295220975827241419529339004617849223951480628734350493786901917866777924878777124421653792051596926202660864871576702070488489438673138003782677613134574923588334429573173470399333062723775055499105881014900205620032953857839398264325701180410263360599748212289934401173459115662011161069428953877280532923893481397558621381628309467454340941098481180049953790972513749288968406366207493428965053520923861905245654829195371036268998574344084931027793062843150736847230609246244502086304424189735367302095458772436896223953453636130002754298813762499777294087070058107017971715012288914915906147397086937742587911986008012512982801175314313446033653338213563034294607943!
 9221096208742940978579212226605427403108939386482609369352259975028612618464589200179373211851180107050695972859992295940809459120237836953176534953841421036972296594350885350215883434648412292259576528691462312608121412033520959291860981665427328242886207683206112207112762314069241236208501654218091792377537389444595569559537973698268133055585750367266631955720765456754754020488650618089002170829077174906116825126515268355160949929107747275490756726087862506778872423903822620695395874211393504907216922070640059763950168615429405925120088141931911509155416733394631250765779331657479334036827271183273434098168660625559013286482339149809837725123159956848931428352495775968848083128619685816833304574748280718435814901463384832889696578007307403333039110888006955003929034379899367478455845482692656149384770486712407627151276041544676340576992799692104564345870256903447378581433765605195992859251181698186708905244221900961049817541165494927436402048707428744447167732263373703586!
 0113025051477320629041758798563790073418001880913522307862488328958771
81416375264414438285593162722574201274411997801939648426461562587233377852255343756636966862235603504381194551207420921877531367317799036577442257263983632791362091973942021138142760705047631457180349880558806347879616715623820982764082585427648471087018608219522472147875795031752699771134130712446320251685896083679242369012317523220154730267426075750671339915037217213682197755630841370244062819388976621431599422701866809031160838623897676090335248497437305605525344671238228793252202080649687848003088661659325042129382802532755163023619258029189391009834055269530790048660019199223105450057357213428231951680162535602845952597598029887867705062822661448974593747011758077797025643625333269627538298620219657705409066154722632783077587151378243972218459732812123877921883951984591335948055353018141959951856382506644741197930682725689944789235781315853627131836263490923191993568884884474317747308042827773081972060932006962383077176004773015253233236253046048088202283425051803506723!
 4424605245601088637236101579841425259216721401119544187076186519848883467718660770593265845076764269533772557469965317863132080325625755378516438250145437502753139345878443301995657647372322651461258995298442742195944064375550450526489349266498581448298499774298395576660299375228143505261784013589507355067165424114299200404389115642168524989250177607151484269756229207356944689189993117285140772179715140488062061316739099353928561262555668914810107372462798775582389252642337529283979799345644212631238873023276165627564550359606093095391503397727878556031424641283357996514048939590188782249162488901547234288572131335448755048546428780354130019724607585431570413640290952815560560623304771146356797934995435682838011716293290885306880528112383327922760423862552028737882564988508962423010324300183676434546617577725665591388965291873922104363042235476000968911817984555633578762656512683611060716505832768332504907557947421406498532748843760387378395157832805184814712412207639145703!
 9555854624795977695772725039890435386997221274117867336523846099684899
21852785043216060647406696983848075354431225036253565807672920818679663940909562569118657642400829223225244768173541319543469827992371736305954249599371100971129153436509095937410523080607596253870490948574962429294465422156150312150992031749399779687554919658712418663995300756750131981794165117664678986700752016912425541318665510074697423737903249688087793950196343484697035906753966819794002835885655129003752871900928053017521653426075622953787212733296819611072510141178125438002619811606030760716039656565404431188035634653296504881147789067822035227850367394907230521311661509642861586812538057109574548044119542573991185343782430762043820189740281098859966206522738106505050331849615414614306254171976919872303766108342662979019936640266442519687014367886024453063207828078775260386190842858959560731794462237734888439069751335992627195007545846700592387376354774876430178461389098028676879762683511727273451201072236178141452819031567167355555675244556630434672154399783162739997!
 6890879832678731162625688268760764819075302116601389699873288342858216330000263985514969075449058887120740708054267662787118545678044791648434879505170413016071407394088334054007262744110011263445671936549590857786786763179216495859833111144606379095187536816713354674333398761510327448111754394170010650825396362939970002040191869691583794264454812461372621285998966622518824886125840829446546601211637369160222020166095251874852965420240568362637507027751283941320583085201345915943590109634797774117390887163891275545951294348854351716873520732307573646628257838472689972232092461149062003661482740600519197951335527723399315967665212759266012246990640009493626112302933077659363383451165916136838696103505928183555910953965483414588621828546239639037127592193344016852714034503252894598354093935654245778208843319712984126147350507357859123707995493046394818016018535095961874676266203129280416331644475239180554928950434041518085565267428154916759717213513162191044737983437928551319!
 2320298943198324107510712742550607988166802156173129595826411579644461
877
16078614055859682334167613168317243654073079322102439480496278897987259321148304934608295460884556992567856696667110967074195389602223370881865422288940020115052977625332371785428676859867182688371742715491932169259499795366078404944375856218751886393801388499025352485915112724481448943612860255413238179686401903566912289181397203367500992116475526361122027453395974892703030195097478853669706929107872996052636195793733962110255679591141223282900231402052058784609948827521953279414964497206030550867327858498597694599678120363454005189840230030002682747335964858228009584500047085006266790320962528479260493565088030133626926465072065990342615365959423363626490569339853762513638852079973991110313199444860230837904731872116804533655257801733685766130125125515698476970201856433945375021969958028651338380993758488078701356971845830426467605261987769621881347259134679321973967159563309094255525926137252207284334214770072154238860133720065950251887861721639743948124604093386304841931!
 4922012881879743961655947411780695153833995491005377615956519582139067051689732587793337942998996296107513994934012759628324966291411654282914878067666295302616520265873560639676926902206456956283581799053878437623048832650854232059514708834141001146546640722416275087960850136111499951977389780201864718118533029034643371886990039413938131397611496649429910356589426823443310127844438304725009112929994853961026566957299504472111373611589323134869782716382360143998289891706208143765792346711894402771506974499004954855756417346821779214472866639057216259404074827619882274211613577310339562104139860253280325048463051175781836978109484663188227691863245868471608918576270532113879228828330967520874813024187241761496219175409143384550253249519063274479268493139287875568617338589818940903893349227442201501819953030047768611670142222185514717454955628455854105202789018325282359385972543025127501383639421343742193414506148542414564380782983163501840766223929643749151535683134626303618!
 8964717019881503829758567113150860681596472239667853786531749812057234
19312492100958817805958761405915589620314662742120702343485448653019042418538045445748774902529847270003065339876264584886166298792076643299390892959564037315288950602716773533638914526853266870159449024948891267018641617620069788662437496717634425652227362913653391783545563166723602906499286781221817830273529334747512550497214277314050534615337269233927119159249985202774617806500767269131957902224754170393555507700178220460091228899463453999902132741118431024470021624538863976905392715245307437205127549650384417407108528655428195165745414566819188669680511741998039898251211296565034689546155628299638027601027954084135938317537923695619427802913762536721201257977971196481712616295970254285834584707684836742548664228946355225366178197739338487026472358062948482649869006048908475718635411734536390053737521614260921922804903472514233367113714790654459705337823146423089271745426632159065669826745046346122127206653467903352961461769651818590272938504398096468664096443549557676976!
 7431695752175896274038050822187960310120345748144673937036057978781476312885476963498118073292826415403872960575096821278976657421282710691905982259399126073513691837581938124635462202139455651884038382777382890729615818331522167128720892842488694371903121909603063912256577148687296514612995484901457680974612209075212311997014629519632070915997466309087711925332454941737198035773232878172950364754263702960662849792404619215828288292995440485420743445190426775690860586748076573344983497584530602523936561641257767430818885467648263876003402808363808551181030741869809365813309164460886094778645265652671465427289189364835164474533052329614554421786858419026777431718905895441470345289154196077691660126018754890977312927617489060920614480032666339540272349067042573134521956156246897261451472645931357082469968575034957061546093410915958380683447629050845270120790710759959470404760443118762498486077695482104063456730360954152826968288327288933532954912173106865874629077014522362807!
 3971400644560545765815648820537768567011228905081713862287653527164079
47051438722694002837443886691326455856273209574814903588110640847821007456288057663494644873797086968565805780882688761808599482278978867333057790856574817935977618416946589075515060363584190991646353622394774348725074181360250156554598507849738844536954543989107720678799986947491860903003578984527884648828751729318815588789347371547955215600105009020635182629178299558131339297177562327903121781837986432982578135425442281087274387142790908991284239897228477993620058641633559121002833247403566246271045582793516725492436702945364403045853050851487395608485693657035808886770752217541885550230629516562053600063590527075500540498862083891907910485448404800303926682079181868099630835036439635507482872216935801054169370006003912701729990450474416496588673061544038958659181300113655241651193808867289153847875624349241037557516544787783572065185357562083816693434073817034268432497205205297184773665237738790892574421084887187717679665466613516194299316606765784901472087728137010449249!
 9117335093657319098436263218587574319288997529935806298595091559832852813132518859712636025450172585129299971146518795056476768986855934473435308796679692707108138928417710608297325696070625570110278345891680774071524359119527847447801232017837862921936568487624454477157342293497001454867780619530781196489704348824220627832916894681694131194983677158430349989703940612167397351166027139506346588874618852284290282170903694352393234620029407018887739811526223256059583093822427736693594351911068108609796039122213465149880486032191688176550641800938387017492572608236909982753392973029926881386696979805966627854580116779245834571169755453335889835924368075393608945655979394151957629834439460369250138614891046315479513509034323846641103331492637975491851657381650396783285806813633440382543307423533407837486850104669005196677400914951296398500330297511117631410537102560590148544901400081663710948696864629385557273431047540085867238598763839984686776281795689400920934255747104090130!
 3672090953344801259126655128932880400708518501220973690817895373665739
20727109546841439355335419880435452155402956573563467672651452397702558124357614570194829809973057065149338687915118335443159609700280378902016994074221404332660933242587679920163560154489408052438919123242238029709762822377700500650130099837916326823263764519451050135742590405730176990573485171914066706444079114082160269481332381167747893639271435198680263639017425469199388351805630631713273468699510872652354213406457740775586513787994929143262783860885417327430696835185668582867639012022656932081331248525873568414163765437665665346381044067006592558396976359718823649520334642393390489932689152491498643673332680091633907182399224226268686016115248330803360517850345584771461191984960329316388907016856344532120754772093580905820921800813020181790155524209941866171557129801537225611015409733949673587721362405537233135996008868270324283356162913863805327953105525461188940158530916027194972416424362041544673178179999910594037503750044374888488071836615844077706852585343864375334!
 4431802616433937608467843295850090501126935057021432347591992397925812907690637047590252078193379118471139844464784147997675510550349700213764627398731855286896452477611524174844456934576385704771505912655733146726126683663569188382527253717748088479926358589054219445643738051836837049438385406985553556372414386630610183168984801187455845528594146232168968984690274442289753532238151187171438094438458911637217596999042302913561225464316726804820723848982236528533170000533383833347641891103993207744649611500790091610953411580725933073099292946549477830599945442125679540018668325753914588450258760909407069608540054913288976983910294926678028853960547118389850429389574663802787646335481164802973447177422537037565331293498525975721616262157735986341776797789014648610445464882351486595734776609410953328957625124807217674372931070741249937050520801696464456163551265731104667869829400698761080698166638407783023399773231666560261680043799686629963639724468334791090462651844453980745!
 6926819448635987187633134753803305159332818383471089750531699457001041
652
72137415348053975566650799157174797679335246737900319065376209209276051490830019078054082138549873578010003120601743334674043289151848083619572026115381153334727225657446629072700164748194639731892855555312980165607721323402615973978131286967495838068122136649532478290391260207153124830783085047515385400834263064413628187006855164724317633891262138545667741859306679141181859432094893521385321351636158567602142170982460780607996720713505435509679944716723846768126920177849060326802435287412006027362536457501464771106550782956686137315183872017806860524999991822868380722693517034788336195676361596662749399868789710443067387019400532528246270234514780522954988167082614751735106488661123244308028355754792476211521000625342307684720827263827079471232480684262645776479508979370311701558491064347095851610623934019490352397762523871295358899906148463202552778461597502115980267096832964015028924462685494923019627238065380563776905431542348282211893755109163524281731085161600296101063!
 0922280880072036871222525419152160629548089188611595334846692735592118343711620787123605251725985725953426424672342843368910581141075765856697576918466972568376790827987559954726838552851315112499659820313795043285148475749209150398695222488896388387477604962371743942153366589923919878723628418037940869626507948836007438637053456495468873939582178779441755573175580563000357469769148178083933623545308074096087641664447827406170899830979131368721170504800572888169170833456179315006315288923087692510853780886024772989628132505244226984153839388454390876217030030454442437244136249435648033400090219459332534362474803669638960989599833801903920839437312216143774602356814667149787407718079005844072362137997956839625867254724911058953815591276541631814265856300702484968187013879628532706960738568735459423830659014180169733881792143755240153034079189228826985793670175667243073121979866708701085934677775500387876599431776316240986863607864247255498742825969293950423974622102388675291!
 6127071094119664666582323495898666671667021269002711386383070253627663
63375557505714203844943042119963479922259707151645784962476546325657161762835949853554580790070819024873259747707068548964558290254532446123426355789535480321615672129649790432855756616384107224544585638997132094735788620504016495849970154070971300076507249971757676789641236576336550073825509699435651769082476313355436384986681098650084992745012191020729082330363752595481222685051132399099117090237572733378959985325520563438278265778306886803384185013033618798144635791824118967934232256408322027751921671023105300601637112835902892321057232267854192967237517004720519956072819128265295250934798247066697761349227137468593040383915995404330448487481551760226538025165699270818352351739299712468429779210310923132805486246724125371585895675633349626059527970035444689553462276600353280149228996878335808379011681661422776872512803136686445707361482091466654703544219649689930379915675272830148500357385755002895187395204435395262315188704972922093798104027543708056548412159128198980831!
 7391983086523798393883208045644931126773865912178140452389219118800598442515860384810443792182635337975002899252902288325752373278520209241148173047459964931906617706371168846767723448250781311388754366377777154677000226002926099704496521209162885332086347304150080198631512091355880057195458044596189845597474498665750527532098312848794448993553596857721276080486440029586693722345208026625667259369226068864040820718649964591429450702666911889741960843879928538133020364330118580641439792997757492543189590120627948163657518540263981676400247502955211447168484715287547535472708485837424334119034895875730969297895613160137289376710356161265688943885316464627867714127939237979500906403207157035629017302492260858117058418820454836770282152749754021139537151179716954679311800090276786979045656077099768574378137393342859350562449719815069156388674800858418208907475435434600998712125566967942696963104913713450905427278259833212314964358271935663084110980523464133770776995824923092338!
 3878537854654586951546018404069210146152092804164265603038267699178079
79401132685927234954496446198841491515306541443688245428484077712883493324738518690442926468485837276282541580089747573942086111978617713092256690294448669892325179077141021434412749530323780289706471885066685244011065419627736896945548737308147921516676382847178098772479990769895425196174900681143093124372552913353046551080670028397686703514137186653095572566858172187051279669308918440044588785833276618012616473384057717380120852886949784336646249482020004463402787531980288588528554770913795059293484024387291509287620492140949649958853779750651536607214764317226882536400939365937082998304219120557181834067684103400647802622410829713525507331749237003443228825842557757569816494662353504772179616096767787051830704682069873705742997227004361214863480624662779602506774976948973065190875439897787268995558186330618489234497457443488802524145923925442412869231395474292699418801677800966013181662907140885110648599143356111122397893786742237818177319722701028420700599314550433242455!
 3995268358224937822241338724258302173965548187266525323466090443231801186215565002443614477690358406796943190656217312329690510921204562304354898475746939907110930528952272380732109128380909855575935130801597258857947249159506933925715988255093004014116496116708699463001703197430131724502483906762400015036430965357374268457371576113071955464693594133605783596462371622775517431424494571510940409543186362874076072731585578915213520233570772264615134031112475855275182894863603325945722341769659868285530707064893815488833823572770357698492566347005842734786453574243054239325579391219378078938371310190411848876857140878668261585752520090236410444291442038762641213132820562065216127594089148491211714994392347979485420032083144899124757528390836843723290250299452220962521168224351920877152675638442445651480355112979786349849521840424649343887751053050757624279791141071565590059093785249990863715509784433878060482364476190840885730004660120533546313328418516810590713113406282969220!
 9681846213915306219840585337924779272028560297194106129432690059797266
70937197096938565603440303092731212209123183361030624642253431295010474730784205808210669819900599371810684724376806972472477950243682121212985228968265204964921480162433646253785212142573411187316114816120263556812444691898338948788892764008897997581156042570203503833173655793108841022840237489803193327316508197034618375600078280108309386312711808386729444993543451448200434725049978837757265274741424882180048929663285492378336564377960262348474249116507439992385371822156497783877335270504160573229776932115071000672605820467364148403096819777679462976599046098885385754620488251624878569196506438824283629426014434532345075825894394009046105251556184796526633733110789111251356305000960107009584162494028960692875213749995421329331805751177954312371835955769349307081737219644218007621020513657329373950911548391646897010031447910973801486460172072651740904515649608138128391270098594980521849186618314567815190394468341406437638195214209523334883914915561135739721180671568478794067!
 1795458955596168759129937192748928029186547830694795954049313763358004681083200067740275231801427432055726922259300679299102560763185817748920336700892116177048754049938705852617995073344698835421079476188047046378277425627638147699574863028969279540777463470458683133876041927559995766167364273952075380064882057692295790703281441227252567245780976665190696713380506985485630055121640640547931654700970758519571245920319759968873739489828205303994171349608405725083772410078401105672944807536887340571474880720549533001353621975841509605600496097141961648505425881123819429195046026315566374960803448911500436205542314609779649063114509634443788685264451841836650134899893177349172482205605400622540434698764517510368871272372215165330594247835597919959977781464905256400132502097225949982211099976706183246873749044365082435152342234595249023283311710852162220279837365033583136713716803531488327627937735218672897486761531969115534751630825214375842650914612405929120300919688974450026!
 4467378194370735556019544776393294576142778497026950448660030032454154
096
97686393843587122868251444437853913059554599201841985597015939473477613650347720381076493705977111424701216971736587777000548075655491405987587256741401138705366088871720708771551937339972982873774107425038559751948366388190922456721202357753255968833151632935558804406788489045944566115340675774255032600507856156946806047652046297869489818024315373281718612568971756915556991385443937760314058249747268986890051044664520577517310829577896015343485213277886399120049214400455411594139925754500525057125988773408643161304148936162312183089417298714885412238878292864721530384593222471496529398291080867140919064797413639204735218947260664044752620468021488920012318167981775062904582076625991570832007224663839403467308333153666676314997718551679223277958779031744860439217951177360658659140080782647415040567170956160095826461183507547191957320225554171183598249857961355408791667899687089920528337322553740377580047200087998039273549497137359622445096379799872002820920724176698006725036!
 7077492776400008041060762619431506953500300388783904796588409741417871277007420186567596285190727845008960445624397283351071913809606389321719754648486611043927665441111046432965295536470457731098278782424970195149824155909343123372498865580600758573808716266999874492097007357239538482083886903591915623891991222856333438572614137042769000870818655477345858704449532833118383238286690647713933815145784798641720036027344275729872999678731040857939495684041417666032366410215197281735502682432022568842273875627193719006374144034262697421568539546602158136765359527885080083639711033241411966166057489510673506908383989945099410616994303590968276901805350761235313835296051364592345109969460243507548744432428188025028604703243489876794066190055449007428819510026258164107846195791480205109559920800441124364323628719074930925571949323464821446335473426824672864823378889429243868089858592992476269476717563030484533480386361687789431378143229267978729854989262069408807069760759990062772!
 7341490374140190038337204009613664707975011383518844654178566466208223
01373579510276806636516981474949679438834241248855965264389355804871982162846031935489323804003900794425133187862346485852411622535314384734121748097608689118417120620251567751159299826524857323880779080052340067534000089945544211021363129214742792934551440252233624082785151888278244537561932667829705565890371466702436523406248086592339625278984442387126701041268974272192468326566275648030166418406914178101562579029501193140859148142522957853494462088900724724935987626732830502036554083476102225257298633294198574210018510699380445714046925256478512880344899243575813575124702024551868473059628661985813809176406167095449747647119424818909045593122028846648872724520753564038425430862557253148147201613773631667535960468772260429850153294371059657386729220592138895382636589268385815532192883861366998724464096391605174190183120886543840663992473035959926091528153270704223316087415720303401207134879144057370927179131529626072177343517058649974228884692398912742824345581051940976904!
 0373814100147084652747268505760321804052543377970572563563193452638074930037153449754155338906685960562143134895400504569562103175482552787059996750074591523774178740410967950263630016053315327732697802803939629888089238722584631630766107402873344930144906256823657733260626219942472259911805663335814121657920715680081548794806297893744726801200062115449640433205169284905979641652276117820829847967413224348765729954597783048421670829004174600047215268291832960894023783454708048433400668133661999945930690829048796268490379707646740242509319549298454047356049583140060636002110270921215774074215212355386063307446171664485966084294949932080154813515080720148318711172029535684091183566986362420655590517100745572454737012812604469291193277561262956889496380581408463105023833411122137546458772241164672873978222709101199010923927609878692285579828025401754272331362949115858481328978062140369687329072753343769272231769636956993149769163273306365978981040474794259544823484700518341141!
 6243446543035054201275144401356561547508104699930803007902188466033581
21876523326682318548099779643062408992774257325235519032012583896457391492565801282309325992971626469592826643315252047496079724184484232131944050096609461351337964781721180663664516832119337444151520899574095959012787777178530630226196619838095122150503164112825311838865016829312167665187426647007521614907421315033854088837458283968380595591647389614453220321323991742333186433540246286822812778557168513106750581680692149269726780984823646137418369874864862237624921501433076697917532070174842182660887030020467755963153071809460111849080709051484728929215136244714599645591827450193312373868841091894729009938203585582199987032367768486907635173896984900956506885822865313033462240454729632495303020849457046540107647742004137390791842068429985372139826433399685161855065555147036503829437625179919658541246587327953349407199992622524529408966381886010671148931019121965403708077170844932061492874844720414588864348183777362051419884618260682035157832995086588727301870507013807194303!
 8001372841004681095078122852299684860039423003890379649177485411435934385812537186607952893101084795198458447179066379548155842388359397951334397813456540008861448668330063208210295655565133947632167068973720172761453960224987243870478980692621462581652433502134637850277958324759380594218637979996141022198815089413128742125975466841675116471188902517335850736289494657376232094419477098872124280126783868766697270849443801720944461463188194016951786198031127710795837514556007676447020022639032314835361683658971645728684285955744316946038116544673374144506335359102381553519307916281633357905903288019207546339347398118580935227619215389705272698107152267961866292000289507231141005222351280703733441552069813526643131950060266075343512878031668386538346130151471257855461321553344180191028929943123730331213010622721707795944018404379997397187847342378900949787143264619561334686233166086365680648901632194659195194473337536233441936923904048623306365597416684769496509246148699825141!
 3399830701690889158632790015381769984129169838666876496565982477507779
18207696103104924111330998740887236279533292082923793468641760570539575201025179942465682873602313424771249857139088117046430719307800817148795391818071771505681271728961119924976287252563670982130129154357775448590339413573391811895072768677315858336397474651204630107293305444809536183917369297946452057306765812496801894281097021912729770240018673010364091999999927312085420956207199198664513551985666017255671071503963728746546109120540543386560715200980904332787612002024173297893098396840329634373728379470211183178454642180060171324987590065448302543829890211767422219855556993584326223760980502653762287217675831587805992958904551360141713330244230829175038731788788774671506246547289116421491256297831731316261180679228119910379836534654956338917966718081741395519069851479535088109221860006273830603242612408896613829681944855029055118992234917116086131167008495536724496108529410885258502042013328546561005343607333395622300628279012095778629221030821649731254901062888462076835!
 2260970182886769665926593210682115917045516890385798426188547646553744346187789720254957514149636210606185418703089181161595744909345819425425217314253207521390175682131657850065892619476658992249927063441575364988483451004244382356009383885073117442482691767568749168835796457602043812896198983004789243230114764968609329547495321795235835349076361290739166138105969530317747129661337830208946640195844340034859106136002451484279673889320138542037014828552042951206866198526249371825822110835659522118485173393488020392328011520343460455373092482947621477950525892951098709402663537026265408857476866308996955650451300232730171342558338054026125480054948376381281144230362624531947412245700197327917058756439022023448524690718606785395154275004787812156532074520919368745558082926087685673096088382577184173139194114098862587121906125216866327519666084777641654861987356583368193791774893866341121154936819829608430610621252673573099246746848699594578448574077849863977901210015535221739!
 4460235776148112981634044693694226389553007109613705454579635552004791
269
80851295463557686380326442859266934009097851292054269121350487414923253400610152979845739376528313965912851993805840320157183668771094993701409982063212741653286037047995680765292722559495732613264759693984118889529373249156057147866819194816836181205891224913239646206078934106186099635750823808633281346700760830599579477725758645609418706403650142204176798253310779499086210434092743396409067710230252288307619442164367780498719951429654658455519090564628009687318451941308761626806068194483834045762850763467819528824317917827983645068762334222186653964877046689916428906621705001361908580858555544979824141556915486359943053783913526674556061781616144836913517811755432478799548058650895410971215193892286749781160583246728883916849497169025951349204313498519950250515415006819699888822791758697494618910371979163323798244497263451522868998028562235837354419256535814904495987488868485583771142063370233822515411371262261097226482867690786593764649711119138811375870606593516532184336!
 0583620862230464763819067387507955229450058009445589024407549618407932214012232316540916975720858922578901160254122738188514242001082370848566954419518239163699985801346443886493116052291858686968026595854797839659950899422096259391058321939928321976673358162339659099709093463295676352224413064568809932574494122119890539982133048103967459240888560354969450092477939494081364765218096440151285986531126839933871045435898864653099247301242528653083924689611767787888131547604592765203939622462392140483584550595392042142793084341534765099149198206850556401707207839172635223573712006442060006327713837582349053858712597712353612989904199675988766915729193609987511641593590021476161445321567894792914165142235358308174498323095884284178066824898091264302309518776473242699097734169049213636859686566078232518940763122389015020033201741807747092303590929803391481997638521390194247634589066915375851393217563047123320760570786273833044234489901010736076614570482914212343115493306456135551!
 9020744018790118400251555522746793639869839252790046193160402094368351
35391645800926806973001677519700384229514392292532134169096778673096073886754538469564424955341252683514413024804859620104091434222416026274918797928448681936984225520627967738453716961788046607557767397135327921242532125001929498101703291737461085125764387685584812263439829251078127785813233808300838615365983196089656015920962266354840438230946973148190453041402776572176643200650510463266157514236905701861663626186622864932786286997328624369550819946016709703457736113558912959898464985990673623620819714571875891862980447693729700162995941592607991863948620911485010621979677160084763034060757896020822990287867285991662286217138070299080050574600017963740316864306517254213074443624868687736642324057036527555644275367496551641879762246370090669318620299528010915576038476306955520600579295873437197940374895556097688981753815300758660828153140674591550468039763821506757658930099909533551949681808547420966131535846984849702238825099904806497837483571950603745519182728536344787910!
 0093653632010798500732763367909295479108599455479300956225109390303955602097243598164516706295532280637693882748754431734952011268800674195578906945919861479175179777635857482180726355405410970387452562402792584889997866195332897974939722045465708491926198249884487791170017974752935294166714758813584352661716693722805091488793315943557288840565712545550292990944320352063787655902127222193357287823085469319925386792004213661177949296698212440521461684779212790919209405257393245528326723090965717121376993976877462421291123783450409229661674949228850466364611004796905598033905261196089910561772384249828537810354571625908526356231622614892908730982601482439507329343532683860046635974832618995067510707964961461959709960106220116223021663397216212506716288728694457027568527118350677391253236495999296889577228244582648082781546041479690849982202039307904292322328968594711182321890145018596986437768470357260039744729664480721405951417042543312885967607606226268778674758473658008485!
 6146669774668597811992778649387283411186087045472719857511878806461649
03263945208413477260346518490258670019539043326506503730866547822398849061314299869758422072213806582887917046823247265861627990021670323927935168853123695428808060749101618360199228590912089913568740726741876445716724528576008881777864021295471584911376475484717369488070447287607799374456721753416828685368608599566689732484402936088721273879919633979038983404530112073199077079521908613345230277176113376977008683333894099568430871905954893638154479428387811738600949879542860057880627205162567400544501281607665933177554046003821643207258885048492718509208584579455982533944787110187788722657025433964426323304229063957077951909051841720579035030640899203047011253225055553789972120663198281810229912688349689339794515819834886949845484187258206116255427801911951568137517247372593359934658559398640417476663017159978481872854641243703100916207440894449409580974238873393668480759054608317211660154879854387705079673692415345846589422196338832526807466309447470862713270582148062992720!
 1873948595710035071856353939393470354381818806522241123395885403662286161476422262374441430296164932463977455158534670557217683915957015446425737532171941563648633582153464709673201529193033947907240404524082541271673046168030112238494521396204567291594555514461468398923002664295751684043582604184541285930529187008683884444987446574377639022749248908126536493714360479784002781879034301753918162621628979467027036198932225896615455250132297613991686893764134166567539152969225818912213027079722193815675204004071511794860287548796399770694880229177643059146792616227342642295607756664141923677335500786386385993307447112643419764701820556154957957415231326838142913293330319325302444453354354393232925577424659170626973557824839709940163740743586290032460367663684720461609078924882703228823085051626290522996384507966952713554869203125027829122886956543039101235610822213904395524160890632738448715365231425205217872584915239480845194517572045310668634358866027203945111145987153015831!
 9598753293720185557742477596940591898073400791207253227712111198228942
25337841418613510196860761350391198488511776819318166383673240422986952208153038417836214669605011189661743851001722456887171201093234414931904417900726528777614167885162411074179685366085288243603426215451378491328842551722497711816430622968932499323886917361006418359106079771124771101020444881687773592974686140007574064211609943198166538076533291513819987565419176846853483191826713351296876283553128450195272197057644298126025792997009343881529535159788407926344227045191228841100511566082831824719672187036797263588698819581030127185737613828033565198587753886140458864080334865575175755066909589664155978108215315271263901736054382008975546314223027014825209944097502551468164021943941872122718044420301935284441903520962324362633403600951266816048372085827907227892699496609322114529950350670931804270959204931713881337247964348367516352643650827263378793886764234094857898799094718603629837432451764158099190127116532734466965650431532258705776904189291828136332694547377222727021!
 3555937815305471017158189012818049864457387799679299185043597462388758071786770920909455123492477176586733275396530360174890796232434536244818417746499890826077800906871585570720939612421941425563553579618645759469847121774383972782603444787307455079893198198776740882285235240528409396994823234198136166678543295529211653648836557423173327461795602770507786970506295812279660620172980352733562635791598362627010375845638042227818477198545679422725361385934857041197929437426836623852717172698668763948369442505422098337682721626517452393773769504285512986375740145119542313016078700132937054758888489604822408751824488609008231188111596781509598530206701979555606702571451424480197292991493461327097863699981428492710788173290645741142184526697833835241512555587879763573948172837913743707440115207151832867201046511040735181070880515922744472629049221248872155209237608778180052039821495307815451714959338959056581685500149316780391622044217440114615995456278317138570525414331396457601!
 5039830928414909208335627769360442390994118277016885851764168386574450
494
25672207311644660317550840617872018926451804671872096372950036364472994646880418299746394649578945137704488870534830227473942072737664565158180007053793769853159005632453609574833758528975700451047579102908403362741811428187724673936986158902824866195747014037235013664164156926673504507639994745264304242007448091123669302046594663178863974295569269762162643452152499488284336459628678809925217996981862067873620270155694672912846571253625907770273490811617391386542868190912677354422217288079237990478510067272089746847347011861181527250912213092519503696581082344675785631568108555806709591287868124772562567158529731259486836326750452744469887592896101618866705575715029125889909910192323727519441345389192804696130145574012289033696246671405992544778460842785391204698759478365103763598625882899238982635550604661745607462709246265143009707087902661343941833985777308369909893681981582649562323073969950460587688335369737584612152289854496621407317191198726596500588234921125247053374!
 7936743686630674414205613372547683254796192247521785650995554103849946199968252338096805493595139282654231312735575370947410326406467323451213184848483662253730648098059859204371574530631465155436681611887515345490595519468398187172776298963222566986226720113532256120095551774412610496807144803162829146739089926152120857636645680612910303119999360093277366245486045376384246654373945371455209356179084004007848907768203281897312981564846019339543936978804292963778163310780062072120532576552874716785978905257605814751436224019779120306888825975029580550986378461225371603384956457970928924720360568224426795582131600288241991499416142727204648981087041872815262643009978051341659602064752617081291547949978010696537135805058580539730422697628672730217028457308327690733376079243897651695615159696663099325082343879662027527179405567254292098511710953106018172836296380054159287309979081955813412894233635588000488763654558706850536536731461335736443251871450509399624058793249758502092!
 8069900447115656948985995514585393322093550228576036735638590168175754
82416827072984197308220385102642617495603358861020825406399480880134290396086022028627885402302975431895963577396194074666015958979128176062340323638345448673500113127854931247967145023917227156176700481881047197550103194155263517979987973892926506484441358992181191801975559458227110845306804759389307483139656951003689238300548185132309701470350399736816870138994353465281962463175477084821321506307807037259942746841208613808670411500651225299114931596549700657581773231684420481033831505425686246619705821234830516413467022162677365300927648790985692400770871080198954686870393089992073723684640886754724908149213452740664481336743403386622037775413404325713727048643727051953754971177740643304305139274750816148497782258318418020780054973128467149453089645183726546462205592905973338606654932891669497938842743936422967352792992908244508584370732314507619103113755122600134664481096176654902528942888559725975423245967440312972776525759885640613832259450157087415995385782729146129813!
 7989391547094762813919167624906184002543049031517317631631975365313303499988394067644710902449178046637846836598094119181619913348654498821725162396559317067966337484030598543658941301480318856255453425673236336485992104214942211515017791054885849174927325690441160591919742233236756198984588213484409224373711790176449834168440366434104205109586638900867407936697482621473052852843695083300286186575322618256186812415104469768369400957680848900553826065815996175986775481502260826750172606029842958722092931232934992652992701252972702609837072137713865223844040236544140767092527796812907035492489465544151885223332102222179065258942727572419911231906231976099181838064677816672728294065108974474997483313563616094667066886829955771370945321025920473633029533050272662806070786635881656422424382270756419977834431654970969847762950285341500653903805764922401779001558257881678382111534450281826160653233436866184975404049413612096561892343348084102958211848516748761026685488004900977044!
 7603223859076772857082730424404883487883761771381062830004925343357304
68300804208620341114479671287548530787578519936036998235481663589656475430462515247143987017248436051684726572497187351604123050724262525976741254772320729066496208736115313725252490659622029719019949347562024517844090719876997734342337335767494604655696359584588719682756263870421142241891014492614329739549901567073058552508230966419821782894577271783273797508218403055915156208942963053418009740440792332105438173929611083236665101569852452628700587137932742934264108974462929478805769736272758668114393594726175903310324475740411472359869367594841529130626958729005433414093078567164772167480809411159279555657615334872071688712696276534672555763345252119532527042334791881608016522623753112865474240374321057848395355349204822443594369126977292441342611465426782621791708736109785788787087956042523881729029555582286044451671780185585623232250482742850716977488012947646796050218870732805105882887301472668715950954256894171068715081042920459693898805753233115625789114443549597835737!
 6751718958986558220060715292476073412919127781556674123768650491673838524270823161377803888961505503177354451564417025960087455689175415345108194555784632511055873523159792963577072649423995838988922727084154632222039088062743190843438406258354739318982211298162739328022588528808406678105333370996933704618177782630857206827278588890873760605863659161240676381783252986394860908548150869526742590961354729130493339704560804570458271322195176310421298829541161641040822809597949031690997108859339431464634944771189561684298510539763934256288363202684185916057116076659892759609434353483511796933642668669654385506568191586225638615509750260146674669856020237623431887999087916872898169448938900829408492085018840547136387785091040488621023436970966422507156811564948831941796459904828624677373621444059802326042493260385427095704229242265172532169034405107811392087830403065342570845566917409321482649890834432563062279741140929451131207350741864163452991907538044501171106054066299117452!
 5277447208531396554568076787334312518975676641088392933206444715569341
48128530475808570040631593808994046028524915499450371956268287404958504612035166361687623984886233582290927259362384875945363449270356688974524141326103984339315813411281240407140741777759769329121165759104750738115803762987260614040010336376194182750294977687315951983515160686125146475053073188080147781766215184345719273067675916442707191490807445823408797985002462833498440026363966235133925564137064187436365495988613214677864059113686514810524285319288674986368048819734872210792413944445013559390972583639783667959835859071959220814624366937954752744978706905174592262073123689547589458185528413859299805946957219254541213660118112676122047199264641365403829805518727509317411524497033397540318340174044639725102823786973717783686859460745020918336428944441106476895700956044384776830549820758748153481806190750950444293967732575698859942864624812468746858506153428465768115477537795239690328563333182209920477041209887304107180465184013831773464603748640465858927919767511764276061!
 7620360773128875770255773452494148013215773776837082084547730485743986977016664319742487999471998074077805233219851817615713705214415764211656674572349573889895658981029391739816612698802608194657313149847305834790379150139082810384917336597369888653633361285811919412870740856627708302086248354708280894876385146537464955975042089132255778971769335335501227858291713512634410573044174298791389773110453977713874960429758221277691723551318935579756843455153347492389930840519436736497692714897383325951199096224522000301049892042905466117750640870483290540102419289785424209956139387717035598689013887616804380720343764442478346711344275862177760016578163881158270743894457750081978437705017025188238291668754507163520850005326369412091451411323240864473197262496311931881489849596040577007629055762865599545402575108933073267875135147235827838648672389596059953097422083027643910449299012758455206483093241729664732657036281380033604463874550919700997695854287965603841678916894592596622!
 1241931715429801017508817122627437260808157213676482735629380006771375
114
88418975863722473280346587915334432825771284769689258037915144786113299872325366168519088788590345377008991149335824718106369830519002610780717208727500442690940422087279969855959160734433668072676383937577406304050385284392562710192582097526141700829795944919305099734276304069592878020591752435408721041991667970473364215704195580108772184472336293741603260535624976170800733622660900889604747992230564989230576882661998178711884830483029722826670682035368412337084149842632455798114178624853611003780783592028415585328505078560732669377951851772225931941144405672325490247985889722300107127179477237355365631700180629319446280001154812580613995860956555615405885192754611423693363033755424724148771040738919240202108836666659241233590728119211595729144374803293394827883046615177211143327015907049091557339710878822213324157691944020058136967111712263663506554067035392161511686530940632481858082170035928084001928524642970227064155900952891239178116203377126510333840094604442368733426!
 4217575677230979315644110250535071886082476520723295855596784773755144085101374794014678737563954070201133613198780620058982713883000647731671192365868171448893168125791644896859874045830823883769949940474499709359268484823457414369264369312857397972487575104735577888582633650493615470346211245376455629172344002428795391315776066133231788946496997857635997888955073118649516875959193438567652948464025770261111057919575955709026800219132891459658751453840740137792932763023889066726915337785582595012495249526430709651752770438176129668277868939909291895777933656376556519538489193449882546850047935550531500939511540971386958639468514841476990788397683392490809834393531438819759801793858339604884506288466583055964656088971750351493878540321780573395235154368473123155694790041717324223055862149888490380520968787790159813843619005503461969682042906207316884673716767359110474765447075307646866730663029375240884549741298798428629824287017037258812937572819740400631421021778555327139!
 4945831895776026558334389846848940013481708678947453989879289338580685
84042975029941705629513187385099269766865286500715049244523635377969686588202977394876424444796579057397214114532709313782083415995482000396086690155581848271473604257523395193824464532727001996938273918916192149223332904409723787448765255184720293321917228843612355504270497943905609574687238041854795073053973718126067738530876528860503862381018419750574132617181892720848953032847603340769253507731774728193030713380080545480558654392447926046145376793475148123530330141097343821608309602016902973020049511135685202255079634476070185090034809832620072304422893651934791431612728440253085270016935774479888155913339152025761428496801304153224084351806526295339104008924128195250242548936957016534765549514042150508573858173351275210188727685134397286294548316874073573025651288251489377975803207660384627484465441942082234630418782041015707869822849327811223801703246562105477218377345698674081368558744464000745557615875711575917218651576079036274075746779618376242389652904763042118374!
 9268362635402485780274146165665644902383589174684339339586996516154691203889570526333194639855768460056483938086988126901225502484637125014486944195395177823674666646777017569328241462574062038971382074326075046967756393141384555364392455320309703352614803920922806291530475673630827757722067841475596371059132850405375407814315289391293323560128427958027615052520803297109898169665789728522634209744344512349073730659925130900454099725687660694750941625489793361595433278006327994134194121439031596587531578182835334868060984391811892579237626603591898493487285852768575831033226366182065534764823048375001364077398905797110544723636997598320478690340593340824138453511640355051677775628234171765089842797139629629768401905150983509733478640272298326426465768301011488174939945847840230320459070902046159970346129380247733630584504451062370989132653764842848544997030294731973309202772528126801071154102738373329566473259658664806039047109506182607924030389623708062793377440824612698241!
 0813540299697190782996927662905543248858689907750258437959767382790458
41870719575403817464425924229022962352114619484709841501373831761686401878823422022056983890741814409992523461124145586176578428597666830631599464134516912471319735363636496697509850596405654465033497298523837790338476791970974909213665047850530506161186905185579562653907407056083173051003680224685865381327271906621220089573166250979237057567383266901305016444075840564808924666779670440458374247184124136988135152191922909274702586005925997350238491524882549194136127882124800339100864810795745085037382056906186825640002317454424259530246307519629302278319566325454655646767369609229752806963741464658624364541085752638187121216262101610465933316250888800891135256998311873385664640718637872663785368765321121783986565645742990819548571424739061038160990816435168298306210612587598032982632364107537159564780489200288857529682575635845846671143972569866889523444911492958567751811385653018260806924387991489093326918562005170588199758914611729929115919960120231119864543198524112104897!
 6517199041252741279405114796197835237787017871888776145054657387779750239011421751367030863111373482895164418388215887617619608352322321578373684204358281956632944711979586545943894140892281486872247682570820420151547777560370479476731144953584581057682195490478195891561076497631870244456960138388771247867800238921729301368848483169471652407108134864425098948465208232288559816168121786579299025845791378198822594345816483822254417950471839079717455455191454254129042756433140023039450225756226093560105880695795181714842935512467799888128822096367632440913129300734495850300020993602151938108566010194423415519565396969737749042298213510026979481316791891132726539843877843739147887660824846370616808768484343058556764622863913365937792501072330501742759258209685925503094189515883432389431037548551062746565373620806488202574206306133355587080690661748631983118428226696989419398030367807806762388363082429741369245326815530561295388015331731271870193768404569288395913319867329687154!
 9106616387146470524838585379056145220645294570577713585541074307734995
56861009599752772112165608081608171592462953468466455708203123878457866605171774998311218451688053378395347113969031191098670094651128663848408094592195694659496958441190364218231303668283464466051804775265089981328357229686356224750317566299803043368369912710110673549192507877175036938826317356500945893706629581721261285038713569302268113170038827692735122945940499786163524716547596694132293377866032042760802689878500847493121660380926129627555668900735957152092312130186299040977998338552816386608731902035486720430405180131131317532860442095681533521822582282907134947131288606779142402152996292861535047848618514158920097874921288868915810998387759193767699969313163290032277097728692429418811754335274982588134301240419415662843557126362922596165431794955687667601709058581768832946770617973945682970058442261894082940782833140078848948612762018541674119705576441360598503611730544756483114998733949537748225828431306446842094779500258511626114735548999139242469883578852671898802!
 1262450056766886567978652040919639490550528928786088610299830036908371902922426058350274031258107132741197677924179963375754871280617515683745814653567449194913052823296006822067779975790901301716269618714755511337116084114357493514234102022514286225879186236885555626838430938299673690699735337240349004476987251573254229953821886967793141680251855441231239715601772559033822251809678742646067406708295429088158800912241379104316920499385159397807212405584440763295285094779752341126094051185605400053155690386655210180535936124874956483409245437159079955850880957935032486939902593937521039270464684674285533526681046555535238411012889438268728495337098016954927086784793830105114270749396441748358868857230176452549216107909441017962050972402316344562541670067433739929789890241727456246190822814803894008963929051462818957158761171274536007191683639481079707543692415304124306639623907133820621382273864657746296619918615374263226260187117295349575381288235640349796257657843544108844!
 4224735803112651674409405771152049840441011383003209354438959132039286
935
68736547207684664518913454128670089512309012915076326324796087397406448222137567704869886228187238393197948544380382321187734723885687439959854440804562954872632065541114461092317379329853873683036212382213618472687608645352832631220726410374886215919121064209733014026714385078209562246396776393890811199309677263829909027938828727917096054391501097349943176645512554497170235362086460057935490818584231400902997357425522888736783702096348467758829963742135103804402359616758891998111517190128131958726836209717304037319627614415200627759734253735756582283326670858699992268278068032505066565923350142245086138635473694500191389256173738349587079624854006756364458789492589873619045609109668620981076612122674969737748780804937588493453647140434519142924095997710420801589415766357996632304941202149759367885874291248640151276967097538259441358293092833904969037201402453185539904126230915473971521462846786672266683934971669242211596975452705237346531753002090026003139486212555160379556!
 1011789870916171335525047171810988197973947469803309328524673217446081387338381135017746481009869095346584247324193296889992295373402297891521273986759761511233911917059326820779550615082236269158253352292849737779310831762805535657094785081111869247688439972519944065952157269479767407146117946955143351976147397374027184166891779428646762831282092132307240334679890812959580623542180772907143987637623165699776416533741154335074734499124506836500355648198837438667070949359805325609011181273763272548939540958300583624268693267558916464579963449728683501168208364150023341854379352706781433839044548771083315133965954528102818621730891008956567410097552961348083027795883521113523080336673210953386743137032164455771871629637348926133690883190403072898689164267153412807842253935009702041679034130564235523443121787627590428948163636386911014269903856664633441063032244955155183052695171576541302190640159173178665792194336002854847026632012882473507011208819886719744473808149219407947!
 0326199205120613492208496820722174564772374866857812707916132572392610
51930520043429008180162439986166466575763160377040537172924807516072469798823891547565870746140933514479895591727384967785148694904075956431132157683102469898636615431097065631970636298408424853965483332813724677610023822823222865155920281093113027042852765923884149437254614656463670618374481391191613556817709154372434677748787831296452277459282283855892190339730819667605967524518382529132569795539616760440869480101215328558475557949795221874818487245699856842395825968806967084987229365592003734964490014408755526430681496883984603198727502827013957369609789996986806007122104201935854080368508470723336916002490634817319603732215344464851957721352515708124995653926598398223160669178935486137817731774446011861752708014822080023920381149868831041271326398447501965533921065424917318522077762072365837353359240895211205396136090415907467861679029816032810888000099530996153232381717377841337258958068356097684478406277436188747196419028821781036366981845960622712140213319070489553628!
 0720918392855338139596989807543588832734306672216220133798094865403699466959892404719678562987002034259999414719887325153867324472267295338883375650246233827926365733131786274846006412635012243692648434565208833991115735630078347520092527408692077264904835727673316697229910750137426002738300382269898242569569193987894446419315776341217975579547899861141416083283842933895897244632947711764636022098871685848675561203898140372373569267460643154296904382466519940546755232213580815551207555578423338164676158449511129951404283933880450137728678101323364953353148086386177922447167971613493582650494657950467336425430647278580885890918647199080136261826662596236026426116515403981416580618315183304144596365280791833213265876986255815713238812323543640644297953745204584760160195741963797692334411687800634123680652625835145550076131577550171695895906469330190406500818261519493257658604114968232627615390184914210173025991581145552413991565476627886897189594923906455703914746685950065856!
 0658800273426629289336414711996905719263864479296213798798571023945972
95890218946694100739516198098958530665623674806224176817917602027426143884633127016346372255688042862943346269029116672056733883649049746711019585440823438546353079720595638947841363711104119044924342464996619932229289675599073960405983067946555840898138552583655611523945251317960075951410825049437314487438914193737907319235738873855001432339317071524428801494342481846672290758894802573517264798000613473015492516358191136643318089050013103184169487591033979258626131881253988673776289233240844822931955285144020061992636072102568352800507258045978097011747730466051226492377813202621918418749806560764054287221458178455655823684589784986998629773941511759552265370877426222620985252866004551567689802931811398802291913020593038666187685302526132212255114965506815921852359331531112917338342571228767518324324777385164960916880822648665354957867237028095652286264186073421268025113223530981205902975456851041993944294106435914452995196434493787005366728281789963734670323446361988089065!
 9194243952341106058145161030278472030677123053023734935300134723638468417414742434762273846407309879823193014705171429266743434652639860467398206551849457047474939752840638224936034045101121325305269964032776762608196661291899861663454726292592333906654537961928453701034640300819106921867509795385456905114328082504353649750219871279051896829327512227205487431984801668811882032032700142404005524962672448422755190465011755686583368985068257546146970568568990641592178516704329214441864376425445227459658734782428862825390901421560095554143671622888157885868464919190950622589605113119664524846611167392813162650159962397693279775388037231770467028499656643400545235146469349862907695280537691009712404939270090455578337406082328922202871623444063667518154547815264630240439528790672571504190975572244366433909054092344410346966277649152357619330858809446624260964683247628002638879870030094512772127576000191763399126786665286590899738761331580723151075626716687223157167222828449166837!
 1377083515550028942206923183753721052787080653769393336912312456267115
49118526376161521737401285066446217705689407806547787740194642109431551144092832435884268207998046531484962623543404658926949024710778931440508241499585056212257471685646814591350689304791655476508860866252430809423449220389763030455878611876385609698323036911247550314016504962498347213073140019163209968809004485692656579512428215185222326841258405501556853771909290026866009462203692321651533839750099163177584500096374098202348899741639807530524306155330761710671914838568278107756460232114267989229007220769888493732680020992408430971632508358808144090706723049151443303002658852960543770131913106651863464636195000358547778359213714503237262770348343243991157807254675767418387548270489553281941454188181110693444550530858373818168915508222449738033986297835041752689190015411649858872577607752735027492197552000145957708059744714736372034042118121081115667360300155514745633482110644267391389864381086833216811389352172331219449286658889991914798096155198523826672227743160151914855!
 1718659861368040022337213889352982848432210723797947651861594506420188037676520480349430192995418183842229809597204574870908530302526434378504246835334681664967635764474316546132941572310634780578144701547022340182527860206522860370828299692200614414744859259054742812283981165929211559796072645050297171629104490200676671322503125258696319036749638909968008516609348281902737390387536790033352792464353086446291641170209796037324323297725095337551193714689018592949945007567460638275384620179565994474247643800147773196050943905553864460772513918132200058444556760253829644987196073437211026141501352541760445741737814415752238283982982836645116706215358642052415251424619477883417448879062780759394628792740385546429080967252701361155600175212238475991862406292898662514884804404921613181497536602737416145965138361098296179206097243248225933025108441432621524510094858028665485663762484718159663932931000112849656591073716295193492808764799947221068451033728775937647324568034894471528!
 5617638954537765441284193439065982079700422587476737518957904674914465
690
04308014029707173050049063497786688780334490491030664555068657031408337270631892896618548870519302635142080271252261431982946383349883368559925265787769140987241642669937906268161514980278162163835194633797610734222080268007856169295963446613075400146821084354239927874022135550586729048700835969835880508709638069152056040132559843710196216332439798485815279402085305548459541367782757002681919512035964758440406725361486325446877995810332800711881503288739200394660562780701993015944940693200657907113357706749983483472306529641792884815136651973722555701744651688593067264745491344037104751173867798375095328506060821597029709225659442112721760042389187000003062987193163685676576189997466733944770447335514661040057260241528569531801135426789802639419176731501785229925459253874623861434082828948096966913270182199251083648612626415528153975794921810667662849995951232675060180544223991033764338800884187828088206467204590217285167231267614100480725610191048425377939767031168445008063!
 4977184058160321792815097047131654089412263125928020336699397771012493080624272959679903527383292311067570385386279798869276807161841525006305800561131905148181630437126229353707184522117821511082799323873517961017222706081915027168700703690878400469865702430052282415882048710857346991659606773406099033927504714448418725653011838358350790901514883455751550056391665376485458197848668703158097200074820022269416385161031478228181348292491133334615549253294607304053829687307998802434544169423039529114874956091717068881460492991135750783948572494817012812218729395450647327015109808706601482311130588532212668534490775690668067843976519812222810329178158596218338573991574273057410904915399504842116819677245070902527273083622794991143194522821372694208583579542911502407165357234867868975337098722113751957403344083794970544528758215600097978212443353408973195306579933479933143521010580780311916892304564612340998137526678471460465008655134912817117486201147944294937493931496917112682!
 0308674181806286599462894953437953023316868163276635228336015814358202
64313543059471656845822879615501909478901631499331631492933576032385636481900887484836201676779265323461857113717429913111641252343795242090120907028850256326437556874853760167592584590531955409097019471137600350848837528654865144808097746167407361703076380797029584336001641756382346781525497626201048690823681816446643306402042559520866302744816872741078087017207434623452878473608377617019134566745006138941406704871113619295606879697116848813280618376371041662591503954970290130719865534949689963223123783304563955663698513619356939314471393994555623276560455270779002217722918513099830652197067691548969794937395538148835779949379715436472331201936283323871415963881081385741820896646245530260841158107560659674672840976665867337825056400656814863532929571460366847725353976717023652309110581561448175241274020307518157946949001572169218505908479570443856158358171172276907558766810903462409246057334699443406263104524195758334034694299963572098153514317780951241673674798581701797847!
 6555766705870458613162357097334917832774841977087810014083472729789445857011161348141153447975172057823699163972166575082281252548377374770419666602550180612414918483173085612174709869201837436593917499736514824350225829147221344505695521904882670641993449666138678109592461941099902997437292222968175377125803295824257843242743718345027753378107607678956230291447089870230855515940292054230950877834959529595449509323933532457900417887370415597021800082083302128591080965799032476650192689234955096978786471375171668928593457375961395586677762023651001482254018718353200172535885429367842181905416035464467289710003485111397991746935352780932843454022997526832240627728466095899133401756796368739285326863983162846835217033086389800254341190198874114969727357137081351269703086133868619827751856032836491242021389800517513319741958569952564469764530587295646278489424557927272708078104501591292937400694941519538841333062077321711399009310621872014898934596008572251603939022812467624406!
 7654159608690029676700993175792216532031408017271443833736824772010992
61231616326214604393618327580423889505372816498261449352411221750328319157025539575098912416064004931221784679686868167684072686638977212303463230320925954507385707503379950019852344956580466706073630988075616395138875875397851107921899043358161844422843386626950443832550063018501457766634182922935179224490626024488712650330540295251661413516590921494430444994480697713077307909952887253898700846603909684249249227208125531396362086677487212368627758753713004408966925607837481127829403666453304403396510225662219549305750319679981570389526285692224887938219695403818122077264308554482640121738655693083242240948758756465788957668877179879326478155785292914710950745384219628360695132179756427259996508824397222024188604882884264476927502527871399145929331622560308971317225609271560622105880545819475347970691051054302640321738314443572098579038135809372284394074614896726865789049009303836812819295196251974315527393826657546202754397186911503939097072384367385300794090863517322524435!
 7898879712804117424806611039677358948831677109524465484548731558723204904840829679531699628216218082904206159802844243503579834292648431342920428662732323338770998411822058785435803715085647258172732820118730430394587473868906320562154038584784136820571501586038333537761899532235693303849280002214055997633633073817483772395627829978457693202892072304635306366052467047146939211709279680559888714598414359961804123180165403323258014573225467647696605442836467828246390119875904245363300651500166619529259707967517860595848677984854898442637783802512310399957753631394068029191931717857892588589367928798218717159344999324594824226997012754753967678142293257681122630653003109539563076654094698356839337824269783161243273463433387877216331211508130448674299888787293567838762424736854072137239836219235719901868536787378324837756489945245920346494182171230717588370478974699378387732602443546323477395016062605158591935199118701964179155043614401045541437058456653024757069889858957855066!
 9420644809991998135068256387102441344359642048808797137787350152788019
01186187003557027769570893012814602336657006692956783625662603313114330918052095803198514128818504094770200807071582040788384601270271872651601757723571594045328211606632690558417587508179547382204740726320917014841772247365024064082954478072455501608063892485836583696772893614563774574656115779637793230291585335879551936928451942232075596219854875497778264785942854805339911964429597327019274047152922725994519753150612752500945565245436834884703638386905722138710007403419602023581822501784904087970988941490481619702608868072576562499650241331902889073214369156465190217403523874370360903670544915488317934769184352952063478679699551100383710657223897528377567701976081932392373030491771109570123503068901977795609950733294417461157860514057285322090584507141124002945083697001964633291355513631749133159286201574509037377181497851166297674543444704550458661734135701881552726243724877049267806499005548391552488134061098978777891645962654802124295560337280166353834420177281571734732!
 4997337174259233889409193496735717403689849930581892300744644614328848383047126928423314029613520052592036426558501181585410750578319948997143076439858712663488561201660078760194747067081755454144554222872551722835725909891421643206033771227700612558138682688379754157255568317843506069274016086502173272208712023680285898049891671302255682368310834728879844072706537485054729153641253742454489060433479181701192308593009501876532984766633269031737723103502301876176825421049863674365269052507408242060927507451057146145254915076282529142347111710007236929959123188650109985005812061567311205166847544904579548485888341829802327277791432012128473344815380837712051326521581879393100959459845560318741998075378264476438980139955088308569513244303433496909474408718977603738702926421018682979642341356065875129260713962810796116507691115215775217478174468240867803935211717084435634474176938497087643171780089754855262443789507497671042327958935211381957771250036936241533568489360342416101!
 1029702430222628094406885157227137892146835556637455368673428360575713
796
97610833793298785027076947295826145120985596147039784627867009752692066460234557946997481244811577699846327022438320568170730884871806316086088649071011353612228355151873211902051821233465692800602059666752798118762293859996178637387114343016097076880214078404663242311340748758180352397846784999010088781910243221204755868518518251724058105877832647466924897134911418442696320326936286904411033315115680275880390171125919701499314174636977977312471790780917776376680050427508349985140810156875986100081717713767422793442880406727131570036644746103995517729808218693889381738102032862509998782151015784277511258608858752131233326963201945809253992858916866243543263414093749869480147108803495468803507818203899928206681408322050506150252447498286230090534569629815322884660110403211942864605117164127042408374325111563454166453592207071451959458669291268396588551671892251778986406166874859381937297676315713704296823158343017483812894162317261123424844324046292678017474729270443284466461!
 6141648073244136779775419223847995717574404440620412393757210126417296810120231484102236194274594564363616124246745616976153106102994351659779942181425136688957086468117842918955179891024073584277324690625839233459036730823324122855089592197028875390524474475428607292698835189713783350882565705445376713702838820270223042185070903853676560321624142560723147496261962581384173533956226086580800394628639996879542867212984071254256309403872364125504970113148782721325913112348128629576434194543972008928053466572334979864104644471981554010661737822943319367772484679602872442411391018901609720057323303740680267456149314328217281083100558018101636272492928078732498054703911179507409573665379205063631434897050955233879752282104669374288428958719050050604641377353234618817340070951776977240690512266949169445771335709995964073773385662829349645991458346816018629561121904314900667804529253903763136462022368417438326474205720377741740286437706207041919749150569966311169010399934902441401!
 8675873214861312572938854703360196252318422817001219317082247142872422
35583946602156145477209401825334147413820437569607180124198363429610975772212475081914995573760882495738048369850864185091080640297134825731615367815207170453833853353372312250619913775524360775151909951688879985657072034846796993061293107447240763454687278322349777944222142343546740719829436424250946652708117115824299017506577893831809097437864440429817612844608094128431025796310932433458357161495497801392026951497533806744207240227537794292681159147256366084141914743961607611511438300012832988674306054311698417953010007344182861267753107084125034602249335365102823735822138540783812709141069230877365452855942035672796559066702743860860974706229917316895803074434613378760917107964639555863849683562628013282729309395953590142071750183503893607216415957312822259056852961521727737226441360733796781308347546316189681290999069288144819498357666305381684966101138794415873559771437460055543852743433820691090905729944606412647746759211212246420459050207085930767226530638207403929217!
 5756482616340281640519978872826003661226391545928459636410067775073321132980984090052075601921629393509971698139953343915865736098497742238259857396058013315287786989126491318333988671645408604235533493236804278029498665413879101387966707816489869967759359721289350478034447174936508756061641026817709899170948626722648309970729170716823865913140551836428412211663325344140199674803379501943804868861396556534219810271703231951031470069985586647542495052862090038288565042344674813574821271883358315426407509127925337526721588172430830837808067178700633823818023858406570184140384586773560509562503597703892094338113124742938598485729738423697456933349781204977382649674632676497119270025569093690298295128291281309479920856358916647752977630482937969944726372633190939395444447529223028777083570194131159568706524621922474901545296247053785499073822432503911600511264449120353262229483078477406569685849180501473068305902884185991234836724962331242489440071199710467755408458825900262410!
 0481662194860664740283748993528427296159072286134019791591680439147643
52096215920461785215583747070034296561554434854063984642940106675461217410068316212295734286443456899849694197703134367651221891977298547779271966008120578675791722618724131191915495815668649748557786749329746072369360083460114344680223838377246996132428140080758315323753676334824725696471223786133988559225576331255506729811409518765050303535416191934544703970628347120110824720302214601283643702350766726009708218776467646872798722766023451819758319052393989491644776824468882755758617985629351341470626968817418287192077918929846873601159354462047822258163559303373984536578027456051137693855674323667831708699611879571749587198266502587499029174069823701220606561350237961468777581474654515235318536127875242083307523794832497733631715216448296346398368073225879175697326976750460460402293521206332641075551374467534314829350144840470873001359724267948866994458548991139821917039920519416339872519227164922913818319895708400878141523266815393789086446946515701104891501495362966625190!
 1365311365677480312623575930345627734660754751183064258300214619424739793786657396699584601948521668853673487057789392605127907712569314257211691939722539777627678532030018662820420794923833234562380798962163786403827810854536306938890287068083433267655239198198861775760047763520391447539527031436929833922917455739381263335966436371539651079990637782493804745840148123010594943494225052573806820202096316229378743943782616282487831620793191312741046125023483645672697862906852141626215425501489127069808389652706035004136173371475919981100786540028964553587593352936335204784631074617162769629699830224362515237347798634985104261021619233840345225013371652088211319101331622236664315426746248653769025350609412398998228750465774993921349735692298416702975616794860108901912348408607682942744015064848891451462378042093754532804548876298453577177900815757713002742190593252071091983246340546580970701869794522740710196265353921245925010518934635021421538535143691138906237618854493857440!
 9891393489520724346376042815578678445520403194428189309109692278154863
78793101018119605379970445177253452625971550250017798236127639345323159549176429426587961020043748515770166669487511672308629923186749703729873218088442975170357118013224138267056010976095484577348276670159372019121471574453642812165791887802117770307237829318584053777672658026338151711399418349111556151780120023240664813270661296807813764376440695075481434632767763693349646822567876400278290966423038394923954999606184353435610665692386788909640631912319149158066531823348939385045827698799820354521955146977141154100099876512814957831929476855168704159886426851729767836613118106281260728736194420270420192970445400983177822421887792933102373639676628912560376731033816158789855847978102997608443862071012357805055849645779847032129640256721461605405704775467434070697945663295406339394002814704774101846505783957392942615877337150635013294005098403140886270924494881321963034090421449327861234951194731019351540051164580208319420002773883925300929350416804350330698956794428848310233!
 3006684082299532499620203801612099793144252317279580880082559641364155846444981232412045573293401479572618440178830912654942344844529309091182652318232482728236389089646395466655626931440878693190213415639219502822839247268074303437047212652695584234436425319503315695805744179211324094240872692258376782159470452071127269857659842802253331893273847015372304484313164854059288905712648387007474562178302889959581274738918035753397362868160645660481032604724475863426206489108739205739818367989940019872074645008201301005829911919252013935669814163416921701876718371390668394225547704388989605720604520551090816849188173920096752930094805727994680333761049995397411626204900804625836369009307518968049442469012495581912036738107727898224147612202452378243329377613616956562379693886185186094806934811046547886670776465551749961791712959225088189100046916170613343324425059989906284664141658859733071403380523579485808627136087409679140117908499069382701248885792453889229696782466311425788!
 2001439835087414932730703281339558806273015191218806478558425089598944
193
09684821702790939305709896412734135766161038677966875255956362267074770169623550524577569012283933209035510340439187874422216912596777331422543585152680757126198851552712932077751754314896909421572771440733171215523886434439736619738807604749503696299523582695081817271618600535933781098063635836247159596883240151902896258865821433621676579638411037646441167994700011419215333328320714227609431918107963434871633726194716735406172123776680140847779550047215870613426647246091058635027870658924027003276679810584616184126326266562969861901789022098308432321747668003787981393080109741409786808883876505123305025628611870153832141995454338556537169558803515144818368421989699272909077876099457325791874994367405633204288196769644168740654484679831317910868486489391873772096245946776593089934438928058400884105575470250289353125599862002247458293434895397216483984243661556948438575467819766012743567904607228938454049290478184493805190361270314236474174625464740591290681004421143877237475!
 3805711924732968244284885878480528639198867170870577742493134341185510412343781348989080653815674455715261822189629766561969694835239284799186936064498945174834071430052757346481505901939045173767357340449861905004770155823693193439536620720992322146716938595765822036819130216655364905919871130663671742244808876501553140104097131359736799560340481770890750205917285208524767192100954653423178628768629065175075291674209952733853655622340603543822344997692696393035559414696078259703985651684809654384853089814034925894757770287015179682580029412606473071605540968095684258892089622848590661260992350356608404415753969557699085408543850188393034715539655599762160772131624505238330212927801233639761742870051041234862148474683692055091919667565524415494657467821167555215992327694252644897470477257501975102778739671468337308976381801531321132985761751574689861803187310295540487336600735528474019849179939485442336613392012815563833034911340841939691775684451042764341673404975544475444!
 0415797280339729267143245508420316516979988090490770178085223685656340
52887638191274739302553712923124129538690846225213253371619732261509820223097572099271798791983014873385914797843585946144821876136393837670914740586873035656774967668608743699848904144789994030743440028846392030473256756924754698838416051931451526783564572185189409983767954450860801918804416890625407557706220529075046546244035445568222809511630153704284035167720130120662227723119799687847795886916251779436717303203030655696608276476335508610227490513336502299610947901906459933004219989969520680981186090363223588355684004495792658505464150914958412916206692339019582088289579154565831142622237029945889996770496689019108750492473420166588662374209944857914302227107178976212060286284453551159352741671352495949749174547849995979402654886315522667643302868400610669201047608876444600417068804025609887922917671758578384428013329195160775120744538342155850209375290066234899759023627194361060877519377708705031123529869191601548107802772213216723832046845043551581919179213337773882652!
 6411784479325666240098025980445059507941700593492549988214077112525778920380115953487729249651839645840151529994220730407686731582998764060533829822974501785423410580576717362262714508406488462260107934535622229700265520725960364737175757956915904161466412001124161843026153949637842402446160091036247824755264832437493528493529287612690797439934334570558128810821095255566197943968022006749174000437587462558953806427600424395133162458502123250770398124706670487391200442699726196995036455814625151389918683414491117135379336527694450139685363306462295998591041462343902238262621880656999272793405712150465115296133980151078664430003648160506910967495004047228907805644185733900497013736093973934548180787665793401906740939025683114331516080385169662903959267042086569948200072008357373664299354310527749215681030938925576140148898859882974022627195424701969239503694225329679920636262943465643902611825298183678436599650574550181709078704684836279647797813771527599317187830852199873864!
 5818644604039638856785743520073947068433036721852117713464889365056008
71654504194971576814053769915085450249576400693609385705481135044668442930660343906060914289567557258802329975893372959993984378439290357797482140457638124271618985903338741160719878917347016187485503110426940456900238559852896631447658254490137271149274007704325402364726426497662668519365223878350167309671100391341316446736954798486779434873433987244407666722472541297948907888539978171592080196299827943518299280600918581778833102522285497787917102862430439795376746349320429555443721467888184849557843455276268845577912116864745319741049992439315785682065300379055907018377859791429115233911930910484842972016793456505562652261173606858037481790402848690339702859513322842947250727092221007609578602945578426572528458889527732041761105747464339371760101039327081887698579936996263846124175569316614191131365270832712197277053672595307954083368177754234166050463716389492075280173463821955202714926401687237600206289728118283870676060923432461619736398908040237541951555272665624104700!
 4027751918697495449179684801042072399944050949699584200808527566382892512501642243655379972942032059489591648397964357557087016241652232632500085768858409949011427796182059623170437188539666226514546510356762019365084640812556104401344287003294351737513583021382217753890265343000840501572677382801770973335372208559208857518165515133882793797388588531872258723785344180911010495581143744242580020939133797052536336722858059400384583547517004879481314348963403972134801490433815647150888242085638886465561630828128867182651653337018803467680378757763402783415813454043499181338229770506374768778062878016690280827328677271220847668652400425282565521200952934013517800151467718935733761559081105408952986686858897569928120344012873283956975871545077595872559933960702236434915991416300633845418952721610900722666371353917774412108712313514390942523242638345192882855566928701317984069021593933960392573472444428546512894674036813129838380827172934227309347150665475256076548890284821125926!
 9854971388470573139719164957178885958823899518684130689973791719844906
05518709476790619694402156052299849249706156691666142268936202115339752436738767794977502100136583936769842610834745275771180821332496389163669012078397494009659261038251114452429836493978599696938548489940676868137947047256466095671860551699659704895259687491354957947370309664674271157643275266081904127460404436289006965548312693151363300177130452319437479948340221715632081559296422757185480418821257729332558984509894282570324159001125975197833979833122606044928285819455631856242967806649150768423030171748134766355753504218541843312536646258765286340779484265225395381582563573000600769566678492847683161927931879959013941257775254626391871585501209741912463410897689459731043193054408197379895363745368777570335790024047214158550214801268222986958563625799138687683514393266543508157601859746723329986471727877758598039473045126364045057533442603220660523208389161251211259258580587480226012629132495343290757687228525478466544799911346205400548973160744978507121529329069529683427!
 7217341766046485691707660601991567510424243890664454073508395063194249704009110721712573399922684207575312841949669830907973590737543586198141340495230747108648862515410236784337830693664074183911844454347052466564754874897394861569745440139044848628162715288858128042396056189222956518801457332287215698814938113913525426346517009684753871673100294523406074907778244649330171501749105307854813886927419367303794890901179358889786527728120900821040347564221149950236940173724835735168547695967340000865527308210633494039555872818409741300240568765736914038617926393440289775790463614868271422031186720617608227679135142465654241257925862200955335224646169419019029898714415763670751258384226156207324593161939004652500686874261289313793764781383707260687284882628674396902617505867379567649071918761872922897739739541397062873950291932760323342859586790459207601708499677183072815276137868851292783208806231559517759578836492885713753856764021010733666466250308044263052509429344121287072!
 1437192470929643229836235335960625822121955381255195228456876891507020
813
46012363937929787526893716860676708839293620505952454895319789434638889624920663386828139296588422134500122403998128964331820882747388867373525672013842164120003519205157984416570727412764487395649287018119750299385907610519445542245865727749385626013899865704443462692437843339501600109417370487929408929077104280596672714661081187090600853718039402172876109910203665462919806579575410588816389236212211607013506859508418219363771571516841429534177021361144734358269178134435912648147637711409115089318287439149651276168097298769736347359948831639564737140699875985765536503316230027202710682473378205826108463539674917843805847883814909213318690821431157648958509814819393276418665761523102044114808774882684600710001207953542649676343356248728490897229453044070596479716899098901858973406843976816592233944259047545049495687813120100912830334863136345641567383317418844099013570197544166080017390860664520019233363579798162201913523618155519071119759174530495268614894480834655724087039!
 3180247912776502384262185409949346247271826074332851821205227024313840444355571468213202274424519225356672809229160710240000335837041854518100605988881424442357311548683932164267915118913350082277895982362605197284619472541653134061137695831748814288167195227911824147062487797488925359600042094596160997433501329902555260483449901420756361225003571650517870163872258718313264661856544112020996631358050911332690146618232412634161205901338279263469652379878998042420256256519534830075523091441172357822043139575775534639877483868908511505224646135569781934900215928535092664283453989255034428231702945720802671095987105862700617506348850033967399647629515657323809341294883324276679983838276662611337194957402810316394741028069364963219156738653479351832782547671392230418572709314385071362423044483611936968000983074655616672302690040364295523342702206884659235590507792655500789374453900268180265634723632637743729747539742424392022669939587670420986094257738920739065899699522596679978!
 8051534491442863822913779792093873509877962454475072719285180421551123
67671013753784191455269815105652432404586162024009290289004440691851460607131162077011721976731847930236098822580387133224669146703849941387790152300158612939750476404414936911644180659578940758927781275585937052324917119186754418164127683289039145557278933299745459273712957152659623305617823013726756255956536990032261075557771083689969991234484166812901034659336976908681374393913059227635953293604200658697623289892790264549533851511920194172083248944847224511572939382289817981765556301859600367366333383153495850643542909450748642013126200692568139011322061855197122450344923582282679696638426764293493404812214669638015114583650720623449287063931342201836299578778880938832370052589133274013194142909098310947164288046182552362469011977895129086584316483459229120099386570781481800530772533342172358536738320288940181638532835826404923047891576410373783127279797593941074080921958198621857877364149368224577133687780807651775653657817798936373226876960671004825805522809770553841332!
 6053791777278721342038408385922344238127458133582816339165219871533848355650460830233875277306902358699757872746343568423275328993992397513562442302562372943105795534143878881595032518556018699899236855677287163539597364081910715877238835691584980821843850721288522629365654165654270973775807190599049758922592497454151883110703803451800719297511836283026029249312018420560624668516378089336952289866567506827825531255644181949266421986052580724412778243892361994959220296452372700722619620635594590648332268163123579729193946760892599391474596235577647650724588844454022682589654784114341362714699753585070417787646188407517766024939616207300129621314315649914294723671555613573436929467406361045084244884830552095992372122658169441700508688679176901026543755986188205230951797492181138121259802686918678651666179878130066365271703642033846175460206112250976490070086455907206450204360148519865770326718472430684481508587229699490986288388373271343952361432888547213931619917590806590960!
 8595897117835243525499524532209950116181980789612141472610334239460260
36566204019020407714600297272692206901994370751258860656810489699319408916229137872058655263589426739603114946681947236474249755193982174607078026712914228844803306803588631342808359146229408847049592733245038772393813861465562597433763870516657219890902017572906301644078739696360469124486687288438843150081269243468620364989604971846020940839377275175425172078209878171083922283789606636849661024921805176490625593781366880825611711005978693281896347506583667371755611083779697405730226190522042658937722997796087772643568294408449649388881601497425425644818016762854192782145422645786260062573800663769622095548854933665554287382090231662533659868838515476259254035702282205510430497880268509849439765677342809584563127673231461605112463908689939081379652447392768649927468910916926462780677349651772622175050123794195428683439768306060978717074367966473369193749032620381001724268699698047664813778871749443541123302597267392734451462240411656581634986092113364858771918362295945556862!
 5452826829312576453079347653481111391275497914891609560116652152655580696773095955184377365818650988638619155902482002156874511269814406510824224261724655419323564770488434947734089045942914337580430583377614311050660458748724563043900589524016768285630589253961409741036419040942182610398362537895018521496551295118588867349763291893605925556426272633537004421342976269134226174260075099535135450903102828322207448633779329954309470957680948376481024663446336352575605905409494154143344355353640446596229994939546357999919194243578833047986705143743328615129492341566084499822280593292930090267087892687052531425030073043362240202808409416185969556633554215853738658357778344585712729520942426314822997486394841732869064561071104560290356985372559264654554101810571068698989172848286789891872142478702821353746727070133771008660900118300969054541147241882726623032011033995025314294155897211305682399317794680086840628702947065997109348226860023458045770304379290446475304706193989133807!
 6811087057758157805773667025576494374240611330083145481284481635244650
85769948689521782666819465725980695273170038360792905553600743038254813833970471103620135923099927942915163329331508154223137295743483591134834474382024041173445088903773572791893130392349064149517052585103938756122798397898214921762802216976363207853582531984646660628957546992520010791514413284033786656321689032146270338552124895009861658834311015477822045861925537331746729296408315784763818194824245377240745449007263525296236945296162772416386178043255629828948429154289208276708829065271243598227896686147646507636705434508177576142793402202141153567924450574577756073177857163358825172460599456155845260047462300575445540876389198876460620108864725307249440600126766120565350862602278596805267397447164591570513201164639949193203013538729750120665975236933995231194062168182901935879930507811970182769555502501681622635678014414670515595523354652538154440325756772722168571158204683663919949964301519665729742787057028403594490038348305499111903807924804622150899301504065723752331!
 6301410130860612808660208488448064225900914033642066567804010939806281551851327245220353907691761128639967246516846790208034384207756978006957015045600870760118618811483328394701482792806621286689112243986366072651477831823766457536800112160405937683228538774274324431483174174640332183728966064212592469223385033272769659995409360976519167261891102523646211341003102542888509892460057009120008713194622806137128390421581095109111196992240073524328769802407995012152407184018931538419381373815239316557324545457749022215061126484854891288675073887379344255432608637744499103195970048972938012318207535016821431278763490772458793970002307348227162070044424300018038095985758717540162224564265845568042624588255213062381133618360925908479495354519061342103997389485843978683786080362205057975857106401737628720790221786293844092973193191327170630212573459416052876895498266815851738402841551116336533420657015977764644049120576502899817023282389758745592517866193064872985966495646199734051!
 3808113072745605743641770210703773935890056500432236994909290456328039
935
55801236588253230125407773144281079903967316967672818173018086909176354789840779100940331296231423370297823804896655600246844885024809053040247966515498807257212666603668884728492470379761495070119141632012224303289465619465468584555091836954632880412430624137152687379836842959541107723610806140228165485836166879148968965711006865897533025353940021312545069121531617788594223631999621765096638344472428913660985015993031858729074365127664055607448672454568599747752857573695245233619077537490466819967973895568365533914523233647167448362959338753113720913172550642864877612505537024045680494211204754857053779895002349371151419468458246631623931051068961191650735787854334938406810658898202021332050260524361638926022635399239180009512457825237907180804034973418786941664557069275797825032790172706425415383057285395609960573845968422734634839325135550765211214600018259081734686108997939184589872266575098660873320568608120175670171428340139042971014807456343317660905174527646467107917!
 1862577589068235937931882284215770790201224918346293375673067402422570086320357018676341348112758980663677313788223378232630253539421004941481349765327333320428568243790986696359247940184097421162615799552827210110555227856331502937050531511444639764674417411324066995025728055354485419756270888798476358073089677167742782235433513846543083748945453821952342383152553270876416731133128540170979277975063870196732970177946965881243053320648897500393848262528208768171213185769041553581381979158022662300131099130287126450502215243728485355674351101871042528397075576900880382529271973313392016513177545243248787357922244402856956408883210430400359413590248647692197163921667883169084588235469547223425038466882926582127406838238221034335883649139780739235443113985262517681723950619492040102190216656579213829084679523585574804267385110543498715509271838970797144128423631241698543798683968735355886554440047775870057077531895092618043308616490384790626078699218026562190501632170475262568!
 2391540531335193180966886507234646869821953782474105924193055785844030
55976234494575598294172290671684468077063696303468164093479517422201700826336814267866287527742013750084635831163263022699177099632950838702643329819859913937072714649244414928619530299540560935231798730377878544973692107784059169844351316662933582614497424073990101195068485151971097752214759375612780991778044420113291130916486468208119402926180162386898528308534756915062236773988963032920204567221269710484978450557989024478042945722291710837511487914185847126612311036068503147319148803933692622676253991538750081447156960997847525712385695241069102459406144108954219887208058654577841835715844781399448827907721715993280484211438883050266069437070143808704412819658996794790871294923196691191568846517826327283574680522249945510233533844483541613916649557990849201438173481528894687175972017182948659663295525911015967402124330394004174294751633404678678188261588496199274638316981739632929292029531554917286394310565248973800482256849672764999682891277257083250252539565639294863557!
 2753160795936430826313852227476748598662585004813481177207878723347798033455225012318863148222070316394752820682721690004247818037893520874647092180494549373491350212485853402698522615265636862172638130602035376707446125221314171579092051117400197772951217546880374384312128177237186160675775804259597251633620642905405621479244058375614116092038895754483953635153094519399147231047785826791481810647544047600618501976849859872491911334525672018076549523400842711793318386148710977259401785163182697203497260561677197852724057579567698868916863990942724360534145383143009524521737088870535443371027371331547187895626326137561376525936601325609583315974359330971117642512852045316280123907801482754747269648688417056467899253700298773174606451259874383920950779330868724092096763269849124860713149725929307229639602099031010374684254547220712618139685972366100207543704579258405479324406284374191704309708752921078054068398377138416559182638196919061666139601286633352577441881166352084705!
 6780701999812398381711935333902436191389288534872991838178107544370599
31336339270228841423613138847452259194534803588589065277715359034278092230600701084730569828086054015680539911404868564105703170617791009880689074385583775600383376323469627540911175619122906863996965287248605668017052120545646927307720397815875559938080006677583798753402380838549190591709531311679734602322436932017494595966825323698955316499956685026534862043765238263650717122527552704939019081314840758030600095945365894375241417791097439131782464994108361431451917363808886329959562517436656843509161611643961541422476357271816126382679263618135790541580968011304026783878313816798460457759770479348788450792364715394304380872863913955437827200454526038555054983166707426733169349121509008795799845143951952380571451924372363564712192857331339389631102917883605787270699524682356153874354166592330543111085255634458782485700256199471966259017050775385585249312914296747990292323640778816742033530085169835533935383188011888243914774379194565560194129926089765884195973576789349298014!
 6525574860442941599555803807773276797196610748035430423068723732381662579417750689179000122413334667532927642900810291737379657919576607605156514589695661615678751402055101758498265940061762753484831454252428238872158806094205890034490327928148606523975070707873344494034212811771443454700141434458101758546685344605677109295701306301864498562303325348408127747119674505163702893904004393863381997431620295636678035038112791861486853162422546926205995958146447960753322476768036620503363691330265366220859494893281687403739751379304721321561447182303129484692530815896612452126240666551437126148790170414616433694412832826214555648261185574802744625122194832872442755809950954857264211234538842070666388708295323892758571649580810975294094451784525557564494863686272091652828143830783654135824371249462919100898649744317864851390195786710359230266948634489663793099203494555583469259987508912706644855949832789741680920168800485223790713029404938943019170699095078590229693646355896965874!
 6568900299284052597483569624993627449561123243754961428004656370415634
20061470494215418821803586669738991148025176379757811775728003284593295721582225217017621959591446178499531840676055298526416501637461609094213294830922255289963175137069689568801720257966040824540879965695016270243724076064790551733016618193347211891977793895232682272921865941790937134751938762319338874134093786442363326330246359259881234325435669414013713253226090887519939023122881756542571203828391640000267253673351512838179353607184381528038326137706573636853077770101869885884939560581819546040213414477266096748318996471030960354895685112467268760566434480949592997659508150929572987583224924964462469017191661245230277867732473036148340036330023109871769136355155141919651393387376964526013330643627467416189135799998065457700311906253491687628666956317047786510074800377361068457335093509969110389439257480894885998467547583751010470968352452175181881737892637695449063164127499454420738592656460729102599205130059066236081643257927113065887292462694323290711960053248724822036!
 2099336368520564817695967486872384973983678572997096783912477511190764330198301608172310575470206147333185990282445848589920673968973374036487733010568177079552085560360503736413122153655477969802470248829520455299847607440588484563644604065038922446081815602816523335642340849477139693474600731393673273241777628890627109277200748583972742003250300359924194104407042766094207638939975155123548999339740988628214009564453788387405377571546258309027178876817373894880132055368126805727687739076301486977430679642963754209315384461492923011703879872749925777628510249044631012013257254420686132808914739781046233267440012586220738452657231395147163770897252375529666733137513015219124256772993430423881801055573108392596284141534645263359854595655916414048176876388139346905043561498196500988307754030444188543379405216837045342272816735473833390578103060911687867197670310584664628271255050731268261172926937398885239797650080841312052291612692150185104480883955242284723057224195173652335!
 5360493637740284908615509525110852995426862214531996833098021037450418
370
90485226390264607752212059183748702814861102853922724892871232507884712549670268049587136589200739961687527813418306663125028085913946774290445059231473376793430466094214523732870750927809377831670309588972540133558060298266620653911103889648138797116612164555105187217599693880743558388571056139228067314775553314285552244127728741485093265865807848775015380603811182225743405813929573441695553183974620427271895723411995151738269281215178935888679686732423456847446068535532130229137861394614556668426295419275781859059311264682134719768711760237629605470479684704622506229164827417061785632258830656239060505888724860217178017213427997359782126358287439154993754908091036409766942791005476846643409320573936055565412786734328459421114473829864124891980553480943456623661871508072615530979447691180864497589023655756499445070185000123363312557319320061704310819468199719039182718277363470182465152983207161002062944771263439356312529945230588140663468981612725831480441233139448978069626!
 4109965116727299369427603926037241063692296534211390545734154843709424932862349761091398057165169129640261650509008372875722997270559415840799145429120569885145086963326092068867734908768730514406458319022656212543157155601947163900695563377676323307233919162355685779457136250730869633298380302357062149888766064444897659794828728378075351812370667992144287736458393355368804865226620926190058483291969852425017767754455666865827502582091195811393174392948207625546230988494720712637327592411943431285694360482520676000141228786634891875703673805886710288705764073154733976967267369843288254088017835278481812308353325923774645000778798894436636721332711361355231977526230890059552073664381150948782527710280632398761879747733817330293404999697150800835496040265132117996911728064864720237771252633713983768239255849701860767571307893279609595790117467788582046170887982497196758863167963776385802059221575229075045531234846039490864819343901874064323756413521982242028379968504315601101!
 0231544719469286922108024032073856391641124604532350350498278954447421
53275266899869543031953772511719397756644650568414316785934350182223791161221912107017925023591122115421342867650974188270046600207640199480322525181559812421598076659039953083748318979286266318631591579428824880665649297755586492983829909797350734325550984206072027071729488004954755672111937150927842005751004218810777523578478224134789932871166098811645245401727054612617449201528090962557903953835597989741567898991812227913316005438776219649182394715351828977434671574226389915147583820634239418282467571677310159185949126956116158487909119289977199237346426653383232919705533677260905154066401570160825648433815088294707896805042215419106732278240590763987496371373863438438760516330824416063722273508690245083026154217136160189326653346696181528274457881800112096509798049378036040068100468486286817946553410109562991129075903938447119392610207382145572768863170375262741562302834845739320258803983020162544324889466483516598679555587345019707549559207574416741506529909232836826676!
 5644903472298932553018090050664673773922002960408121008989411221468785313826839287333801997815655373209857269680993266013665495992126028231861669356559139362092676635195228728667764975847626658255112774798461856700421174205161583881049412160432476010164937226581703350562541425285055568427584158485690378063947714710257315391199268573629719453183399090203430315878962260450180098221618303818110777824323003480498363745761678453666855014740861661371762229557947767807731128995973786660173387211393321580343627225643495294290167497128743773525985343529718519320715403371009543495331828013885361383178016449333901991734663395327832303493373688952328901724354553017480525973439035159630307184131664718672926173806124882153513328474502615182423927408757983760032368904420513799539143182092722367161871264812887619228630862732169798161515939475053505259948345705750218198504761908513994336678760728927383349909439658936770287404828889499963418538148573747167413676988253577365507238047483455357!
 7194113837179066918718680895073052789126209794627337544046404195387304
22203663683710486710728299713901701428057228714871471420347033079438388164110174875008336927807309802858047635609882949365082870609316822646885706529689407854384494364514122767735198748675271707228710966783635710349547351681866764396293999784530791806222944016602368608577024418169614613695636003493326948438220011063919520688595071429544473705668618513124226580988445328581709819585017913813833475642179701682308647367599125225886197587557159101187715507532607415513321299811823574002021012338516845343071555813844838771697708435224926856149636433833689601075692989899781687106184414808164550779211351598201466459996242105783454191213029722520001484227370158511874896408911659006351396936598900824993616558316832070548450014636252477051641671330002646198420433652516830259247519141834922092887643610155507808083173505330186541257980588176006123325636613321116735660350205030204555849282798592948824306610105590335932692936880112969085165400740409291163161597008910509516815910017948271567!
 7600033016710163147298755586962260139207510399975489831848300572284247127194858873308663411995410074371491330957453370591636093405524387896107723038518471686669588101401007983078042822240798990654058630419430073201947085420309427455688789459218936821033895242470441333446999161998077221959914433128642274296424785994072019055857040979706950018985543162502311632790670919178467722918907020267963069431573202694292693193458979286076486738960867720845231459259832266566217488461304753213463400971097601444601067927511300213139618716262929419296584561160524426327052316576662787453179036115881511967749914077349108406015244938504810518999805049283904987567518743430039988606523129632266323928231048215129255575101473560264539148417359034877440410591128824340367147182840361979218570253878896531043106897218132813084774548723895251334961241924542034311661849832949868093367474649420937899322265243193732297760866147356819279675574583630449880001604237907275943767970001331307670903300000698811!
 6699168607267700189499079264243553702112827211820985984808516335799558
83248479415888625832109579498167427796281403592673069616147377872185999918902024679652015368388424046733581684880795841470898147054078333917091206956376166854588732559152395494177520205668039423117193167963142595692537002435783016296076692199537282071278307776419081794849571981718834954430410745842910731573989185055062791130692887137680494413569206274383713220889343516129227315526561892569468864619185747357299087514942998721093603494486722643404856621395463218332243648839663807914991824566212024787381748827424152864892646753296268629611377906189374247394723389753045266196763386261878182601303582862209917245018149802024835729850145281373526772302719390896321058460977874686851433849763755678916701603013872879127096804092388019392373841785193754929040048845156030992076558283811244404355054466567311614302365536637299340460525060759648691944644493548283789742844466599009443366349513270665981514714866901414872481691064038322891864968768534442617008245192311115871298184335620407863!
 5359363119136463254653730442745710944811195047413797882487912908817513655045175641642687149237612982723209521683801214830842003535640181561932448473769059284370610478350152995096587256559575645452803541765913301455306635481655061993005942726132245354074460536869598557796416391516847913939160833016451857201722113010361980457759312849075341280935240692436805986515335701731247751476108859304216378065047964324890706269412662243062332642365801861283032753397604325036275476035391780296585962246831018184588019177062102470003411833170734364018763386837436966412957532972752208371760665688493889313476848040810613570072896157207209167801132893478724680163761105837190380338552489141282197108319329314670395522678416257444077829622965953746365108839486996222317935874749478696781918206637831683031434831902996652417348571317682723855222914565325919008577873487482661398797351863423680421379547719523620741413637716225013430197462993260471898201672494346472953402589151614908615574976191941431!
 9440051660808242759409385823302618552938945093220876365230093432688502
739
37420173907561820087438172563236835021814527444252851991105811047069098849290016195624644901071451878927381102160392080482153203389683364057028648216525391438474538913831636785094316375966562254531701436564790214621188299293415180173691504496385241150141639807333544568525795054769092646450412052088578300563470933433394226352542408418494350992815406520564250331902572089642533299098194009363084321435877459066567873863100688420462026716840681450982753817868029500350835741573003143979077355842786525922918377005227479161806698450911174601490444369841641957357715167469309277681256705462237995296599823822080096302817975034276152516923684336258217695783786232575438529349166888391801972151010658581307511174188346759522561983392164130209634113863737613230479174761241515960430494334567054787941722979424561502550619746646764960413014777431755019787171632999941955187480698250688360752517329915619893356285920285032791703264353472236861386716196239741504218152340675714571946462513299109791!
 5971354091423964863172464101412329114990617903654821873345124715782222225644291411567419877038064511553459946558911344243961486427107229528326302264285298220652201248517196415876336420058284170707529071012477249734978996437243423099461246958810520610207613033246069676494077007073574019496425501361127680975504716530547889911331198582156000548142594350416885664657773605572582281830265568442308196444175633971410320542621179220559257554318679081408628790988019639099451824152580834772326920985084454745800054821884732414697054277133491214910686402634915998952672746423760126015060184546690030699873952826209372695300558204509463709551858747849115252658339073546944985296172891014748211251366300958377107692937008204679296639623786253571669060971813700988588703479338127030328562324567428938318303712870834587114563977301178008490572175637579907575451096658089534459629209307589731492878845216249929464845879393888684234665137792974549113566946292675847549055701499306488542620379247498914!
 5837858989778760902904726712026768795859441208803924220151865977085476
61435129720462627411835247757192488073532099207561325203103033403810875019246917250276078250931425267314085628813258960325386428784355614527662060278174818678259938449415002371876571509484886336538403402463799474040984843778464061040867380855609141236279606722105266728953160087481288389252445333907253066421444655250951812097412521968542329722296586738280246721635570846348139630193394498770064977899108376783702674887121031583966319883222224053033478668164521122725557773277984776397938002364538000911013350325000986558653062597510329270355575393921291782945556974690686466400061347765069800451770844317839271993028497300479542639173397646804848747418162426971864773960085560665136412482060814212269942898474768288403855564400482312079669002129463895690009491235921368807893000175020661441930068615319731940377153088768048849992971726020990575873981144854833719210642410282840599904482590609128829862522653130352623469148415719755018121229056788258535949769975492142219987019434464752994!
 9525615859983150349528332307665737978721273916759950284879589538877578126489726999240658031354159392928997226853781381320147592530167087434280500618933843364996751748738069736164706113571996625114436848143020036207697768618954812233866593496752313148825549209662926541933946874681404105142968614302541654157428347784278933723007082450756238146595134419659004197266831130430274876646929161603729837509120857074524561975575437002251761501106684182298204148736457081013113629129937661823965777370177264110489410188670109913157214162920531108880746384609638121647885078121532954970050563368999728212897348553468715207195842949286231369229180062364848379201811760474796570889132736606712946054712356585641141786970940155092217675257115553492371467519258797088463399744135425049295488587457784450405954601261642765758333648178815395813155482403586468289618875250909586520538335270109666989036341367164585203142829346819739919805837822823943727789452727211553358666598768065706083870838729787454!
 9957684036025488900428994395200097647086451099894894009916116667554029
07981456471281008453478719046310999685564191234263895872002191732114493346115317200497206786486103842100583968585839990518421651898855103736058038600597522905830446197947916137507187440979427346616651586262686804956480389998701980950410437427429170651362060184165241609004040039937164143295871590599750398695893513034899140710914315035423475201123017383792780377797830916301170744089342591888945260578574103660249534489616334765430315713333643758629988410883584501860274613204426996126473227334224189109668637271253187993926690823418952572601770942740288583924096947810967863447075357831955432905908261632384895882465317834082875224065715907429533939616483594771617796469720563004698358537622501281287480200831255525649856326604345466769518860343409249140821444972259306134274439147691868817426973259230604205349718216843698127070474704684735354193162851217998339161159849662919490693614789623897704719855849631734038735113551631211121951220944565106537784066155402175669691212260911249417!
 8159483874765858127680480827801936064557312730430386613037975033612668862158376304767446408253952430704000754182783656722666076831315091274825157257106054634760257753978675077407985741172973642424530047234745706758498183281178280108557701197248909804557932775750510897328058020571529772521133600504809006344106672011661423373139672876656940395827762332623316218711885051438888572369740143233177057232098703956654564185802095352129540432982972359399576808231757164950391505904508959258247087508827927006974614900623259805523061057551159801337648232360820758863240481263077391415517466446299389542231665441078052919550696466644347791373110405595595454778323299465457274516160307191574570568488043174460325168763973848927344951251430881294410662825753641560302858356858647700061787949393232538363499796051036069849614806631205449021368077991143433134578254778888047102526429284097940464957768098228439218533801830157762423727072532479136567179274196904581957413448032979187941272008609152534!
 6627525901098330163673287289644353856773948447361041830619870371633987
02175951555160857727452094792184002432965804031666621285104551696423491736742090841842385413887104534171075186665927848791316568837160594182148943969013077016982465161632487588410683884681945278081470453455277291462595539685438500412558459093350873456078868820140018230904957044172449703039224770994046790491090700145842978248233951337844587406501336580671738417230119844036213323140914010824965935006438854912216084243048423607782541533318754608556736820176726862684331479038735455170981439612740936278417361677163039896360020074792718953105386176545225457237183061190428065909469785130349453212489220200429554564662081609323349698333669280423150220211025140132942833260986988271885562888128259951095281670243723444302205944407834246457445390660139931022107559467801157796985015582966109205288635815042975223435735638138700631604942565427040617026454545578093367616800626698147333100116263309192095802360353739769712232293808004012416780914212973341306722564942787907514992941282484925462!
 7091904104221274493647782236266699924186703095360134921977489249786174091991029553892692366189844302144527595460014243454124889932967008108148929718200071608269451020229128454186934873627305718999139203783911832073699120098590734681139643182554538005889134655273253379658607109923643747819798590415540202968921694005623854452769912475051548143243166228877986588717005449197374457045388648096820645909037205505075532893762540440372556886033942788988997880461375429059773807398445072539101701409020642745455450111695192302571119089113720379176671449137963182222812844255963995756026857415753633011705161464724216337381188083573300940970809951333743889094168125829433688544746569738659360577824710734993091324668450633889669593503869400785300433028423065747210570746374403776627812631234297829748256511935861092532566616854756367422761568111081506560762634914711170188478506994143771993241206822870600739831793043221442742429685633415481661478812922498895814460236596027010742450809920750803!
 5068924362680072837684264851173667505926235498710467455345877844457871
688
42814781852434773458984881608223959295448177450894206839716789700438852087582699581107751109189164066363013263446696945811725027630207036839197959221616116226610885091296762539442492201103642009843967082423718266276243878414628993602296325904423050461847898323768379548781308653381150368933005105166388913704916037159626293374968584215078980868608793804259819568782423836289920150855098891848007782944576418358838473754054573642138698498349492897303360135477063579094373313575324629570190639573515627910184568959458565396742183904118631749691578051016760094468240612547681249909147969212295051558130976330860226298660660693933726213050716034765433690340992616647350166640591009915993359796259980610759757969077259505702360952164434373858101196488980182213643301853091646141254537621870747626085316039168521607561987602160894261681578664651837443050908019128951764465934776633994188840256813167511339498055730465350192143758275233052223037963833163963485846716240827755145169846430716152083!
 0661441663262967529639288651094084470470398591887671819995622641719695072189962486976641796384596074848414445543758735304362998028437473153409394775967455415031177409552679977534788903318547041450363599964628386409126838864181752336755772880598593863563400237063143800175591582839060684594920830203034440759196364927553239460965287448597723872998015803482279254759629982882330032393857302170997871260170780106680149397573984971311642780324208417903180958475798152731179254854999449246102156094976928253957545859001451422015870665613011889298208995033868306994212787487946250643668777207338868104927061101995065574789858152783596703160208251690580829608987841120375223779063262483709239766919618364681214741792964527671645321716960328718516045334683289813431885482705195522405600337298533230133481339063375023824547231199914955243758261705127431913579643935355172369425935132611198743899809953200033281172310957841237819178299193038049806666096507226376725143991530383121382148124901529523!
 3733554458992681624359525654814347017883245288514035564237816901664571
78562893951962698777464339546747930488785957338757647328979049316341911073668324043456089292910142900402789056348017496689390417820998431959037355270178196833008748810749039247338077612171761528992308114119009648501915187630024546408770563101590844622505960843123785127080811902239125684776388827204013851281891122222458877723682854287961047273250290847451734441726242354984696304600874286223081743849189847350071287151166625108730809991500514006403955475826269497194013186480772799474846109287307275365350981734271090018477837853764667598904010061888695926710486306732771129286736452648830780507716927942610236164058290603792703970825087825457754771624557798078648617980090124361350571854584477673384633881528257786683697700440310463320047763840850729063969031912910095279779428103635735726592422378083917828166568440603083249479829260333417114279837478251652089246973533195881438677333806959232896875034459808476304478128379158618273048326771357164179133552327519835863744873682408515170!
 7036370290397074392158217616569624567387231796937783017371698965269191373782092342584465636308822072735259925635646064090617510003823695626216218327210337157095707659663021063610575667401560275327694477753422635082934080205788874548043819231642887270229165440604047314128303283417056607378358952500824529410050909157622654544605334103453314635773917915962824570942428943480480873748183378514339945753431019748158444321038569312992172756586689210628764309229042653059202417086070028761198148927241692781715865680160377873094502908861325239740560779524955766290369822408030174977096655655135443026507377154131308502992271737143183531504632018354272089279815955918265459500927841081594191160356835986759904594362343358500792601385159224635948706719799478105823664308252203635102940513148765522432312882875997680054236735126668909921693396104643293687239642702482369354710220620608423614822036654170171064385257148306288433156071883893400820377327193084294029986089938725356855919254301286345!
 8270297873708245312375763801795592356539490521421009959590112947918252
79532591018135375860659568424947447797937691247211949190161410661234344175206205919834781508231449277061888658332903827447829236332805050815499955310860210711018200630731699602700406350855864467478428059331866794638414610977342377483236007646527364953005644491170427212162566104215673626383913827711373548608762062989257729538994177024640324827924085019529319546811192626080248325234471210867190995544436882547305967399882676354477533635530155359981415221809858835478481828445885769388553438705681448757997544233668102774273330362022685941619355717534661368761142903183978938437467919828479184282014162299868574020956679945543070206599564426514709028047675615743608841065549203245108646189168360052300618315463801009729937371881361885471694247557044927032430851513709633436558641453474021746039915209304110577435941349683053974584658284601436855618210909567545547941569678252802773150552913162107861390283560449124050971146916124635951050374858123947282624036612069383806819901201475302824!
 0961238100486194021704008223135267115817158493057165394576688332870286828645234370950597164544647858726261906059240663697840513225490848427689141346734719627424382836476762136126986290119135315093634874344679071331091126549129678560679944725899290769453527059944850124607089707436244414706518176699085617457978026994872777852295316009726257925864725665804298005359092232638939079253216899989821076431886750366903937428157908263241006606624818332734643285909516024395543493756615565436782797151397630295329994042926236317734622055387929261444665679881661394555710134805431138787059572385600497008488978915088036122100799020466958295227278050479743003942627511891888057904143172687651539367497330832792146584942989248038847682172273980884515944605851686449116431795492207548758675762806695308068511453729473603597729947590635664858081568720042673361365832982117259844293113238968726450660842602075966551534241832078454048009567588728021309432921130482236350845459550608693174710814120156944!
 0181795666900753642903325742226542761026393099822140503371968921482057
03323543163120734873801201483831257081999473449180113506483806900451317687739803123558276510563011218536924109532470806439176251083486085183635678742288504589822593334476780670604829043009860843418337638784429560274193384366160785388740174757557924110928571246254448939638298908293804387138694971542598250640278118017998147047600336132166078430717207601907196171777296388125501835276992880064093852381550922237857696928354321671513683658375375936123329118243270179658098514995395921449407860110965432037386560203414916683130387252130808243615937253802139409631037429241694986010788496292638965904152458517334799401316640328464427687373042400618310712683678925569665736864070350564095967150676638922984902459841706737997192414944686476052255739634437135501668081257507391138689235714375121799362509028463206908092788333951316292556174410055849385997750789505756399263102018438773844996081468960516153839274110813199509308260140729483837509174667176701945569168936497684495724157716465682511!
 1141771136413419173549728348802196648412559205822399431037004253459326826107696114392867260968654612263798525546550715519399949163351969591355349259434535683774117038432867105075483022025517195656390365615691196550723189965132752319197529076074583545962361712441387246914370705895534359606477505220355260026161254229296336166018881705510245672493554275808874066936999378999161957388523068587991584087124806198980759074554607295385001670152648822557848632584636628923036958361888074874466493579970486623231180617081956050557824049311278148563699641810253870121161383896836408311531491831836172715788480794869458263890010734599989508168544721076882644458010573501911366865430432252794791522896618334429226508851614425174670995474714202549281622528131676731428364865200227077753792101223511444796208964609353023995359290760714967610221918576417153211172432645415176007017035463005913408007713764372191268604663803937998452312569893777484576620120363028172577835784608709276040365442573304524!
 1441449299278846509879826914884756480907112572310815853190953839404319
919
37130851406580472067917437429816192585832066067966168675948262972512616071600684517785965015646590764912974382131124740105591583345115913877704129956259376013983489302307330207939991941706753614295966813268448448050889887700755771248343845052002294035924197068961872923059427615680759756130542005851320381643260108973323625140909933586090765636028250911461835311834863640835217059729648877615265992538593189911305826122095518433530886952212941603349636048626375523690916033157218863677994036321485796379326950406625227055644313883700040571329401966498603745864574950121461107756193836580270365547961162449515911151023097804072345998702610265451446511291165273465760619023009455886262020330670649286251575461076064141851911040796592879653065370649334934672821952074294780369818806348575383048234360737050536638242127687296695213663630984096150295282605418975473082437794687988204068348671224842777508012276207181456298460157551296124155712716303721449096957348645970015937843866328270950693!
 7949161414318703995093257587599563751014716790748708711678654333898084108116213125312446765347853872760378517587987306911411735844034303948940844031478814614247646085032619729953313278920974208669462482393592230072913742189938124704297896687263242796082593522959836745209481160954376579233598215673632052796640049726504202456838592976048534906517021496195598258306539864138164546560240182979075933529064328052236372948498425394271072010121315912019427696566113450885846997535736617098254856244318463309355507386881378384578341034496637065849035770865538242618365898769952792932712461913690555540642305320639460757575683883526053193059632358044645404147204620234729321400160490208154171185430955859522734363424415101786202511958317646034996937050371707726875632771410542021175458824555151402495415119272239943296189533845954487142796321701984345479584491425647517571673408081764801344875924205150358662971222958855959925885911849491551793911174160387801580817668684453062227026466236061997!
 4428777665936653769207275660753783625572680984452256932566207499241652
89287229879448899877352011848642059688191795273965870566286354143167974398637567559184420727706366024168836632787183793276099758658153568772138126191778439569379900956882770293490700945238539025056671218868161793591853263105144861403180861776358213786710164877181378477762758220348220717142874839082528987317354712898806820870801993600654121795136659347611336338944492033342242567448602827272025678722083073721916484917363506028916434906015706071452057942662068009660597949860595901876919617927611364186079164019061986006517245210705618482928595419099226408482004410770554722662509933257461765317163484527564377758038798066226437868197400381448788464835498830419284518191720578872366123761721088644184884265002918473455957855097581011152320413129862152475049355098785317130830203907875409845299636842915554726415925704360906491148960169038503958318851704473962017711795714810312634459563171418568635023914157025642079723035086780619355164532298197520587771395191315703412467898041391926403!
 2364409339390713301448062245834294170151927555903190005735902529402955135515710733142941339664048614653687938813824974821659504615679888553800367711057310280235703619644007761005839135531538288034188427735558377019012482128153136567329243379732858960744866848456668532687531342032164415576846419225551029513834692933351699913552927678230270678904716358702036507856443426578435814277121522332656505377588542047907400123589027306655606409792495718035013586470414618608664125774882078146745241923157098557555276210980900432934891956481389225108671462625575274167764066174827760734560394921416294155666732834973413996268840821566980112321455005998858313717251792398324094152051115210231324471351507514027795188035670396991354812760347795158431312554599178500212746993738745928273880810346350801461601442116484184587706128583588840170814376652818019509686949730956537881083499601555543516722151716046892087150841131994839029204719603302517161261958834856490215305658487972144475354221696012653!
 5531839211410177311391303272299114626829235172628145711615453049911738
12760693435501711660865986309411781488487762445161348940395447415686894308076356215854174412581325343106626696869322843195944355656175296528502467449569514387113603185815744802855192876450464350643933173009934112566491867175265165791888709692948722494804923437118427158613580319156411664889928336620085022110353869202986725295973655012681190233364049939933546233632672517730219693949410696135314636605211671657027274276109436585253397713649561180167784249567291039913025534469971067413792201126606589446487365739586188284807220047512994915704540890863053014801827888501546525302893179877883285900441321477325211441601768059339832861848969958162887187780663813331985190433849372612195818611924272602983372243347060713070812868399713321789888477679748807230488303820843975708238744132471420385395088849322011007976191850289817907783289046516601679544480806149315827173815106491879008553882261799323899368243033038245807546940123397106694078049874771309705075470261436767263246186428059573463!
 1205232501764149496714972958096415046069908028496366145800058743785690755904195655121046627832093255680896410924800566916395816000813170834305688011781381042676293488361826252197583542880478991481301670142594903905270349480529500896693990618952509365533021436354457992324728727295904134933055513626169150503702581087656767012189564564038762725087711294322909151293359108199731005300109294295681347987437680102376330749998361792954156192358474691752273923426661413974309553549941183341895469522910381359160371081078974736368481861509485812196285285807559040003950364565751419300201090416290332587939797983494770057421205543877776589682463335214713480537767974168471086644682797381641551088969635860951459723429513561696617078480932577772934140791680281167999876775710339403575562552458567136443520366762032804135959272624492603271925076744546919333334878561448458887399826003206009802415910496995413310684363173637784854295583307170187343684895590511714215504868912704330626064220409370515!
 0693780286984654727974065883847155501510832790373529003885836214699058
56693539573962642645043278831306979528305793829563702747934563171007137374871051092516187966520361815162538471156283262707636013267710093221641956097285403959551364014680047440307087733194263296201277338355387736041767453123607230237955902883534321515604715857098054474282136072202884394782356918259399503416908782714164286713909829501647628720416555708538408042186667432618894163928089055547212512850947912747370527212913475635248388057558041217494779569544172072473722191911554567107059095875979978877795657016132233685037036831356544341864150976465814939680282790068611969086315889340319391007701997105199783036205683792091964003464752274482373092734857809888591591926316216294839470554809862077270788785858675395391957000494258285698692289084487371526731313751364640650477624058738352493120998162976914364329581988353269388207826372536802536790473435313161887131902879408869753395493622586182228231025482597844601062727905183909406535574342558552555654647724682096458036179355254036367!
 2900376021357940591008428996773718567265112894320791501144313426207411185599460777964386671094195523251586870241917914457658468465801270461217797922396799425444871725033712514235694118674439996293013795584605908937468471853416562922473999781020248880540793455963322377413656743102425013850076399485169062070895905862227870357778403307044301593290156371893285397985317461446798773779872480749601248521687014069603627474189968647003197038534310732496957877675925124937181559463002106197117715984893877179605084541924791624351255212731986304308110915401747699358095591693573305480074064224488801752313385650677105023176298333150513675884735820661076619343236485445181818437634722541959277378463949516309602177990895330067594533719437758724506876348656763044913624243830907214046882201971603558657373610746861845894661620060505938129709011345445588823676726223663919781301588140222558948171836609551158232640901877518460220084580109142309545783648533711539144238572456213029109524599402717722!
 8166379679762688245897855253343514898614643405768738991247644637646252
478
31989575993562944287454704075635272886586801411271729891607373541931804379239484101071416814123842336958436451732361822007620817078837988346621116060906212790834922454038362819130863054493035329749091964779510739016206657212900489356703281018534033611569903408905348397397627875981789928888502574874334826472905710586420630129164090250851373699344208271923732833103512929159639736227181741061038788093632507725271084379624364769943935645324007751353503282664121063629448023050700870590752367675722741264509732931091673597665880253366325239245304516289356489791170737119007165663833891238548201062627229807243688043945822391306411652655400936856871194596467508117482262630965521302575415587591386298715665451985274538235048510013824330934208178640939736901735205799094063010231390317387432927312639590742163141508323577582995111593687183155442523602070291760802662046389391426925846018486069808622827052289386167195300279759007301967272014503897043951249633118156658917929092864428670071604!
 1001190920498845829323038972139456558065144405666887253442343759979158176412785185958197964685373231169872034597354294173387015730028707709745297512754890110610866696054595574650111624367756243308989172714386672651298428287261344111861078724533993559204627584384847905062306515241839536868868393903858531408511615432756003059868619968736583815225382769494113011481271274615663546374074384908986936086936164782981584999128663818932125659664542409968981864049257585575495992069019036058964113601790555129994260446394890125032974962411942189463532701215718687595032495716634977807606425334891977569873534343500212917070077397171105590153295544839225001340766432203296940676286088891878231042705403907709416543941767535921699498576729415076270385745782735076581974629578116609672141092159090591508109090710091585995438870308914532455887618994707255920513854537959683538846663107794758166818558127774637002009067866517054487863333508213536776739443187401619797600629670015192266422043445311312!
 2285607156998623716492446291781056458568398529222458962350635171866849
37705038021381001293163672117546070872526771530546891033072817680541652913553478903314916983264661271978065332368085008641683372275721825414544905608828261755176370200387279857588631431741756214525339572210311686003683568835872424769731468311978875472656113957205836606803909172455963466826030449227913748414114981008837328898453502575399951111910026270899050465168788537232428760855257917124190496691124276479698844969627410731675540979996448722612294468036190414280993242249230797465310320810342057000323227135945922344981450213654633876240949918947885506282340818191160698601032934592517013226372098952495935352238970609125771997759485618532579272788590776071705571400230175949777409162576640790932267927953996972560808662879586793788758783015640851433048649599789314273037062904700534795251557396194251710387473592828228122295668826466501534428128175404887728424618355020715407532593232788260950462110201719330137158944519792119357345375082537897125745907649680889838605049461661189484!
 2858547024702762121918972816925799768910892666279394396849346534024090910205528672837339915222532766710128640132403387292247359180680534550694952723956839440710727588187195168007991913793771265163517164005292208451525247454752695051299908330171000683400578452355668689173800833661678618338753035102130868446757032192883593295090597101192199938525889402040578225764418963459886555242869982515103833083963375901145793288759034414914699115709613541806982235929975884830356000393340352225174656606780425267989336326033140005897472808658199567471646651178317548068549318187723575183201747497714046001760299586183512012319129435615595990262127470314412144685089186228067321715706922814684974023697307025778384373305535360454008524346654628008434798602707729451729108295745279745859086316496647847587352106880342627826215391361437410061973872636477037784496337255098436144774442625820717146185588612650134023958654415006547589686536454594184266562076486022795184480384840780512728886337894737644!
 6045365864013504482895884080393665270350634201718476767306138145220979
55800099889280817067822010357945042798545928794812225270292214813284363497529738862910051469103252164953317463076354188246897394983642316570975415688601753159085049371416998721271720643083912088687058775713186125699937154429715534442026436629893892670532722017632914630440285520152794767305628019949053826618713684480280166878647515914749948453119784388531261748375489253383378020037118727400750542083076440526072251689488949860412148147127406221089217365571284881998993627037577532320603666414282647529602814378311075306116034724278681216141959198150793564842613926456079458625075039134976259044266268084363935025096884277231640520005997641823879507354304421722336635716387644535167265189920159304695650408156755185666500553038624791582873603228897844223948969827641510878954864128447728619380286693933003964979326310535515810589856735516355733941357049899121128943877271681681306707115474158099677646840469127314254420501114891677258707742737167208377334391087720484047690556938275217070!
 3957929582874794162539097472685030043069933017728075046076138628312753610852265039180826797454052477335323264770103021112447456195954500686254067104967549695796495178584719492350028136067887616784544420559664734205194927146841982043435023645747274448851361027478111045995456511192696524283198566745167453588721274576646429573282396871546127555101093574832382002457153587451753939006091742063851127621542020928784275537315786892982620209546183815320588722540798683918788732310520183234856579394205167412889538275441206549575361390935435588906994345853007121430219165384707589722456365479698215009970552556918927249237034809734156732687055661895938391515565525480935424891510154406640619527289803350470220500087878582582700254035083631608701312210627135021690604153547866460949547204802515400687971068688240163865792364310456087781305027777621303727723345054221345538704169853047710247036633965020042962421181930613725239867427512827947262090615931684785455341938115900341125510200437248374!
 1941066835592945107699557845296227892168901929975413615987839649744264
90971396592306850469560325081372933454046840863729709311303966588483607985766773524893127760333221734993389042029293539371711267067850284640767023045895704264151315233805080425850146699526357273129678981141998531087491923867176644427712274872369860130856663259438168000200507514389796452906627408222203819427794458713775250710716511731286017603087192266135412242878328298486366762533723458423913244682107414114366517690275966851148555593722061218775209554495614548314885395315938905878504669613116514342164977142610456756671984467583891477572150602604794261872819429290713609095334162454122313922551109497232581054258449178948741886109162867545064338324696186008300055510368650916798028113860359709409466661271517560315879189563097861124790808104450507722256110573402851567448194563779303597251894419242141713048344416682025233445841886298152045138369140828814547076553317984522489838176840606871230463016166839564247579219871570883165192903379809529371936471325322325769986056838593124771!
 5363089950006717309216276985215136533829629241891538326544577618421758671808619217970292087008761232005104471604090304164265942832029516511089457053161307238385113413629891467491668055115165603246135698202560912633682842140379619132720194293307630715174179381798140379013977636237655710564226610933058606405294007410762664193081224357537428227411828634656372686790090634891598790100230281416580039181470606324565228735191748562131005999937714756273223343809043891672817916379003795639660857510289557035713063452987843571068480981212390129062335726334922675877706337650752287748215303854837758650726142761794474879683835916943012127305430138956918316502179432855472722574521876967814705508121704577079868909133741715714657425987467014653019251746339472337207893164908440150584698608414121420473185250643119877679506908154317327663220548038871835761970421012269319294993097837362961322028921554916685629770399687948931798979789832059074932457070035035914475936752629181733035548328706700210!
 7293768325100042908118647147238867041234804142802598438093676007200923
689
79431320561311875640386587809389559970565971295596412140032246698039261039253603480818955523701325126857652175274630823038608584601294036456187347226935645503996767400238125044318968457284274686254181521629273480430393303051380333832536559798892256798115866076791936269172723249959706459382200537950961874059504147664289357694167652961475000274890673189571100450157425835142596974282144113449854215137380155991813676392568618755853129095031814624316929886218400052153999746873884727738050565259508056758954117055155224504676501431425902489452000694813121879752241814458473484501494120633307528558660893027921072183168306520501785532099100497169641480786566332838922367497519094526692193377450741012965170433285190784299010134674201460743801047014627616723581188862412540689462232860593845072083668919869691977394233328905075876036205831604005958817734834187373370940831100541319968184906342847550904547014594721778729064584781748187911974577046160099992383218808537913852624170677382713375!
 8694163546430981227241171812939156522052120596300275217520355653592607779890612863753283211144803203090369084993276935573234139863492254762967227038400492760801740560833298321692742657861883296403710178386185093164924036772766370514160780685529631546578771683508731558625193255884056650196223041982124804683801509280740163945022087543489826048710451490896462950150699781836398127804706962832424927794996883170632929175334813931999512829498294124054692802221037971832202716213117292685985517572558950787332548744869351850742180231290131561927345805894885367096659680760107232792320303219751583359956751073338151877498984813470687884599256003043961795633198144448552295370510910160617978220811980618453113469912058200352071778982424095134085748323793557441674215611060823552007949171827184856348778715347340488916232455141836716456883145444143832538555665533548391098704497022670733614969874573112879935575580362735801196718832279213845494103475993296724929315000919169791972686176591051127!
 8175032309959574960042290364099259140110227517930469631120142876399677
70776828921123408558877195211771555070969034679500303429957750027355239918184745857956365704864487398572715470089580901031015391581704844537445736267572845127300499985029047102980094244192948540232405052433374770908334146465001570812794071664747647271176568933515369131665846623348061326446464285757444632908318282646030207734511643396280932981889006218292839620420337091903442824090539256573047749494614408167324827724755548990150178771925534733882475438479427774287113433230419300455956434440041776946847061651151982597321650149855818395449684273123568407428166039723978718953628692800288499178245915302547599590802804135121254216983008392305302375290032911114987456275708384716070759626501317830010452373533324893724848994233939668064709123968338252707444764405797274284369497395569206490861050608582240520409683732128931224455982702506320016766405311886123219835153699469126148014594444198934127775419647930448124779335064563370461754411687868753048936063417704683716616231297083028919!
 5925320103120504869734299703472089132166896008967154777156970702192578384815278998136855937344126444479174322593584067086743267562673154480127747312172308896058944135899971431430355321062261907944017276888024483520143129867862037726777192824573366960263965520093512994880707446071408202381003553719189640880373178501711329541272883184019466350718713276149682308331180938083043291651332873318402498475247077718112310305590103477484247593634760282997301810828482634431438918109353976726053163165393974158792092049150562162620118899546619847867135457430318113282523494874582119251298737218240859385839729852997566139079177217089601383851093715011260255015721361354580357511073410497620379398935923250947089096719386297786862535213834678449032212055494695827288642661024272697195873215112392558754983666709094380595627098265289770485728112353611417732661967629033940239792759904028127708760140217754048225645778799437537021740835956904070168025813280805003475654396698030910567708831369608043!
 3419421892838726707518208373409538123878195266365890892845773954385672
26473148781990955590636774793699931769017737714758595929646596924847756273983330781298089764749344925275601751397259626844842134839054624385860528916070194755434157027205684181170287139881260083784919795497595135804776636656393232998751747320015097671160459711464916884673531731995306728737354964298516125672486897372238922382895448801845455361764862715012754738388572228786453515685528891020339727572495355671106078218282809461019874326155386863303956371658567127467036634412760525075228959581268764527576713283204015299054872431139332522121855910667094484304613151976772462463233309335869807770852450100725454292478594410277703042058590351042703088243520654635753426767235765707873827017661579402034857623735282487214140584276233640320108175749833247423273255479096483359599973110472258323556697552718864930723700061175332040593673451291358373722960866704137211068542207255313043912080630418269734546771382312464313047031372704996262052012626686686383526582654093501095019996837591855136!
 9105304186999479059130487384416473988687911331923725698956017275284090561374730913062100670000900193464179506745291912898841345325957344266711174362260855892419691657163586261123900616706302303028669305145849726363954985785941259218082853312066900990637374626832263832813313937815122204729524547979090379680379635597617323051812567660892699430560077628968820484776459411288084704196046386611010141487561737565960804407609529055172579668532463195669476059084465282318958572267590349780415054048870949316496885961420704177303522730737819579931106541240108672334980455302559008682569539544310249543490772238536008560172763647462641889356921145246718609679789580074264626148625962238728123500506687600473757048503625778972938615303489268508282788385284067380220518847961195270201754792783464336716624267238977812296635785397808751151867940554248127952158980308744337632098972320799667784595706195827386666085032723038555954447065351142667183333503566477643271894273173811892878304821719756578!
 7936251076419050527507227704814493697288264832534305948065501632147087
42776098519786600661249759917639242008163428521688992359663200643535279588700978726155160366263824727911763558314071254495542836654705620288681587556864886367729625349198397042320665048620144654713455169201682647483583872463901136572679102715569667157724322477032343001514282839049949376997587946558871223399769635243166571055047822926563417294653079301460351739836080749174870778963836115882096878677206810742381217032693042332059886100176324631630594811266161852404969875769943587577467623858799718487209264049837815081535829083787039596346688315646682550786037222530459316570660630634903303982314777503693502853431163277997170432956445178564045093244653443677593012726712066133080488392380823226697341215730343413465929972578181777250330375788126435970487858503236738386574700456995367174414274079368788370147007236912910615220748314081466941583423479607303422608576694506617040583935466464819639428750340598743811919861946592110082292578858721583317482278966432140717525297505487530591!
 3270500903020696449993783981622597359698970509399338395277554981375701241536223034686973797992954705925921681301585507000397764424873254777097258300503141258773555075892605190130020849477515161696495256206822229962091259116781251128259013898008744191991476818042646775544755555724797617845643193306205390493245653069349475537938121251274082240264352301577913140176725714001780919035985081491970699403771249085484571810483036862854792350556399973420343025053026989008865541992710990465508407956423629464605608968608717742577492398644844153858979020429370773514381801164472483161250209153115099162249766077589028397101793297266917990696494960252068380606681254090493631260748428545184033257303060807420203563153804165905687082361074948643493074111894123715668193283640401954985084586316506432185009601203491461899494156733029812572658695246751174462554986784194002227811445115857120804461223175554436142521250449364681021625111054630708065564311942536776400480340119042966574044661319649481!
 4735414815981591609018492091549575123423791798800919117396721630064519
097
14866172274590024387876780876381213499605009902834937852558267091537874586673847598014436443311916920059950142614775412403342445635441870354704873337480557134473652024482886431942589920312868299289352912188482451926635945028501216956191688384323010304318236345546171660231554064266287083898418946825867788434150106880451960499985888617244594311676864821958205973391877494216939832332783470425222907558096152978592476368103600069091340621295147124361997519960029206870178249434371199857716414484083994979439173199895037109838211016712938046712148264411839267244114521188329939885522218163048414838518786346067890517070950515661003991460051662226012729103069557605855008237078104295742277539977775500913977416477712984737863271911136534446443911150327681484987072587925156499306905227866670502954815139769799147982249337464167859484624055098854748680384313363761854902410923745407799361805095506581857835958795354761115246861988435157257693258801474683832759365486855713277785911285342111198!
 6305916908563240860468597834533906642045050882593591750791879104869296424056245460015073274846395361536252821168599522059737727709551014592632759427747170405055296138259378163707360803836864248573798843480552179090119572147614058041212451343873283072184412007539033320561260095993713789464927362460761859723476064204038286780073862781656688865784607864975545779597223564958388825589009859874405549694825541926603903989973711591884987522161901452224892760162013989904183449212681221255650110577041429651917136543077727723735193988186166534053219527200780617558334874802351714969026354570710238465861750924776094635785459119671271404040627256858213831651019096679277695043965040551273340489516940859780288167013291135328166607309900157203061760639218408191674909398546537412980828848967323085802710686043635222651164808301719398741903022128824039504413445054292813964746808115124018032369297489845478552405089556484401315455887170012395402856905294184403432251581312377912181604982208816948!
 1688466323175052574289203678357136370323741080262925930895004866663941
69136534533637931367885760508486832995838327118741799360041538429768524249482200245153179873621386344775889983647900746736491517677830796816841956606359948082158744676659243681357170456144422787065064643635327489379913376242691726656746891908640558644840390851691230384628171894719615257411258683092328269209217899136155590497617174872925912828477675877994920720794387298312381371451046270284065570349006585508900681050402581532807413407311954972701180342002561254550256967905821809320122013318193940668179403467748047232897714348194394935073842539951420355247859643911764546142438450743109720574708514043008764808739378911961600712480539452070432900577492264928927784302554792467637665224641035417830092552352272116650289466203259691136894350567383581560176922598213740526922237530199158230639295961535683075797033985559075958223833301459358717679206313602551654048388769684182586666160759777495278915381883899827149608104915870397002030615514218950797173295059350584629080974120116831901!
 8537726201667394017764688396709836461495049933448180357697092648236835215314842617955031497021875006228159108028400687034629189433512968302729498409389772420651216262790924647434348380993529537020064879262699882164007284510204851164034937403365563596327787189116905555555239584186258113781246032237560831474541237746265016794896694838532987319551559023496374380257366930412049955570116800979925576477621073125595897756789603560143755295628364393114602825968573643226442094067965529652589911370203007845055743911229618378889704999203745170671096528524996015112029363489652805992158705538782860344034704311352860850919700144733427260866538616099693700858916929103114969574649419263776035018609304656866963568389818565022405514116473022142752167300909483786209138684793077506852658372541483708613492689301593223554879688540148227565893695561140969479447711488412039381536590332319095614082067920728789770378634975077777098843902952301898192094733799237664807154056013934056939116567966417717!
 3745339832255691397841525266762951595574747789753329943349265419886737
38972074212995873209654260799768912726296501537458425613761183872041341895534079471177975195140424133209281129593492453449904341977011666769179151721842669989221226715277267187249788708865055843200396206334665873175393269247808809349843325871141892714433822972363316560951675862216937221322597198999884241403926917941494025046691731587804036816740469473982261085645273052367338805078146576503620262467517687553514904578191934571448925222657218093117602558941240561980482234894882442047621372705597714694374830093962783651036845969519277933631443738200520323358442024943020513306490216789197021582614872260686883417882780029843199598995653569868670863212668727399029976106360280366901801252786436063163164288216577939892097082247381426957859821302187190886373591541678096828285856850455507034750276832567963731471616062398136570610072132764049697850889008599968626667032638230059868258232514222190141069010754890169167231768642257731168889843339659030654085665411857693125804045028086243892!
 2676170158468508135356900891529232712707842693116925254574365725697162040047523226032065907072575034993535728606125731615375147942134510847343952184973732906919238679634815014031588686263588580915173713755774960233079620318435179059010729974164714014544885040460175056394359223515299335944304427212465779810153498361070713152817180067731260599143847098085703617091322904226096063916550683369368038203680717673153457024144349703537000053749594530642599357804587555067243992890259447423215196624854099608678083916993971651126577960428575320903901256250933905302086174278591147515113365671927703999492595083656569421117414357827464970831932552781345458641676436587760647696173036608023355534609162596700965427832098719717082148804909841230634183471959236510287148723268234537189889410536784177566177177896903589220422354618987742417348719053319277210640599988127155970130931941639121389192709704232809587481470426732876529767342532975834263769514950447246493304853441055614568609076168524418!
 5332845792710812418024530583320623847961715978761403809563524996789974
09790954436765751507408026060593956998191963280485702468044570337316977405922254709072142519209895429262864678864712871716300159693955143646474606315175818250460877991647367750790632996041524193155811139784637632088965178870739463220447917592786428276649621256408764083532853747155239915826962571673053148836167970309299294984950145250223445560551285668226507088172577868570990159635447093572120137428377340275024507151575018232576851854926495360370625380392053703820675641477786683313819628576355826197765373259328301000096939537553256338634367106623905218723465371288614287633735820407134278701677026692275777473248910438216556343687840376927389767322745682712186514741207524318261452907497893576528395065011007857122434871785339537700997788055359131478091114282080528762332014770898578757199763797002488702487044740356582952386423822004969354189212371676898198740210230154715931555037812512496106977526080599327796307661081517789943656905644116712846827395595949967043596153989385677374!
 4676252499571444752655991462101343383591030106608348302482248113546150400354942969564379642793475039432505849686030910449822227182236201083167578637092810356013874409282854453379219152237468475989247687468153120802241041963635312184828200496565488638690253746177844332307075054068427478732406112547919950887290561196730697660072942448129691479383415008053204833655060198769465295422921293310997610296435430293119802287273914324728949702504866218587186832748493949490125992721963999242154280161017920038604673428913554364109435324288477920105573142722625951226918592432924664314160664779441016653418313443244238896087443830273180572723290491908197938605045302096450033255694945712044610254449240244127374184958555581575423663470061467337892862639807245994950776999286516335917534510802427091603387317837307349239097291621355670893631620087624259140872724418599344861295115156033586371733739910349734052857583761543005757131177544761713417579872899134468031609778155061834136065427913200930!
 9007686991573797658100609571556377190391696767306472026634603875966065
112
26383014224772681996490284263100136953386407686989462220991496552513814724705897161135247087073670673089073348514367932003455697167487059600753015941681353999506439781017846027377015266641844072393708358322584505623158700704040635215837377463397707109225762597184680902448446933651564727234780310469541872019651642404720095597624162710511555987515963734296555307645515986158451823238379582164949662675370124465624111852861262236941415386335273812427827493475647826622578697603208992152296935229818001264950787761742684573389069257112021982185113902376484063551626065205003738275211205639329210238686728422888942995389797140635289294102181465550498088708210991981050201638166042121232970377325360628042883995608754920739633886187378996499912954606996717558314194553341167647649946490226291078060312172573062631570578619080164698252988193775549542147176048848072455052756256760199343860738299802545373404719476620355586908721891401377243157390667551109292447282070870024509099767335973622315!
 2229071218421177084692214332432458305466645219988589344716809081482721708810225476030348716719370901649532337697535167130344143352553301086185611486528546632784158969861944167168449640107549152292203359092157183506151084973052662227173550398114129503540181529064152024710319811178401013980566392952782913012080157776491359908641450589907236669586372156894235455309997023640384679196933210315810571433485692252325768516531289186573509581016906140503502841604357937184793821088737256558928208701478324029315789157916333085999674094968155670274329571019284246260945874385848043862634399896855739356379090481958254753487649859939272056255574855561946567773425615756697155821849504411630488729728376935980187753313866203278028361599517177199223769655120531365163432563329853220155138839101964689350265867082757175695734066774473332692605070666204878581529197215919666381963454749379378667996617752810008638445763876301885884055119627801314295515165195675124944130794214799428713294850170960894!
 4319181039715639681551055549734998624349267973306787461919257951914855
80690317065189886804812618038904479391401478250733815505377086881524470877481379898810963430273122000330607347065142458099035258483413893454193990496493989656545207138566607659936186683761085776539340416971211046862945685408975912947874158599732492076575540325280802527973817461816103886833178124009935318840436982559861069097335313314410871829604241957630663526713786551660139347859517567497190514400002319273408027994404440745490510197410619781791589937631947674699186434107938735206532156073613405211787364837578459097966715673666556986419827236142746146358255056350606580559329664821110331974474833913320206961403079957761254122624885048051415730489057659337639503690478313511039149651030594584627626319499913967211842905483259796581894018042137662385891337850281842172358139177578539192717170750182906586623833722084674195025645464881768946394688435292784984797493693407650469429291577871665688267805599930716150785113008187755666705825381069882382117175484172749637275654678393515395!
 6303652088807778150913287618077798346947433962389987099563061443764178615311613872083348688494866668621413887044717098381519589158439464946921704606014703460935745751283648253205102331842164382237729292533709766444523051246954450926482197056893723131292535280333031643714810190202295289892315848025933185710198052637654481514094557844097206514759281476838527780333161890807093895548810766799308752185900697172627975135606309330078731057390705891759618718595820642452464983934774801645420237449837805487976740654797524952622093772586626760173582317381235870088585335754500131512707839103814816255478846783435183163714610520719699472621191112832763641594472763404261036449461499301449276836306948007878921059400062626979495807202594958753343917024062060934527175502738268783984856790971759629389798566840675759979198583889628105801804262701754892314050710612075106205307670174977309552864393903925010508533022365360179288226273272856091537026365344423884741789493944890081747118245721078957!
 7336093122052386174837253886535937506809178926756118953520013998809713
03746608782581950025315144366901046522360486675776011182890598272087761860598871532157484733965438619330217105550465412635694922095277101744530803718668818302299395202759476075043618700022115602190393135480806579840312676909755874839509860186533373047279053829077904086303203663294308441360996706295945169950201122620830783808548859042088881017168161512184977999328468083787368280303362338950904011879663463057611653032219407209528964299332914119942406210033748962822814797706668324781194960852307179087619424791584863353120110789090585649541546784291161620497959810811813192762630615685829452512973211406633850939361409384159050484338629438532408894040756582091208546705767461862915345917288170770680877309430222789528850632741269199621665879131232614702492106086636189717805007989706481237927134525596151239181308351142372819959188964990773112091010211651977902588497786845659655489252035032677685631063204488116661773017028266491889140667253663723989112655913028800751486131190354300988!
 7245390232824406066135011876701357660721957874900011541265364323223674046029576119356224707316975825187496909732450942625287692251137351295280802572303539773284869126727906512042154774616878840800543809864415545760261113366273139175339639702300162600067419489437003637657149488013570140736206180318414790950029300652942006633402330512500782157404410624188392567463513908656765710805826421652757906022865981021108156840029469455533324946127926608728710966448690019939955795753679303806192825627531312768045657809497218739295609862424868336782342989109023054058604320039747454699674785005186667996622040099772407859548758263352868926056059663512049327393498397738651704463127005176252648743611961900561939539816475974119402199836374450090489928416411166739321015273247390862495023413332758431935652760432683797203882067665493073148481389778295851998696340773960951803071154218693809669157376727716616801273367135202158872917066613227753441268542859258810012929127427468753464127321239307931!
 2130919602806325736006442927147977504305353698180321115572159765419900
06716292878429757926281982732141340145170848679671355679165823174681047413038871615671587875040879323358429735850539767118077422586884715396268590428549984552358900683315228500945744885832132489688347508812744500819182181108917837817917236470937765652607763117131932539832141209366374316100580974442569153325997098430549349881779830344175714737911394876578956134915483424054173618741928198690576921145874852372514436357763915118286282147741466045284405821211706000650897847681389949659696607319366324605393975036324263832981370559488337327581509435272964278921460034350932590810661770309841696800639119414206194740308289520556871116052155885914456239712631275481184101657092321737951546877169317618816967018894059887600772835213645890639715798933785710488764632894511908272415009315075483286785497114688253620609102127573058280141832404048123623366500654930788959635708238947682703126628631930903214051868079142295809028832493164667945270265637219056080415584503216311132136674281475699998!
 4949223681159041984159957210939505390710730092812190293158794050497102854113613734357189859702896270383110585348835419970046557240850470089464800877541289414594128767790659127022434517113411005074555146967823008894673271562760367588474416899984890380206918735770712126268243321845581909039229231361927396660721843124596390875812701772486798614817986728686808154045691598686908970984408327336774849310015454066037230807154417945383368195444211327542633214073428669488878037959999993398051520497550931199515409209736402606526337298236552492120254685858909280086034642872891287993638294072914485829954255214682290862677212091668487193124828960406049238899112993278241962999048974380296512929475648618486903851298086058857004636392007282396256882501834233938814860884001315102317515242499869379388091812315448803115435254525820278411607106661694837685810098355972127917108616570434615534151102598851363150030934574037590712195172019361413118603013954344628737799390026837973233077337286683147!
 0206873494163430339040353617058864192251952654056540861366083540502228
591
53822862192326614777390701335762402488521478070323767479513261229249130921748235980645936454867001544409472514338308319949828500660828790700281608753026161566363648166709931062364351137180165938076627047412857819790562147862811197491356279491965275450423219754557469716488352525605188339575606129562356698186569019980569496822638726823202871895321496240828294916444023917246381705155674816870537528625682160671346496891208172382205838797362598274552421738348660852866060658874446217569055542574987011214139287178288535445414792765442763443898644735529431401768792097274731160753121855253323925585991476679262581912439527988597933667705973856733503593116414431181634512277589843237995973523053838221876962855649369668648499987127022845328551197360160594742358001810113692243044509570399377172996266006317619315304627979667855181151830368597854099410567204951355466342764153008947247411776865659012937986858168097481632571190355484398406796885848662401751480591369371925536798221586482014758!
 6920141452999489069847203114763439948147354162603453882084298325150180027341114689183425333693567615301577321168378388287660250152198137201377258451705602014027489740673330493657200243411803840362925930690194000358046637314565194903551284628109117393993629310095264575579782883648196672929130006994416283593909759804800911236484821513461693807591052051264514307507040382468392241913280155487565633140311414867645250456146160885251926093911130747510870064614159435928594918624030786128717486782953921626246281628233795266243842612048561631022981000983104018827526736693058750356007870338686951975960660157852623971800486371237323224497050444104109432645316614196421011468040660924127194956042727415878126377740685059075264381320773253599469120530706056078847671242097694382792598800978403149194214668938187769033542731791500697309073025928207558279131921608084889031484725677330286492653300636801222629673116508884166662508898252222044321687736076466869065347295518371721975515038682797608!
 4367263934600486798550094543735077781783542070479013424534695939369737
73802716408071281233601642585248920116923946682979324139503941759833046712684233434674421508334356616464012367505576589757261364384536434550277267872078258645218875092385508097458853634460495815125804614734789398956205131442472367475226112254951284143670295362096679140612678318496009025369609259240055038802318294502276311317547162573955153670386761224543314902918120060914637925576523345344664740035685774447806186150353129115719666715264460576130011890148930487394062651121287269525550000922326353573173419098442733714914038018472637683428238883885391235070914357619579170930457164526800703126794307601074685983181144061227462557639152128560128122845971963725771607150699299264731694396546679688633327231608988975485131725253551838958224924386457062236029685599954908127240605112750995864880142136472901932718122154756529840134368836169789622833561592339958956278811118019406148896713548882697345179992521526306250478894539076733483310424141917125692698241749334816953930878788247612732!
 7472435446047931507007447724518093109938522847731231668766431916136864513325824372236945013937933797381809271190555500189321050269359404570800204278457480222060356403369210173282181018750806361112763691529672136465018559773151244995664275633180608746053941877733659066520125866104511675527585848288112257114165342777225134730026093230676054071594297840092229766930171042750137533274999461854884633077989197678210525836002114506983467597279114425892254362970752102297466221320272417290039320297689859280589219502799621177917217240767789957936287664020574009965366984569260129144497142251694033608387843584309331934187302593124711106899732653956999299943981263433797684849831224109273274769313396635605975496802472728101346072985121614507665134091844946245756610689282348093845512090774419686304608811756289779652355941969121662015722117675534980675632581023046197929941416040748298924898472455837070916339963530966460150219715582110723615324374950161493915518527277742843550660016186161317!
 2928406005934033272712351703045187199087028830176543752918454089335646
34542348136438376006890832532483444289295610808116296554639559643194121527589063878022523046211511213579229380375609169066127508073696492044325346426186238580649257200917042979219806725531227333345995448592866916650675766004124958473597582271358012850082189618042750730412489411916428855002194519276630526934559700764035496127392746484614378281306898524290998646409408832732032782936497852426555040902612110066390143691434182911673748854514775929637242695761454269496390407036992451243000566397159402352485032348356374499684597464645952276330720290644644907679030390792514275410799289598298996098966302371914917005082972378620908603581681790797241901340650030503145550952940368529554917824570340091688796967752393973671944642833077814445530558086081239519636326163852634625287282308924632355976602188800330770987632088862421206861793075001853550645484203487344207562791447398648391222687452919217141632689257002901997079308893385008643245202269546171327381338285976091372842191487386399514!
 1193938137684151189745806394206173662951626185547598904676988615243625213924766710625181422017005378727751832728417104275206659290249119699349585375728017049884445522720461914941659488451897117993908530768064006051249468402725462007497635784092237125008625595607466516911800264251728204442456121033835635380259456729781830226993732939706160518067631309245734354608963698335039882182531709787335020843530668162931192669894747406609357866314600886715294962994585809556665498495903652864127386558346256211104322652301465676229713403025968348252332795732690015264279984623199145830204010313630618371914034102313939838275797567863283013263123115870527270513886073694580891587149262989656360291266704605781363222494241458018879621073494184903685587174848833162085284842383247006697677940422466968862338084285236366550962071550080678706770626680916012386367758471453672134925520068694314763636072761195042840704901053394370007178786107518308355785976108116221507006663868170506534682429994210815!
 4177311930025152518394252035520259552813515209618113554108439245217801
69960911109782592394277233398124398571713118292381112099547848601268295074731633778353177096068873833398520312396087987295109107855128106359319816011945092820056689429612497598422654393259039742030748124109597185001672903839592317451031272763802709021156865001776438074414698344142115462939093548256033843165265431301242006379369199328577763390623065569227466889564306463746874175495042049126609038552598382117749032244993081343676201400704565013338836668840075749027721495138115327580806177945179502035350587816230710912780304383179655453575796308910776289852966856368298238280506637202606736222309385799182019669875215040101346677316398242057019146787905825834514770301925688766567894421577231761778157825094887906032568461191203001970755183291069832220453751673220428946945979347753037902532544635885717927244052470235004691307509626154471645689065446186202011841130937147749736572570543194854477699076604546913117867902884401465076489150414795565474947659763497520170146683212287116889!
 9657820742122610860107209345875405147505668748193811422261258088432788526136776806382333749904401290632750151028858480945019903273728517853132679095066770222864174083506024270926325427294468035269887155639477403092420780836793683319658479869969914130077627771408093986000902032614132152569907158949287797610987410836123681887756327392075219930575858668488780426183825003342779972796634008989906499091581466423144066643938090679360781850445015695730451525203156790417931259895155447020693555358100089448269803420636626973671133714968215293086188656029118699656953365043839728611492842735611937501601872587322032996332068240088537081325426288604989301464539500757047871564111966047496042630528979451853953906218864707200007242508291931665433272249708675979850572348628675825259779551491116804237267858511292064145583437162665509471294880988019951970790303304663485241864862966251598484268150007063975956061115090969516980675792543581084855589754739190962621871460719872928391331290822718043!
 0579696135319414637417706797548022731014832773450099561065193018406495
453
98507069383366825896975199046432999707344059692887088162648756185805571220405117729483149413484736494532908726279736608569495970112656783758853928861392506161983289765915837677313904515206592073587735668434360800459857082834441092774740921238593498444410540464243541290165901171623974545084569898725731860157315374452772527543209823912101824973164523549620344285608905570915462904582248513262878667626087282377152419668111467560411720676556659146700832129517871275915927802872019722806688684515838643254546198623376806708582706975866807968481885591625663492531323380499769787818342688324207488065260736264091248485831650593409233816125543574311476072726325779882317534654015600682457091977045648897405218284237833319227953295920838728903834932608834150956445828646932891257896855834270052618324650415100066404291099477360913453885099511698539051968597194803779588091609474901375763771836170126648821798605397541614683348670722714993297885028330286440002444230481565890572178561434035700647!
 8425613038565054677964111540833197265724351971170121455250960098877148738727751891036262350192498445922748857003777381674679910415122626814672724489207527753337525399507333081607935864285125587275468629104175295701145193788734614347610056307445116773571288712124089688881553223221316624222018341973502709092955046677491212624702349246261284633078525726275763399711905997492811146713754702208127310739595459683598874020604844136671054045268476247230242209384802262119211779879320313865005700625277577607937514664455025569553034887078780572809793379213056263385628114957815470710016817788583962885272252612347146690319341409047705501589270332295532767335593580456297758451236853412211097676098742692095187916430010104215109246623660933592216551945330131868092840763804726581359738741234484721527620420395723105523215242009612605148466091181934831197414129070911591726178331817371204684697710624734946893283573798562408591652774688413882853347223722028240934135555576400774570392376319065518!
 3235861376882090810626890030856008259397810295905584254159517741464526
21959914593509523842574471801087277595503152755736716195597180975203777918713431311595374898253920220406667184652291425555756040646443975539149646169358450506149249138943963749923310018745307866364267104963959851963389203714725604323002765144755041244132584533570220275744506814417068183673662585630699652812018248424804937376610298750603352885796757539839977495015467692836292451993472066052831273990925691120969283199993782565682113234305370545217559150574243162731774693119371957269838183670123689047579305472991234023996985824998404707916997757968297196816498689866777273234558374934855153493379219299327072305710546138868282642805285627557881175035248803822009955885971028284202110159792968909741596715001364084569190723776389260613842626263577288672970211390456368130785702256226544334138731560891165448078329559325617989591083807541743883860027645460296081159874780075476525674021237645053250048812112043670453582534292914554600790240309658530862200454212592222881952383533655455655!
 0930119973799231500753973141188039254163251554075121139306020161071036538445784712479286981756490098231142625309329150008573058888536518753950183242202323457255673736799771015445443864937385503228900716350361976698724541640844301774048899781064743286059734776242488828376178386788360858557201872012232964107940763116368952442298511902736336104896709066593745381971744562332283976225697727652644109330046793659427903614005800292086588996002121980964132155569342286631640516093745085464345637573564688297568014786409919753791770043915421993770838357278307036700958039546813218202277634687373483759973846260388709927942749646634032367868103813372098460207956961249011737394444237774412556475160533672164897457647528837480442690307592075217059952800073944977094388126781912362564141154072780034933057836498768633900223305525420794557475681697334813130400622064421348848432878971100699648438129474342430377859999551373394671122698244377759525766881454152207803125494911075802638807044218303182!
 5091976873532113677001701284309580992546455897168080923004231818703437
53615600482442560276344204914413817870475961535160851112758368176162639604410164440686799492227039054764564492770572761946470755672100087304829037958684999790328260277341546557852712549517526334664431000691259425759756131734247921580118383023821172318905739198629087695781572313338301495734343003410831211413926130205197143523194132254436997181342374175988636217468380122875535108599441631739175867464478550641104126845834619356615294621675815845928385643691766493901915317253751391663553609582763111224722470189128835008459771695924665788515256560678846757307587477390893597063572948435499150143497860497129663543947488714445746058588298888399437075004107596167726676082330902458117092072036512332433444989346351923069125029836376061497961540866342455026930391606594917659428749812350204214950500587189925735179832440636393676448291104963475669464555073124566613909568689433003937877596762598320506924112639856189131186135056514065850988849423555056639898247916795604076838733938860653518!
 8368300750818628781541848765233536500169046730628729783493127876705614215135764675582444759242340011893850849507927842290020874517700499397777232023677079035946185026216409669307467925691390706894537030828935247826169489795567082763951662939993286470912698635324032076876259150036177698791148485207805354600534303284633790127495265591177968463016562889536859795710268794449690627095491028827354150711012001107752510669341520908040325982931396993564841700839864864045375380218556657759626703310768685778474547734808623243915828488158981679002901476581324857822809847190889695477296875460134474952094218032269110876137357516188511337201544413396761953169642703539472979670599471277659895863118050453913087735376761744641633763889164782206516612330807353371080418678943316657771607151592359764319951102585660761057053704683164089397319221990418110975558638604830589308593600755868110662639323648889182674156911669019537566391513447712353755214918436029138147218168822416243819882367408330873!
 9548619913402590764257165718007433892617863251043614192345540315840543
79133822234677907883258034236387745739726514072770212329813004619850836695551714724452526686938919394033056636320680068294010561990650177156022116288002665031915719533177638554591005177209549843249479022859542557180820808884507047626865856101255976113680295774120275434855262194492572165306993189493384644024633384742059516917608547011343065649969531240413770491431410672975418544553216685859298252239497621779682593450343197055978121892936921743315569937302182501785621707299034425609163819112942332176494236727482371934069925992219154900235638671091792211397901931606388545134361010782809553262482710442393811772293583894108406966009260430765567607343377339390080800502985007667265323435721946731674239584011144941637428289262039591045433881784208073754489058400221070720597201002325916018580276864878911938243159019069173577213909074341688377536700331107777695632010858561929221096643800891176038950274958930425803392917889596402830443499406904890760318999532652497094965607359363117461!
 5619781655211520061576904205439179053692073290589391126673458379403806349086817689268544316389728179803277530715128634072318150725312353679762988469006039032271857367409909190713879453735437715420527933093732925271342901895595670304854538597015158203659300891836137664671967303172760493207735394188592671922158593240967513738598166945083043908590577682757001663787078457072082559252671248087464300091324823656613004359604411933061481153742215558310993167694501042338474737289246738675066065205175317331326855697402626002593883028854922606615833783156465282041021132393571426549455204498710995224142743593073716875922344354166129234641977206064079467276721437080437434093179558257379710587737506912185750433966070873289323522598687496664341082658286632435152099877407933335518723688723330248852773414311815360271114278559992685965286437920116212846874962802274742610907567690342665709217936801099466336643487894627100823180514022961833514997865461305661021588462821892994570921614384965782!
 2300687345386980393789259906536364113450442225635371466393470170858959
855
70172029922467395885056696045285052482994869631103293052108567251240716437417802512407944893906430610026230833482236588826431552418293326345918874009000370523026241007694786300349096366945907510935956835117042785392866333453971122226490045421631909152921016910503743001307542660884460876678621602533221918572174673449228077819783921996953477544424100686684143092124097689195438792612748112653345704558886447505827044284631811805471327390308565145455244871339543935033853728768705561264477554007561466865834100497058733679376348425455462114529390138824282470896105372171923531157584347261301710440466272827156682592466929892686621367968630561694879855790735748257542878067474667061012398496647361699815675472511581045537751063008837110804484442351555940910785995577933500640610176453216930733976352851822503324375546013212015965182492900273999771546095930038813736483951129714009369546210390825563628400702298484761065437219570141989069958267073847942524186847401055749661291273236212155186!
 3172781205967958315776190901934031880805427700266058572588659283250395662311282475624684555601898067907667085799584665890149437830469500328251384164307147331364952350807567729328599305808190378629059045317630674524188698464679388837605862462941637633569322913767945906930619265428028198024989995914520271141438601778188030330680515396738824207566041977578260096953303273155232191630216358925895378922710255457868572164669003622733915691278768539048379529018393118502271977738564613465369353207151620271157187863187857168434668846305427658310216355844879999169069747969017955170188173530958637104227929718887185833117221600099394811636635437801575884191912331935684059684592247708016944649023684433074596262431929334310002937503702789845318353089932851806581343968968777397601639222065631471133770560819155589521659375969671228360033637504996826952411108223147021543167778174608577019488604129920826996903019999206090147219578886175299506278432208522642737183749672762487368856300352956751!
 0713162781708869730858092928753681330756780986533049163061841829076644
88059536409600615379449711142909700381704792599091442750281816794831993718063865139671493938853485547364507679984046081174160330172702655909319135516526346538072785286185592566999213976507551088313285133195963825428122381736900550492109628760978398394083751474511705334921998619448094607280877858308857916005184262090749854076045144920572864887353280534752656352261331948741603141379318568089973484459604930777205403180649816776228297574133271152565917403064327888013155063948429682960924854530615291405227873145618276475314276478525916135300246492603493250290012692500169818156299956775187440875665587518383290918455533838292464376309398369284933366205789729375584288117170497834626135118123176617666810061999022105798132200399265411303464434120945642981463671413604985152986209626267496201521462186193254306573246079121782239204020442462678821660996095823851741747876789306923400756071916710232127258577733881104355590231489688214252161241659758432379911964315198607131699821944098484898!
 3277081139642440096729898366975327922313116570207350357899558883141506293980950763790313590209276500720952693117581085825320714776086925197423763319883255448807000979256185129945426315024637310785921825311138744028114933642569677305770364214849473302130775055228836890690392999745016400881027911071329048547913546832370938099420191952772275687213428535885485718937146797728097008145118559189080547596998349547277494494061291581753986034259418619439388256345084041273430534027238542152841145126699720680346416880988726365630069268563691510492241857745361619896788982501305330522647357527609368139350685709685470146292330884523456811538375245522310123922242008790372600382722039370698825314666282624135688957422192685210411070386959360598076158371029098579872922301064613479083914323857680339999363042535425437920605179849617071194416859384248531200261886840322571551335870180104634119778458896027514537195095324263574611616104687302558967259901040842555779616180442628936577912240007025502!
 2958558164350066249016148208744601178403975887034493555214454913768731
08557143445657477553286433209761049863070035751875460931805311678898981353657701621209095648173242095027853601706081904288752686848906134614471555604326839721566447795988300779169307085178735169807750538018546134375772333989347298907629406747542544421507403921590402411993404438798828004592347144356505485932825158552345079194583957324309560198384925413309847374152345388776906841883121202621026312738410150610853988602104476743778283796240102983439376305042185955044533510275688782774806158752282957497102951243723441160874004087414221274310833963887095665981198052140655608151217186060654817597776040379856973242047233379979529273283325537323172254654725830660116387693365514467312316256616341307669202953767719946763963098295830568792468592862355319161866484284061368551824779816768168083962438414136058756544382291452380337709122699286374725681128816338995550514680878714943347198654108866479839876423956740968762289232710949561055438875628229851354527466112295020236994533644979073502!
 9643466287359752140835393165302394825292980688093346283081263187731187817772395740887702993555372921919593313798364022976395597263582547537668571876971204669541128509097195424866640161848386470207094982259816223085580944764404745013393806052005706194953018671041521523806145979191437435036648863677593036041278751563237116021831143955115248856526297093913380465153948108993181269555269496245027019525685806645568649734862403893039663653495012650644147886828043563633606530511406557621394550091047118767055967866882410974552322137239395237584080428252134101684244444432540688719466189588887463498488993552584901840204059008733606284555342357589850315572892156349780365743162811865798131362325014726953902691747105808646825800814999904518013872263476287905308723141067807385163509660669213803594937468925560660333977998278172942199551769801591856462513605326040536396802772371957994343027855561315537218129593510287433617197285944084094321673282136936952794636524554040436190259302139784977!
 7767700829371235501852007506582513132329726939751896973658828326884818
60514788525416987951726908545722841406610209919205212713758815290577874692603742052716036672427153297143199701403799623071495997236207105145642054662011620504424871253448124305041016283424273560518859736167985444035392576226487739261766421188122969846441827321495576347779330257108294666196997902545308932340863331333303792677113757753766282991565623998395092921737463864692279223960931936765236460089494380552829859318749481017020504181938836287165044374611747453797804961492066813726214398654906323811786215510598768527133193847204915309300500057457049827391999712390350053307419833168784910626549319542910764667354722733268644129250813121230874770070295359005698095153219552488276136817467668897185966997894663633443897876490312633781965508106656280732612872946744781587142022920634289411809209290772903458015273943371088091468532908442471193111830844049947939257927390261974500994592891189172065590411032824053367642728326251755019363387462908341310676895192921369534515808616424045625!
 2353596510850244545829518839579514614832240028073231254832786260582170152817299496766990539690392842056410948492969306122245409927697525526841703762534856277458003746166728882787879758461366975705960496313418140428094860197391584204426789155682632788226355553258134119285281346738129656500153803317524496442838268981732828336221365200576571016075802587544546244026627201244642167588908019865316352878016946016529262396998270401311232028014043778860668270837367940448175467922059872001411430171672881653815743291549600940825227379865483750898719167296225101345169909276355778302859308300797175342510151225280580538255347210036567004320681743842046915337610290245420317739728536020293880000341770314165884482845455134362172235773827416138349623437494279863769796919821390538162217478984142454525618074785921281382690495591967281993411921574767853074965623258481772707226684509164030704860193701521430143519199879458937214597058572633329606489401350369605561529870248337040402725457251255871!
 8279785081713827817466155135208682962285768010388351454762863424828531
453
13726809896009589325583479688017831795563527542942116229517779607975703745494747044949285029650225963496243955123521566901392647588245647100312257542983997831309410980303029001875087400993571243838636366859753388264646001549159662799372511996450525811081907429599631379855595046899939792818551706911280106329154857308984815485320992630603654848941145389934453466122111278266295753289207887262732947256049920741750221557197542486024919762696519233293657571837017521407627709773732522322210618847080292390430605470890894026395151404540902802104340029437584707052987520461535946875541952325250728912146606835399189936826771787987841375832289105558682710010466092157821482814376130961553779559985322779121173641362998140889194119052312679072491652030942088659122677941637140793586777844445397667765466071252325658410118908785982849102567353505741265752173988223002565371685349210176009243590666084524943780423770703653579190579510161031077692798141283306804043114907876765930801309515666590615!
 3953492435774251485934545083014903049028815659429619770439524651877870107316587983129725987562511837562362982016016633499575981177778884186843364777266952723867884730893372252754754764334737181224900293990419688047076359252728674014462440475788925677650901075277887784194994458424817708026065512545402334468806872689465031307627840660437528717596282285770880109646225646271925564273243935254863663108388047712754875223370460386949334663482934612496335565957549618930562049461944163976701873335599802854995994410831298934300033148101846180995496945213096297849386619079336809191212951901995878691968522829223718584492721636047699204074663058393900492245373009578104050086500145037814847400398443931743666126290004089915493443779701061113607262909648385156722779625334309823044402248827595662973813228860609773844890567679277395192380881777445382087469647531345616591393862552762936271717735399573146016048878326903100418810104290204890805063068621439000932279167641144283253384219951468801!
 0220965505451867578062877682501095038417483121820581349870079483935044
41942225751793141546813513117468603611383359684830150996788097707140845331723730682730679295744671019820931031364922328103625175755880983865787013921027444078912414501353713569156272948465806064085062865788026075342892894818931502507140040914285008834128371449674087134013741630056163177806126565172554419889954828012223945484307844085273301998640834172950136851351446109096060284247397972029309719715663688703388024665020827178776435806110423422131736076725228218177608035024074881396921247953476874156386694055925747062407366406615102344503675838877567623732476070797246123136557701679084670052112818342934119037993550968639697275020647049476104736734496485448301804663756503686545422230058546721877274417591768796467361138199827792576328531335894845816388308438819368682210909466792903982983603892550184359949153448396481584699075714013093835566640392813964439456512062320054173906001059986589559461480823587134210814869667543493307807938909660583448467700548085446027584215094980550406!
 9134133414208191390416624011330487597843213965402419378613226317788147224757767173012708243772522604294464688872932921553209151406803013641836216208470374918294502455966732289877133719256848822315389518044654528964517080192680949977786953426782480368500358689990566890551312910465406519586807765866655543593027779097952974444776745547406948720734144382698588985454542544548048143687478246736971373242714787853115590139698341072867842498752600174869044986204689302966871924076499988312470195510778702622273133047875454976462114140621844775335002108406483006949960091952168081572235244405884276269775020013884022195642369264135722031515115664063129572902631811905450386813293268887410734945892942390783748993288531526112559453512530692871330593017801460283875464734321693136426480980733869841110527364581063442604925614612223876621165366489554716324977824906827642858617333805908948040287493371553494262119481764645587282444347612558098603744791610984645981956312456874349092073957743285275!
 8271133350182870895683507637328453367783754482772419102701179804991225
85461296200219788763222717487277925274177910057155601344589089201052999685087899012947182788789120755722229138004235407782400126612805178372142668395572552591673519974035466433524972011004838637756554657701653856649574634644787736166101903442065039618580704745835345721966022647950790651981788567898501605032133058521533391900507776910848780745467251705514231074360964489583472876810932877299487376146050655146068508105503252040672640685431682479603480305770824208479654147850763877524371400753629618477959175658949463753716662763685023380984249636109855325597751368445246819561283173436677722246337307502048723692004004306365042234301910135086429218504852278162296005659844255276642023387020366191229450708878568266732194099313773948242252593135656075758350386873827982073577082656464076371589306076585805614341987187146469891296764526420091591767291193824784293522082348778355359094342304008394418596187573810693155070053731871420726131775578672853998999045929968376655554168274312999000!
 3480901219530700687459062048305767108788536496801545591043099775941919653149923645582559001195333875336115020755709484760085412022470678145867898688477677488370323839736997478841859201463798522178595307285735022143445244367397959859291793685260221354659667229574396630261302590134283616877508513720718029031937507951328582892882543372854000437140966054195259947145693816213247598454406458704210543908981351758660930182278464574577152620281021764850912157464826439531751582650644795856560009651664986225086675514085673852896711511779138248266554703706260900970398468943108753460103427566181423545598289921123198851957468800546449521222374906195975234206455335557618983008995745495083041283262002627985743317908628425000441015443860919155141102518313143400805603179982685851955541421895294307555487947375980431442689043173315168682350092927636931258507903782539547179002790381628793049096838567676336834278658168369559649105366197072730408202799831048235711214433842211340271452027279367989!
 7461117707941124554137151838229722120113790950188828891189200245802647
86896984541177263942230233045010966836515214403520107967750912131326868632031766456975092648940307063912001592979940164211539284406603381259297847808403772706616001122734926447905600319154860110737183416443339184169640495520551552919011097755376820596476206967161765503659464057084285449210757748407267586797977343915635058410640972058057015283147595338489320172729322602143264239650623669413548179874208648321185220626480326087631260777023307150940509544061443479262939686029612714057713803974167345802418852980054035359643558495371060206258979770694344369377587042691736146239737327445853670973588278353151453308922556174277510068709438017468412181079827975430920504789145735910933878949062728590668848718579935067963007026602784900159153188995504115331815472400168020434690314591874635462853287593974764789072505471892545042116064754342769349342076086858714227312253065508390872837130821971054328110903970752660286911781061651710244005167698844800041934643971382775033053713120002185820!
 8528696794819426846300739394995108555510812649547209087766352107232686684900064725431708694778335391246513875954598322691947138225144097520420582603398205594028056082650078109575975054671694754833788229735068796843779041764362469477473343471741853718391971825097687896640159072466168450486795899313699519527264368880342619322103953923297802386672987836947330462989828997042404143326901200746575058507780610034403778647794790010904654756448263577519495439668407068825077905054982376487742147328755556374136988886027704633001250723600796594690863375922376832942907765530206776220649975438646773357760225193910921428808950902406568386495982914395087807862747698932358959988138293357160397726296398370840221546296694512126082332017539451533078958269175889071469265746435237448718201263305023006462345612268741321200080943657446106405762731976501272453639133453218267757433269166441870503195851151059091172412226998546024977786076865571003460755041344049801935254096593926079743111055096476553!
 3424498868197388937656424470796272984013102810656449639376642080092068
168
59000509888375740864673448139935784194057352966012116789282117763622503497285771363317610657155700859513593713594835965170435195910728121929286421236277222610740039564540163487581259825317786914940947676301006808230369223335430094553212593425486736313222914042352770692541525457251321307078415236557676356531179364463017473115689207777900814935546899341966006177019101356524269481622471952375988984207343312262279909168814339258267893230070899871986196960967851957127131808918705483606164621521440487518624501132696925175490241408610435634078182302169980358392632772058664343618731257064288426422359681252114474048920129155285776867886299900253699665252157265537216842632057688857512616735101226058482198545857284239517430953728537122970455453113730275196402851330893165645888552833343043581136250485567900591551051922688572528762615470045324521251000673198680049857896510116054544091523332565173412491918115583383026255292342609536209297543368552022107840956104002813191796422956168999404!
 0801277450194860514665485365991731396245374642473716963756735086923126862444334143499649104232319090174214618073620758427739402338737866333305331790608892389060119952259200281070822895792199220217943346714424090017204741847962433808856419633219171513003403324703300167269460532454405785893525183455384378037983055444713263024324421532829424171786774311090407328845998498371765650181399250924055400848820466502471413548650899441568225262947158728751290657473703421923970068703344911706335520203864069683336460030266418165608630268914989140064490434068084330137344383534400280982510487885198250916093888308687110184090650250005905799971915201157809200689225752089884012264572444983068869119820345809716968500869576333139156690228078081278628199765275014662680973025907849299760951875728167735882612648151916980912055505821466287953946951538044373777394444396754544501688994373697317243821332652498233549180855928367381314088190737431131807587429372545583284932171961859607457406586841829211!
 8266298226962400335017795430726168561090444609934385885620007232834772
70153325938789129424406409378068756625944941171872217460097076388998474581859965626978974984030782460020902365009585256056895541724117651479146845212253597469417860581644347561833613043713355200956413380411038086039392413854219928183358639833722393659929504929013663910628941467514492256269576028716129923443473338830063804567314930770212020779408599221523341939928204413252413983425833226830120643478684351416107041376446581207147059778683754281315010503946437041002326633084201327515072141132911801467102411734097265089011117870375022253075619225116343835666405913527527370670396850989954327026905206044659551197957248925262675734912819160454997466462578691172453649357703430056393424670767880792150988102518611977115492063058855777340619544752953908038355982001034938473895975623692035720629370458148907179136283565822527488965756707155688389620387679846874868361802618235471022219780452864412917014524321411177907028520777201043326771964859517886170887268892860208386923211419921115618!
 5303401143829757496414723819953621046370573273473639818207001694911746246585141982870133371870676579084458442604601153277446956029189933214078340087276460996012874211920173034544355412041323765677727584219628672047795246982900072398775176343231196704023741632546030251361494952234135142774533621806343673802785089220074121803154778661814930093957882850674059036225757147024904490137683048421522962033167658271218724297345182923572744491692281797624435764782315548102467998603146049423309443099951773983088198089255467187543255066375290198809204833874881071591292167102930879977802099424357428297082326543845396241883570555181575811310188178294153215029991357469347346182831086457210574151529956949484286168287163382308165716451552506570168774245817751618270606567844233218044134383854389402189333466526519378152571009128520830977024114571341522054591449434103116051316966607810106974909370480829768527246278836889544604674587258271439713534590661527104017801012239124488747806347633032896!
 4610045607355178844059897802179244726971550576545202654124016467897834
95872069903808312237409557573961821537423949953630394738718558393743095437408897873263795430231762820830052766743121418462948366485447235970171869478626310648106590477695421341763300621295676599999056582481939382969418341576254244263700659010685909742542598641968976383330122672785223449144670449611364495299209602490656545141899692835926150908977752013074937876007616532434106213585053235109894558687510542958231551646402081992503505438165155918063738790789534383980095922978172671374124132445371968769932147094476567631907381999533925577998625697781962722133734598294115621461081731876732219906253442568178360237785625044416711793617261221549358168719333762231442082531941306606228716045262183152261099393189532407787178675770162115700094199561970153642559504822974811410145099272322441013696976289684345357746600451836565485248984422299098892929188228132941080555903530671908787109503183516685833953780703595787355387613303401651998442798708182029551862519817193571648490530065253126176!
 7747092194292646965198776594832893752805374722887995287823368260548065182352901228335112705314001695337687750183414185490893612426110942309518705856905470468695271168408641966977418655126127468520547877595893480623572430522752300783063326281767697800170650414009267885952297486265709178337074789730979090978297163617445337110300551091036331184724943658791615741379492808485834094215284813944266155502693438812717089014125501433074245924629871044905583536984619896311384732331920388955029406077488238367878399874184154362934563869587378922626725569499008543964747534186014809663854430074189002811044330518641047186073351602335356748973605695877832018616873139995121349110830905184422576898030910286372370975522589884332625624912592056364914645119117202232391508706854534250821687689877485320747733229676597555607817769308762388573688738833819463200195911325528389892072054124504482990829462916662681252273698411660442903970550213397736941064010292744814943705885911561371670389631094580933!
 2665604464390412583850307419285493097510377481771393572351960904404152
21866597372210833729921959876039510032527096807203875479519069634084897301292042077371239687262336603990932262662587323492204397563612436181982114291184286902263026989273649892368843636943442540005710001274670839801647440699260865883869126598741430449793932908383462879233882799880717364575360492580861536125663245511506767225636632796627544995438698469510211928000272098431851333275498732828178111006772203736221889591876494773287939879029031820058970312953159842242529463920259918356018673857027108583777366299740990256812068486919904505623886835030339675330159340155738969052595443950074519572854465229638512784240420349540306255874135497894440996524986296786090392636204779531031797089218809568210930872520587708921742048396708130262470024207859487068823039877039510171265302370344874202934526332321542968035147539294120081971100888633850630561453168537176898025873859047361347509283587757263309750933191119519538889579152291145687040279664987542538271564281798026338224082361293288134!
 5251926046904487555312179320831976715744836075700959072000923985526778380038347146085236075372613325897685288499835901150807156091941829486890497594592164046930931476221117392481977926553466270798185015789882941625067735762799406342854875792668825775763456020796065588320041205885263061849826511943126773921311010812047653835781573752856033598301053746914331457667457348634800387585256906149550193024107692388163591000362353573969498694575806798943425232481012599900973816779458696444824226393192245139755410834559722951343933795012707872302759492450886987914938416067033570756654918162044013125528112363804194959023252908070037081734483614770841166913541396122928857279319199307460820184266536342369628175296207795658645108379351712336067656726558441041119793751579243777397360807566943741951176619177696003361340605970475379762667468491528131493863203882571355642935820564634033689723944161771167479409494841764709436577665830110345126727048450570348739321450164706293166835402373804481!
 4069243365287720799913267412824517146246634154096741903845487387731607
373
64459993209604769220363010972857505421483585473091350877581441372074799843535840315773221558579665802367217786178054588243093803934924632854529869015999718595327130072194937397674494099080262759654270216874812341508418893205595189931098658664219521177406243972577951407265993563608144258119228996624318203534715345955536252146561826997858167956987465215309841338800951588640045181468836625956553579742010920012836645601511727183695531146318718387618984383216022597912554612843308743267967352792023419589414653787369813300840465503553616149278264012602126021497507691326435366637549912959862745493229773409220864670757459712187920026725143021948300763389500864384068459816226255668378933322273026977766922408040333610362914031160353175738514229995287359713254545147040492210467811088866970549717876980877519001041381333504272242419367981060012260072443685802012002707717983946841236579492956752043374501620267800635318030215937430693573879595460177000881435719060184133054996749457454934899!
 8135327465031603709501821998164025750039405799125847991297470950529436441658539816007404612891540946886908727762306342125937974147334050209762805917780792772602437204435062156157616778023875682504443828540504991075840917806079442456397108096876645934378401594230375590403019602237570430045210918482007556190160393991125249650777298071398775085418184759442729183555107865734830862921804544756367736964269045969044717546953254350938008940116531334539879629336116366596052289488727757254502926364459768095971873999456671000330252090348063010727994073979236211128093251305327680704542358459180820112382396663912619971294499022105881790804882946515858615978088776978010011074343677946136346406743820536061611086865846992641741143970825615925781876129086254980473438711788406886009618010662901892499782742314750212804514245408199312358037756903279997571522715644922422436273859492373009982574579746125754472629289189508140591529141323471577567137200423076652233186473317444868377527869665461763!
 2096491316714898908023416682896561766043327230606474261506127269926753
07332642462180223923740282133924301290877230670290770044643748356462323943433093384718192428297610626382965011280276670568619911890031723018862971234510544639732513380456836904631891117263499435623843716222496148060735129895873275816677911549041902774518347419863650431387249158057156390623413704701985468983001496726184075667795691178609782698809151854634352504961867681905432056329534391653931454231153857797561726242677276092669345816455700864012096106315170407629988675758183235004279746065927025355463689264205726838988887383300635036605546532038490163238605544556715010371613703283414129784582544124936137303401818003855306847446233040432174316485281846690717108079582710672165540997281934835894856695420699071122962822041064840609426298610606597683898110185546364619206418358080196634225575103275164229468388780037156818799079986785550848359908115385905163317748222543370515544213230203064629826732703030675469694611768132290683039854565749373286099234330829044168200250566291723600!
 6245611573880996381994663894471943492233609454585175202635999716274091482187632073757136429056788325299882686838315784293609928661647372085636920925425384008410816051953421273877641374554350902021338051309549426071925248898302170331700568930850028275288494755231138707953862811387316148666549392392715797013157574991548409973147306228265978671700881408838299921636326496816345620704034753698339278413494950322773295083784572971091332841464899746357044420963042977252938479283917860604195907937774595217677988738668861265321846455970769710280985852380858256254836843478858241522087014893778938121580673736506252085267826168041449004902842819408494734262419620715853872257554496360922701335909609392665029977369165334301057177311683753891897667699864527573406839466220180491159772677787208594196335479972818381398111045648056864312076752376633084304363900469321960812957533341006562103303846529848988792862669321053533020347023901961660919905431418656701592756524406624491158605546709826250!
 6561447988605850807999738122832614888147325769855167613324466569065745
06094294811950677889674706448224726484652198928932364912177305739244410419104052302108263429737034133592984018477762728928050371752799695311304499183164179568958835617713073931289468676799250190872299166020453242866421857693153339312683886380204646809078681486135007579046194728204705418154791218932262507770240172179668699622620820276221961557225694017896707825060362792929949555241044680006676031489404268991283858741461815146041585271412411826311066290099418417162372246244661282222951347762594282619712282948772234058473524311563627880100154203752832608853908822221624373545207464064266394436733550092328700132655848126334640129375521796766632163334511591294670957328923651091103302119920126419246586552833553879771373621997709613085310383946269973291001065527626837900010759886167746928985425793408788842600347567954367360821470607062096306220714179981966928397670593121310842286396713144169139245790702381917134218910718487715563668579971108298228169002582597064469834609122227324473!
 9792128110747397819349024546999233624419864022043316294205147429370941437027718613625111045505150557274815074997429589526005751823911811679354484262117983124423007778940078242635808309685622382760337308055192219692356943258149355221271820692724218407194016405741318449608216072992453803834507622281798996254418832758390791710369510516484299368456494279213930838156498506602262858291681177388041531708816257409754518049146458946937521630722854366915731743257606677124478127740901792207728834187100080010153481874888124508920029427864602237710202151353032412099862164737479966035529271324912136456517325948113273717727742731940466941273370525633251845559592907468241024360731632990849266460736112870338023868176520472754686318686276887400008649279130957772045099639689882395006808587725397007475040053438836842251677485689949172915387811560628046579465677376855096578071196738195964211691897311508175327374390624474841820543932985851255614351500701861432427171724618329428548089702713203398!
 1606329812166954772019001240757887022935819034023488457801766742332405
86997475887778499037550758542405899686875206581566501696304331383482583411550737800311177738893590116449439397381579156095765794296051420904305359947450522456863383975252560353770169453916746278574770300677379445597374144714663697400759063676513525174360340175670458908349133332243575383190234198011851194154870905076350710647593753190309905793900969144156424645941282012616506035363082372554319846766034372593831586625728656958537119959433098333779738443786546519477480479495876783465186278910185834359802730789448861965729997619723909579388254803565701891485185409369325872600346481771578252853632219379517617652899048599261211754051096658148472117600046240961851321752703338473286947782052476926756409198545739369800761995895260902968998081626332217020647817241462155281254162397552062626214961690892426519341497646000315040521390689811193364264798204695952251474507099930421520241980519536292477163641564382955902824858564265266457694694485462747109647964384036657649943573547506035366!
 7853154137674761242565065680844889459091071399745222787268432548782654084586785341656970429387352421156266676850542788481790706968029889381723205567202509919897920510237476300595978142047536862830863043278654467903201220034231812486386236546251903470831244267793170302129968764154978654745098145006821306351586662108235445214311266273071912957145773523477864880801025215327848752452798331013129513247847658728333180071426625934008739380212991464643041144837333323472015482890033062581363187238364905142193057706008649474029142253939654119429645904724906296593852830101820939977249965242601377518695912739886424031195086018354240483416304949891959997437435491257327334473269220796377881910783897544136620630902330274107518596009653808740131921760376758429638628289168987707165740052814907607770365866166458314528583043474076656645523237890719887343204298387037925691745659708843215462420189669143856090145520267685984824070705212176756108316453569370226024936315540168438363729568008408860!
 8269046390410192151076006357310394512070698993307412132764412365986367
613
21885569714241305346554688077199359724384072490895770690108668696541743179432997064917900233880971427269664148812305684056773277428966127486813414750375927568565223567175025082670382539872694817590586235000059358761584334307820685616600109418530323808470567418930301456236554727969827977373719654499226476535340582163335847929662793703844856256878107617433023323770184845712393176283391040411381418107902102329526348311113805431380794690595533282633479897995196978242293002502425236465533062648425768947899863668572079107324060432233363816061005929725549108890892423621339445765313906937583901033923632588147882019328043785995155281887530023735038416834877845175037825381891771345108155653523942407891337577576289566973255752729510340825385833034136331395283262190294380881389668032605536499578196973580518109597418547018160979859898971678165150317285336840782980516621496754525166628552307738448862714437867361800314283017232521178156826659652195622802923593980042550867882375529818907180!
 7091363261996654859231779746773564342641263176127740271331602812494392489630229930547781869775080863076387596458070495468066733574325706809703940962067129801304485215567542853628380327192000704786066652539542813217729246128992887560594610184355770473714346899221513641998419630272564865210755204477762210308408038497481523418731378470687747916165683090323710454621497840490161489194148536228102762632842454233527537359417398660876658636170037341389654967627957470823900858179924073412422778580178070035964053852053167478132948901874573294690757762901151529953613063471857880867117975051173794734351243006132499000489875041790018324956721529580493106862579179682074027988987456066255672331752899312149852458296156968646239294332223791434849851621827905174472406545054866116901503840204755711530845387018958694804222409078697050569280142163353255360426357232636825482885872953809093728305665222498114977028028924758167622600843983709559858552906503830123923335419734617091328140922513742728!
 0154701747111919096757166791845231388923435386809859784635234017017708
14679392076685859903190404298958719632008865149431895258058444978977216687511196483171892797758875641257199292992331318398772043881340930990524010820837912398003830026965863226624686416622698984081662496844362665171909152647203956728468290573853876543724086133932257820038678700988212822438313756737090073628102895333931844391346959549952447851149318540495476892588440047087955548351784992106784269117679859705190170053104181234749433824485903160803541470110781898373091186427640905387224679212033958564902534388815105423246411387164732970286916645142367142314657909211676311133508585762781878763086242685059177138754115506245155332650732843006419923929745951361788012861494438181958349122181313846894945640558816451476195233698134905153875773414127202723320686161735112320211441868282533317148223603016483685988966241134352466921926617796227067186011338022402398439791938193703197467287300594473088962998773694363380423786063775363618248852424272053132453168940305059011820600969637283936!
 3464553884985163010445093599421120912355311442919125992007966385539828239140567263600453206552212801884854173639557316536930368818505035990113247136734014044530569474944879010835335306497619252894735838183916167916716909146972215714224253126114308178360341980583906005726053536732133725607279453277360533383478247878591180635919058273649182561560154207359514969383447164234779113444053738916851403608820405993926147568019125364188466414734998165776766490448791576189081880332124952798432539601235695412138179111281699649594821835647862331385895753758175160838032149850910349866967226147594424156845511775486642867477158673664399367311102136880680027409813806709297256035270240841316461619561596236219398548427072824410046416462615322231761614242605971188738381159487607028886557969866392285026338740395148415663304434769409618136236445098402160910842771765309611726012032783726915169421521568984505156669665149758250887143955176291492620548289925248096059212354852825490073825920759484371!
 1176023189903299837590503904816985008307895177787375024892340353471833
90839749919784989094250566788539220525482533846804498115233058731892354602093447604736171729197583816857922229163185173268766382183599474944860811660419823986315806319144319101477184613725363451638871661463273366724571223954747104348853804266953599642222778023458427029766985975909225703120906279929558574873678093086268208259479714440210875818684500457617256561289606316623929383616332037452772943239362822964145379053575774987626719185140484651254465173558821948868969598385826551466075381599395884514461794991389754433787024490738927586272560601261003198250184009200507313004690216302900049535842422991642645808885684225905931881091854502348906456802982225278635886479338280575205240864997015512092920527155918851654997563605460405254486508483090014654568722781401322507564577642562661677953983510681079317829884445843897140246470038213209200607968939484834516259975538913657564035631466118036162589734343668263418316530107080641182340960472466131618360176896834945057452398236212516781!
 3125043762349025297379521286575119993876526869807510429423813885127716051736735438619864490847939159985248917752653262636308554053139929402801003003305625443894532149123652974276740186816118549264211673696619948094165172687564232446014349902957214325655398621373469597541859124177527617840304989916684966322535974306687484447994128002380393731083254868687842581033072801690482010362050805091521498114540977538652263877406672170447581597575907544819227845982213324041412669328878606593687519471622363296422151526020789259073084011970537234894671608517017237968075623489916781574628715934175774701750060913926763438248306321233732604992098394521938640390488468024603487399299034975559693539702887588749487351313690073954816582117977151610546532125383532654370466352348727903491321712523499038878511129785746774065936577101005446718253937926629313988643063583655872547139128924946958437964592865878729647714069044569321686030738684171393573698079926129214485203749927392274947087188794804305!
 6690168661754609611472917730865294106119985070325975321547106074221481
28073503189655253904080934309226221476823723335146673257401073429241907889586686135283780759496990500953113363999945914282174512817671015411780361501124043202020193249699325139413810622335909834410144519050701753460434943077484424476249340769133603457760770463226425209838805387394341321122953679644589016166604757855224774947610026460619836217827244045317251714585766175768161596939983157096141100996826429522333420127789001017560259290254256683706226532361671483550911421741189833922196591725409385289045429292545181186086127294548710718390678479232418258481040617235822793988891706588765219075380316827627409838136361859597186252646419017527441182075327844942221294537042301223358725244786457864747731276677213515962077470405115846529803381930864107252111857512435499408783551699734844981144677240415911294284131174124355977167765941441304230334877036620066783917215979576281288912451922821234282096894183954331270117817792813579978898712575998568980840390687581069187394543625082803867!
 9905011527764612529146866018576790301513090128633750155748768892750740701778286983292871894057825535905222722857188974097466344118302590183525406645886472000577719079870207674543729390418160352449330300092409862125457201453548043492786207377870120181162122130866023971901668505458344755306029392111785309256104722852413316617468117896678837787613800265125371384686605019516665874835900572135259642765470088380735999825329936266442801948946443759555300687477764602331708946162492563433421548884079609221439273487139469949887050999855941997205207013288021301294556650749956916391847573092958137531236356531912534467305507909944940766959480390294624076344341287372868152842177582301164409571320747559266961460678830637202908480323950590021090594920840138786311660022250379837349773093116395523510164176810708699458159155046519515642206176532378044114134427946698173231676217418235044098791186967131153363579241951779120025448381760968378548012631856613927562632734071066260799522451232333477!
 5996147074248077337633527159925790879829009745824491825814034464469948
739
01345169617680621687058086359854976799091358997972866551382535341777871882786484335464931675411858363194010540492884493090081440557047261164016773750027466947517172823735456329805338689506380800994639194796628973012398485721688809370133900476439772261169720042218244081318860112898261842190459019845225377968359813059477969098432472157065704523545639102442088985445246890011147913372955473000345597187633445503129967397826601643584832791633147034336931000102859797260886613244923742430260070005427859060517037601960472549904991577908489000575168017633205628715609237818453602039114634399756785962552030241676955994529497397709085008543373100077271656799875124999764998267522163312524355151892201444584954090336392647546587308351520673348660633486485400937052947597192087549931770503846673188789109715817303552434317928391845282895909794360783265111263384523371154298498210816040668412848030477031598624117383845171765564917334819823041110227776798405795000126758939009720862513790718405920!
 7265295464591958773190071913710187395606332994496537991072173710288288989194933889952531586401226939821917725984918151599593970864636368966506700263367902815697452581905796547846556233830659318674685375480071217266267453574269878902269271270510963186181065369557132046495095196693068400203537285310485225697606111772245320637597354926720555111582939191379909382599048093281696719295859758815581032744820809649288875830750484322969776870802214647844644694584981471584526614802530082768349846471132309313266691414567086038494225980143457588689846035457833574485860118754437350155081367330662257580673255014736473542392687741177606517168693750009700219473196832881037568453720637379745824213437864202905844540861107987782309913478871641957638983743923929662615439188053290230908749624703593454363690642268160660319821326822417447418394724179912154960043158704555434469571784495826479455573211415702630060856279675497282123345613150106272932947624403265583955032847673719893252568458611950841!
 6234078777464712257098503265739129343359463896902570843242890132285635
94915913438924088084849351221622148727357360103688484490722078768701298990209055665072987236612721189452304715386558798153806857929486950505917755570291694942097706944924746629972400019965715286123431284742671403818744816221222634048006478733577631247122279289967796751303249439035732209630169878040316398413903010815925951155476492371350823384589067681874147811078171566499391612381630965643930123478943255379494437959407655677659868846557046452122638348591040128218562250970089882787210548082835639314361936806817168231635450630727610046132471899631944396308548322260534634619538574968860254968786235515211585218701660318658823612144144481291369523910355989656847966497648511256174672874855007959484435453036796346712489509432815154240547589281832793581212620511948167183751873576882749684675258882417909337163799367248602030540144504964650167338283141840011727287220572681609583945889851623930633549846861719050708080028438411536651201067720090928992455622191789330276821728145286005812!
 1490797240081941119609506864027380004628877044297077941443558990544699315513813935043083045452031323565915898249646710836667143574959221645710103488499956841007483145037072836023090252355402421645152676873971994511071832822768378949903972846646492448201300227022760097048762811029924587951739083038782585289808107613654825230984468333831354738387496406192464729215468685794720359713451934080918993299177367615016591448892579675090391662652735131479179808605375611782895461017244425004581736562085132280863910135614362904474395723723401470747271482315321291732711836858023649152851335082309535568528447188147621127878029803664436157377989217720866202252889718876883432443414891810576985826530767693808762277999822562810875915448595909406664384893158287196633145706534105521853125939904236555636155212018124586801212472874155127176137108408720865317003247267069141703615882440331839952376695198432307342616987617053142706754853440162932322647547761283151559865257190320464969901062268923795!
 3148296294844608483551494737340352644057079813344149489624831617729648
16101190811242643653646465640657725401930872619160624755758886094172687751651119708705006863407094879115717567396312950414815077367158603543867455542401226290236553611963648665654799409505492139610565188687458681860161737097925683339334210939797338890091019025465630212342286317762409260147642525341489987009391029623493852552907588643225525940206813550247956288700094693006236728400175016479015051159844458211009944581535343580773606733777826582270592526636929317010520393233873999137946941574822529629642967726662149237182423999812475361535451301797899367658220326226824064192858828127310265152443187965580566371058860043838892005465071527211250380637155937903937622240513680395918162750480773436978273930661097083720806945865911639255408938978784276776180399574507402935165715630114014564519667483430424843476952881332792349586340512655717582441765646462567061096161370738205189664448177806188147563030298450909554410004885782260574469590903989316569235437980848806249810968728984686788!
 8943053711709764966089689088370061886390341965299621793113726409929208244938814769176064983561567746288961546482814191287678383785455567740359562217371163898815869043451371733586077690827712326471532118861759936498109205140775445747132090468345981257450165844210901723530912903542967954487652586573282919100697673766360405446128850443896872965571820420801235901666877262707738041114135300875808868660757032618469623617922507389928217185504818132242284284001804643605469384538573613084326713098102858090375723033958958859729111398472778614184704005907597877389152683976522116831336057499222837514107297576864304523678940936797490491772922770661451734721833942704334925110146768642488353657870148565088635633043593330135693382721662420869400085528733061866175423936261160655439417323974095599693657939329062861754902222189603838142274808291910306688551808005348908446406948885194286886086643703063172290624392458793804512681338278111999995989925148834447248872141396282088568821014934371154!
 1027976516506927885197477866441874980806426176297896129020862381136237
07587184198439016210932198987303688551201927135795824732100621087052814270967010119973195278446072650857639536927142785780054033458968677883167616457082579307029903705019600487830968629940880728836701203121276744554719881155428443531429079209666657210526897762601156711901925332410559604984283796832801355444021819227725876826945313859026784000331809266814350293887396151052488524710615524448839559467850278477498665831585285412554906245418062915851316015022311256796071327276484125154463914984118088221067208842013494162770702242152222994124981501915018240285120942385349588174634404756825064284187273655038047472465067165187516184044257323817960265258072632692814872472404237472891704149500164274342836813344815789946630933625380488288477487624437300666181913428430985696844322101517135574797616958550420498077551803595707327128272547085581973404396358094090723587115582635594837669752675952571968723604602737821360823069309935966807675499811658729949632549207319906051679854346756263262!
 5435910996684622281614671516667895930965637074003271408755837945249879071812694353476206848419460321616741691810009847951276285663797156296702601041525998737709145928840019674531046834357938033157460872562915159650906888873133948283111096054141315345315893095944717133511923311883935448123271278979600160354623077816736311276258498284552372283220246898919938561367702524841393913917898040961721974043557793166173861415190731055927356628827157026737407764364172362544424790115156419732069508975641198951660276151936541816448365725499835827140258955387474844942666171533675283484325340434001368458615212702791453351471495483644376208327874638111740150811401492851234526048523678339868755950644248793054889920261281987764218549116447867506851196355511055851498328684778691221346562080991863172028704916597116979025626084575163341236039091646810054541719743198001185581236819975448333377996195820962274147911985754144483886593711183986038058532686432027041067382197076397356889263292353059649!
 5963911394385465073300391629944343588365805072210690976740101741074411
604
68862067907195585614671153541239966270542362742852304116061608360548031675329841759110212916254025103859532211692423107074970706976591945589316154000086879771268575713558957695059672300037851037309502060111732561279118860256841520978830954803061805089623935067485353209118151262221090336256268814658859758963940004848909668464159104558724872793410991763030722313501160963871717051479428514869897752643062660580463610303415398298831610035134399307723155101484223651081593275848032354738211886144197318165131917700924446139160332720430362912626640424270086866037105953187815182699364755115263338484721808701874846392554007869907854073307357082986781958092756258549551198353561761629248368083540154465526692749912532967652506301208089154154710641452543400431185870220393161708218959417868862607072030210066302751230012281033167329064422107334100824014161254602721307225576944108279050797414371944450008581557123119265010693855340182551793826093836596196603242949459359358118575673547649066295!
 9968833901035079204476082425819171127732692663373831024290310514480878931297480807990409422739518014481994553832452730112569059306070975912544192840360914236737447298412930945125757705166392067221492116122278731622485579949490144125768811446296691728891656647847397776536415277840667207831694578305990033311018545781956551800383239524431805591726550212602838102851109003396139706406128507006694242616432974232513792762153495757793662117223944377505609402426895151481844461143219290608904634448790089041357674380086215714488567993668811734055050905807669013998870423202734965667905493886090459509481166342005649126003505128882508259223243276073821410628472291675668821441511725770428830275041304131073784903940156955613746794274048617634292279948481231087102951665791716824044375573404574634472606412435263822910816608205613439171200250861331633446948112675089363508660922599802487303060326960244085426846213447906898694490563255152318563373862936331412414015624026904951693642396939806343!
 2075390612941758838825043933168094415057968043453498897733246605286113
14578230195158024867326986349715489618028260837557834994808470740477789505869141890601952292551195012849721094612326902801969905848383305747178454294126399773585172993275130165468897190975521896580571124029009129700253893221896966098851117862077989318187588311800208155195145826392557729057216142096364443350278833886335068258390779500769904142762149104171154232934592577104802823071496593330382428849490544419966449172364289561980388618363934002507676188779483419273685862851572314779544386235308682024767338257240699503427292281756924450350313361751433008037115715536558144158489169588862407882913504242735982526145810883071546450851751290405091613637086149300570858953083213740132311727316563380041009771508725643810953264762890460656614609628597836344835697487740280647226122843523689843623615149061129381055279367484596348567437607239636728891744103904721631213591928018644586761825336718904912557683075241783411682601378390657052798938649514323744683432914757039688528023308121545747!
 3568077339217078622329228726919963230852287857856463120815674301708059185435777785336713100265454919937262967298229832130860489884228590495459914421050583514541942002767117450832474748210265390710758003597868662746069681896316214082961238451338192790961469059184366988901917289382495436112523990843200052289278468667956273300306706483920666073931655816083179906917222168203007378076635197587594626959401007738060022666950296263471937143986804037167785911734030214675900934516486486475184040244859422428447181096375530142596712790988949358584835676061608130392425698042885405147140084789171759954281224391363119760144147837512369594765926454304641799738850031564089086415601428102115505898662284989521128619062499960030239872609002144390444972729040129449340313170397185319817825917096221629195888686446354121034202014452183748367230581581745532948647810101762602463224010886985206282759873498474854943355308677947203390609926324441763573873079185747267901093167318385016103907349968304459!
 1285968800892391615309680649500263375010844233375468162975138164660849
11113689008462701889379374352788340246007363975255609575868724128945225011442837620399551893092344280979651587521387221532871198206803320286773947821313346274593190284142117489205711422831766858145366503093028514851525691426471736414921984542121285547690003907438734658262979628166519652860063519201380001608952627049915053056311348234323126394454231387838678625532692834340705955427927205294292287524262639395035605094189887759372961972954979789595352039267488926444715615751349732393695062696709902137128469756623718448236962936527081492143903110160867793789110467019206227224899424631376089954746003754752089663886334019816532468373816535115804485862429863675041743833139353940202204703766999491916580893597406356258198551616673072192330170909276674497391958605060985696049705341778966344554881155622754638490698885044955311749217506299353386078287943859405960797297846751492339972932199458608580992722858127624133975343035641781776042221411636145063178209656969207120436678846553195485!
 8584422577551607394257250562592350022433120366623856601318284592100278766392912684094545436627889147553017551730417693815618135328918390141824964871830827952766333492978695558236456881043571611807543280793357892462498509188332780398169873672741902208984496335180054863539743708215804180368210960261879215407396737748737308428804631317246328185975967120766524547111902551666126016042379049811880088205079784331509586309529193178887751180337312037177652101527647967089097795875835443682789541952295223630552356344105709733189760383813753970810409360179524418859590762984858585365975955861962756579666688975521502224991910417943500636065737835544255062005209341299461459802172882613061075186259559053188826026207960274018447889420020532383857916809487190431913367884049503656909575004351594331462257975769318321973767357480111343718364056056889599904282089698935609831743662931453297986583195051663013941647165675922674084128487538374349935510309703549391005467668339749821821115038636766441!
 2321645169479116040849749799872644696272497912331894820008429603629166
95665082023793189212104070140282403478344754601374925862871702835719499742720796645021028784833310233598952526763443954234812360635396877793467019895060275107889745277096605531896855555840885204884163043161123210150436679428323879727240282521543511764039839567972955824087488030344421566522648699301553218959152720897571368630513556988562877525514804344774793934982506732186931402653478565041707612024484757696380949688080219794076358006994486393351314053524943048361667588519472664393288102704124221477661199162538562081808628010554969022375003389354226713850003279657218176561809240371802946331191299121176216583819323186173453125401794658579709100297725607461099145401363397043122726486310487441184724213661715982935610687260934505374978214127864972444465220503874250415742062035798129739402550518042348337992305705928032794667811779898897612290862603058720395131905292165397999392474530390766525392318630580349378026772186579122805164775780418612711349446937273666266680644069961789970!
 5945300754360484163753717707915462684353228151749797219880633063633636237604912901130719660031954312921499309580365723773256345914444576579116159042443269620560341169123317390028081926923034153737688954682431382189984658682882383684189514571153446807802086808536497414235754167143583744200175868122607522274954026655680887678095197135469999603196964618949476502464380152693771965693599975637342878180938162144762712225233832644373118221253359485020837490527769124846926208120946096046085360000822385588801170814218260138669523683047475224470314292478408566346737102842214632759537384508166662503372734153380130139993975953001837961697897475721971156673549271387171478339001653540286384453090260310666159739474444120599460274243184348983800578187253122609461117347353257245497554976870043713615427651337862329383216345870137245258755794267939781826306103108693971333184687542447469698611240505642136341559947677974994965479468927201544433940013981517407299443297815050251219875877179341181!
 1871040753052137526067062041379090827108649972831487736393899888132198
935
15771758670078062384419787879853653010254492143056353675261853099926457958745828297285634738595008885755869353442614046766744607097705457158725684180398216540449819294796148554859300613169728026804949445302126330268373459186285476347796181833332344147864190208654646436166647483704163903205064366660793885810244010388351490005294195036609003063061252030705772354074457230187719824647417937697690870704633122144090681333962751144672739121490981016137404683047633171636890630804256525456308888883255457609714775446023536966349797506308658813121121016329731086421084552106318410554863824781806168063464474963943963922285938588612792171303212704190637854574838872609375030620475905577521877528525309694023933174162922759371099887040799044093905611572277039732512369897088574111844941310499682371928308934902208909441557320773884228219503947587859250077358155398947655618047385426208171246399718193179692716190601993178269148431583335461535956086045864878461355892446003611258181145951014372259!
 7027631428589673803501192666189902044317952788616143257532899676362602688806143400602054463314143579101614233985907372624918107799621551488754013653252714802609825449931545115850104693229523237267068394410834491230704789712508647886232093141666589103207211188722431194329983136882540375161015967569455787840773693910815069566403971782168450087129550377982325167288941049418921830191350379149566229279317181846408375784573581426542565671983621575919778526847942413408964539421754866184746441686244480487345486458262040589314866704218506249157066354622584658596942183824503727452251382137156408659498743621308912689475536204855709282049631071903461175132336796701365327715045376781750366180911585629684512528553242942184968191145228641776214700474341402123086482325730109251136611562267310656360145629050616202112486433536877900557446627512179156854009259146135505757287938865174214548348991882650080789683573075019231071434119528902472929080645876173756164693650311984377190363793177111425!
 9807211454081190276752210057162967617407266282041887557617694798269835
78424676679073251969708673287516266178994834451548137678853252303838989548587743237376187781550761588507567231459313445743679903276961857395208302648960988753397064471439274987959750045963406537817270418213100995966210595708622217306547999569398519755128932553435790038868573305580374327586199008971495005853428113839392647673725359983789089391681302216671573996884984058076794010634635406865780788660538247912918569633445850394371109704801281748248981696766796395322329972831945134137301681994566180268192115414511610604924303976079046003780921186703996892948905457067201894996566658303537992199742580191276769206362679805471483724478571964262452326312964979310215364505155204480884582857795688692444205274775595156230757461609211105703997145938446894985126252562964198899186629572964344609461383663797045380416346846294099476849225323969839189558220666058926396939425385590827345608300106062533015893375960416437875980987843075459502878024670723516556923096823115077751265566117091540521!
 0006825224755964995682612124289028740741398951347236947473190831687571710614478717244834448406696130578006126968891905684240711769225983269685380886675746240078067431739101554633858495054250556239295745441356254852507384363700440841588220697152174173927387905505720383154012660112231410844479853745647289865149221284200592827883695501924574071331406829436020173937432024706600255630936179419700408742119010436478774888453416976525784986797468931758045115423411528172107596889058742679565556220181600482209967180560527014249564417415593816902295077945877597825190204609703949273977744714019130932375055303274554932837511724911666710218057869384536513127533461032774763496197202237556445604495355141590949887289723109947440909834408503399198106390008801987285357967911148945745147643950890314454478439726527827289564210770867181787028718516646673212261483459614753207673770386754382763668855462218334021906176008046617446243413854620396377664157889984583766506141685674774978548112024499872!
 6787395746455056743272247912299996789452216693697149786295968854198883
77638592494806641167441122486602994158240342466555160452980797892858766346195438787882859659879636560603247741087441002838271037700281433512685527118677242544875979763905021749618165580113121038083985235145416050284250039009851187337143668502974923837407402417598253322353604657851158287493730412509461731179053968697115865532014975033611675256113020105709455798095948168143041098546329023682422889969968385526257914256891258688771924002006686135280420269068579450888293965723889481764603346582472950411888562316972385882391647136451498966392723910429012886242751569307431844845971219089277194703950023638164020679028164539669515457718027589877448892848694145620085869859394654435908127762380016470563051979838113338316620063251892244148867625041864182989539635558418713325419125228723271128504881005515119923717829108547349192697767531608981886091288759270294030266596312074388171527644161760646770269606219576112985734414964109318444077877079185136262940943605853170063389305566578560260!
 0197069158140176555209329955687002867739944632721202977255200033007657856307447628716769566697524697305169262194606019507968791298651413648879038566660554167173969175553831329249342923943915115939398964645036280297999943022749630365553822522330485048071343520763898395649822818164807145560438028380836970712363404763870141097777186972364725329101848735347976947460810995056767385484575062943497693567270230095872428137076518748834720909174325832195393758922830900648786044976677176992938736827995480591097314161088708700350574311746393133099420386770876184289997911307917187557673503128641023533286574298249128599971129261530787638149481651432355454593056501152355277926814398186183672459266892152466663824475858655653344306831075962160429874907800883602747190208955314511782893948891498587234401831435239301156902858323947889118544792702703384428455186779211713605366765281848622070940788516753689510434407587620968496942126612999004932616848614838526056018650717492648093908551928780102!
 5057785575653219207671574430000088020885126178813033273977947060678046
87168505906219756834343318861526748208507926550876310017370415943939706503957483547786843948795537721890373393366064349421896551154585848477411367259741361238636961320215258245647340057180066824131964602972270814007145233701721626846248478667759853336047577340408633056101747313552563312215264831364141569972401662020479654891778564199120344169878282810263279934318229260969976757627126395624284587794536186738861873170002055145374225169357244738256565303721001957979564533761068713632787321594004234936678875968358771171810580330808983642118873016555721111802210491705934586364436501691813322926316829554891069689769173915825397876759573419959773460051990014225233677721519588117353355308654855530867147848039067456112680901884541822059809769990714513130739209784931558951115749539529705820930108400533952084950609553392169649424984221847821330245301273168406542811916151116048511922568186537425784120360341999531391911286569137484225777803656755984717576386132002874884376333649118630394!
 3223348374707371561796668070243195090109318726256267363854894494987430716824269872412637257308003232408518146977473130739060268853390232845685205156585037191808705140888195016838871663400906076898068589119976574761433455925550452824325171514364698396550222231940841557747553644696666011961942378453161606480304164885097360049261268397933429799516588341329037330625939943395932743669469163578995860106281957457659987047819843483640447078644587522613527557956975153603240448739855236374315287966802307465190158529855829081101391334107267602200560651969260234499042702394977587111658357420135975411366356581886147741328934436850468500477325908300198250826012369863118279680281808204931996709500109974264242940426648260963893346313020870907517348335453201805795654151193811014197831672160865918999434108228841412548031778460466245811897694072522402664393233858996974042338774295847933218763059971299475253128774641515546414317616623390279005278689539865461516977014105328890108002480235963532!
 0207816407210802116641570792482101471241509829944406390255213965044723
035
52733205574316646351424527492431802803053483686858889016750633837533953569865634464583365605121332343415770651222653806600549528558771007553937786163009396631017489726028242002620290259538847078855579948029808292717008593643387445115979738017363767443660748536794928609788473982074098753357892527596162548622344211955126420433991806855899045183920873471276384425655741898295416224007056021537461302787192556540526340398761951952466039929669175480362531962091289858384655037452542606692558445571502750762854638975562078611767762657828212455522957004514428974597098831898571562319600100481091554916204534162303098693780160114297847604797571298490007487083072990400015057488237151902410290664819925416382424203573734967971297260098288926316636780893007423162051932885069670394389786709463867347080308038846152941117902522658608627207892156867795515538138703415231461335964956857080403925416683448059016992496443904083360700169643079631757281416190856698629299762914097447907818839271943998997!
 6651713632110404059016465608688576694071127653168207659656465565784863412980579180285581952802020989143085015706601123007835675984507946632023433004138687102125464359582620608852344033195544948943708651606517689933249409973348418412464886570900577847854077559727448076493472431678420237290290096013738127294490891394163540057947932016480631669551938425195932076139336604537033431203644953770312371292482706093788220250042486346796435386646473420274505372677812593268888907955105716034815741442883662930543054329778632426524646949042372182321653884422279915016705250744596443773477547269785621328994559934525940163175406260571649128407677069927936038085945031971514851041004741765657781590490541132409067502715034085067697863496356164384292237024818669005286329471299356272359440660060209885063451739672662199359668915183767978983274390869589957610978242352328077611182751987116038719914000459164331373651891870372773498803923084240188089567031862866225002518126182192460206614593690046307!
 2451629202810292987621946624863373265724880094586486327298749701014687
41361172707721763600062537675094389756245677286055699511770673195230297931738049152762893410608580460532094947621249371137212582806012511936887065547930721048106149586236116445622161069652391762107679614225685266467902362281761680496906622630321352456590942627579188456985681427141046844035076615833011712010982616665702518033126432897493399782777802345521708573570494190737004915371195999917037183172453402893760081691720030915097470967334267924111604978322967429722814339518342928924435433158712002789682924623061916774301147077581738660041705475853312195739852240078332094460654280990811373079517009355931038341561021151415145590865399242134403428636650820866633710813286430253207690406507296147025479985576907547864471999947563288966933111796377009868931658922597261868311121707177125617725143758450154000928061216133543366593525054369504597757428467921241708895459967305679019755334948052620142167308644409137802551502806374185789503767332824306205250615269364670058509366074147295941!
 4721111637239594204983481220954425325129027778644547502066107362528415946487701906261990866980206725565179142759650276863328149253724077151163121328922291159127847249738212306881751092234297837210792798353415424239485995546102715398444634812572346324222266550212174542853691581029247039011939235171016825918316496547411991184803577920171682365183359390446937139209791247057879623393237543427886342649813140340021328898511486197746121377566840778782783290675060052653308233796378342180312899508125762140557268262147823226903721134185808150018743022186956712600367045162577197997521474233520175864047884623420498440320364248477943860530673427446684584554436377710910000044330269166777463179727281277067523795766141093929399970630245439926623514356576078997157507335934773223185177212253723139033839491321015105300343966684868114997816629341955324023510025175770444334084258602742108490839320261629229728369890475140955022711034762247953690974395357016554474769860066810465861561483768067088!
 3629723016528253118520909439690575014061304586188114979279449570179079
05859668777265655242069177096920773713405392087298716315385782844432552892501978943074155898663504275180214807031943984812515727960557602110880323123101477395692335046117377426416837788084090405693260362419308964866976468904070203567840767079469910125415131774428174784083317893828508916701525766803904587187314119276861465689258645471382729039392016837020334469884677248843076828775711583653216076258472754926115268157550604527309616063241865660251344317281687341608000446267942474182350695136555230816623136483197638385583679441742040160418293840909666818139464862173195825324842445870875053632780196479371506897251279885125377880371298950114741027366541347825867464993336061497711881017184300951060135601151731304071187126755868795238229549458022351354858318364912336658768965741092288682179835471509839915954940361650513333696960427807287254753583445876087469402688548536401858997805338983516276842947245498716073816557053121634515411236251629752987354605774604810518960124210256963093!
 6921245746007308042286623240162688918380980982474551211610871922016143664645217408499946317277593274572503762246939465927653183877948646267254560668098396501611774947234833837467980799682112324294249475098706238360771026747988447616197521767636714461610984503224101751616234178631158877150066937189013542787955964906553744819374904831882862146908417321343751103090248100715559246703824881777840167687327273840330900851084626752964507212108163293940326016452450507776322203062398738305277022098314973966037986911373591349977568633223028087839214873711538673479411841029028765579499649505639224696955317670252491777160454799056771581232430859374260504244728870197011248479487710331908014313355749475661062448014536817070804938057784498914208196160134202133614310077912902537342739259412031749051816264010177343565008329764311115496782092154076979477746371020044282484605178552235924154179337470450849732227640799637563032157278963462921115417133542546001070928300147547896237656346563276970!
 2819405419635098190678256435652509246958847689790119817633088467510102
41003657488269212597836891852894316903086728327241184496517380478360523200928894195149883204197859808399472534288398226629161274576221054245874282634376081631434980574527472016459875415213614740239753002753029753875800371470327437687633148819657295748518802299848093435321198802444658548133757836217221270409367604978655655492069465254053605751985672279670031945004358860425504822066023038176773029430988526635728616832613913420372256761523000541661415840533546210420576407853663561174767145075678149255469746936876371866487829356194043009255575897992095230250851266856952801024366509740002632321693495541770453095276742056251898923018970825934169424026638720296234422975210429261366824217648443082893161104120038713349259642690342507907720741535489717642329639764582397259416249758242661938640972862872196051483593196218946254689375222345436426123482778400721899805896965278412273739437812811829829089178244347292946885863784908454457436806137980750035682139309530235869546508819730957225!
 6964435630994992862963736687663483225109548522642039450236391855993028745718294627324921669673931880675731583086375917865954642134143340720930904490557287193712452983241727625292857260467553038894821396458111274060717977642736683843668038275222773176388185394571216884915943718374886903148085807040504146764495840692133910459695105755889977284518137840773549879095975314401945263551895624838492983006274613005218701350061614569159485987842864497086645188074971075858287948342611899046373120786323407386334630895452772127527199492639444453393590657073781684195536562945245120901565455679653436629147129349113140858455364982253006220862723087584025698604240282151857955242198734451641315345960825988122425994882623557266229276932683879280068553812963810782311731576628600447038952992425211898715460865588814820317641843872314474957529675209388642230034118016507290063730380101861929608675143888595592267723961058400902400895577178381342630142928771064048453084026810093338222830125937346700!
 3793145095813124628897293655568452128297933313068834624329618196914862
855
33774703360717830232933474052275291808400776031801694707026815148680874455667842835217976695526364836974653866541777904576533503336297311243456498355273083836692759962249006600124023446896803133524610822518102670163657284011502518319121491499199434745127270331603643457192740000120226408173347664210235210872794608849219069425481205517547715172461525215699457948984277132508678996555550702820685827566793094479196212959670327125607696766589306636864307760772399187435278394637793786463455933448076302477031428609249744063627716408910881828619476553547018270608321890801002027095398453757166098697734212998083186112544631404886697339129751767433115744614326445779817789490551069849435001409518023791279498777853642943780338166484902053046403434539253392868942613640773513214463225974889918431668429079337686109002013057191141922546168002508396313626863534232882282560254383773463630892861748696952119024431827365460360134587693614601717685593607062836767121412176987279562874746703557696268!
 9202147922937590089392776246485752235667033729316837043335171039523490511434975990554346530616168265031425742308050789818574356584670348172718291562856752006319850695371614552395927722582855096660415767002431866760627752590574905610320824933574239772369678784587377540818717175376472088190110108536536865214104868023166103437965575270770007912226916000610164682596473083863376833881945764180588744887233241125338424711847203866977519512334054752121272619244178583634196461805674319973547751070639656144797484930509452073282851271634983173055478310062052488148139804866370881517529178396768444793318202655009452566985838461222467899509443802031670673685187504194268060994747208598506151055061216589124681667655763814218598779774452710102043134357444820680873621574520625113839545782899450615157907098646489496962715020589281489684934677479395429563080671644319195608021530756508890949205710195143565703373362281144823995659450645749380985354168888666945759850018577035121649837507057691878!
 1111730724666125379902746164809899058897367986482299197148350432452958
44251304553362685258003620645525317710117482817860977385776759285585878079507595144142595019059993472905231666183704087607227472404572682209993966924674776874292164559893789757044163162827697120166316218456175611604527386309626531374929020060094947049633801392636659939269353090008868859669237171256671366234794150424528779107291960908154948963924101445295921816327261131634582909353084322707362558388537146551438152684689419508006954222633747265378675015120511128024855837588203353285980134717972266206412987803816498921709289398395639844204790070695910876847419987810634599725482469533090797078396124963506785205503715732839991999300090499865803742280799787413112803221746782372054402975881175287117623213771378347918239557213833821017482249141870934012815120262494594756724726812837264303125485413110772516054368431845635070711691230513949470066829164627669030041177769364420253805562470024725507325497894305960727710126707526004991580212814906918445727914766510687697176547876855870020!
 0071271531743635729315433879538826455743184518296691608182435662953060658068073980859969537879603393716320555096662163149205411390212690533064676931483858372498517034236675335258665696625062826809786397520026072015388032376950780736816247434326873988497067000670747625904237192001721682524228735624947899410498868403735300583914173086533867675228484093790996708407706859252261644858028771359171682123305358918874059081370743700755601559664425845213106217597565974449829025046517107011087751614637986459307741761762185632601999568037069824469922011390694164952523136250774100004037463200047269633944688578915954539341438557115205197917103859751430360163188027556598430423640031116148210240126302627733358366420587863293768535249690503805137962236916476781157608169796185979998855127770615412082465431416717699873774268837875557241170744169287253022621414878650793868796578526342214005415900742947554016612849824776796930801418825251037441591284916900954898283563148675159409663808754863121!
 1627603187753567118194938669730667115404536132474112768635393240075488
22411251801185599089611038218563573092094352204631296318334338469480599716013135623719224033490534058688278593451537152799043001976620875539659385257421674179492131798200520223125677720089701253458674578307921134121908195969405329108020518039626040424417022852935980976130222415073736626726970269877092244279300565703199056238449496523230118350010234247326094331509744982186272930883495328480263757491692251965544744161756067173134463442876170947005800049124732994746969482611384549772285214867768311835769587486334098580245835504196813671504041596872436505539794200740908965003424253917795057903085781056846104744115941274651790418823442114984098761430270508187920724487142332684340734915582713598906627568958130974205203886382716750731946943168728541715247981506778789748168485713091040905505652322756084402796361772817910054058454671959664808597449548942242386964351722834928962232695863740270874615017692721450171306944722993448550422238976661923285939749074516790516728242414017965071!
 3380812533061176551666529610931223756886920255842794353411908066932713461798279275937328472741772414008894321231773075954270631461472861675950631912436234665011432987782794807869970418847050720002300284807344946466056597989199690604488966146220899598115705722412836571640392856304395762405127421934109558948903565846978457040271618558265568013000427352250117108280437300982456235750763111632621769622940369196369092503597070454825431419619810462293535736124604699090515718855388087992400941516720575828013795384642281570208887367721864816910315226364333849575402398753086253695330474925459796036574192255653606025371890649759953037809453559462456417554126864195632827013928515730289552026970996478059729296879415626368247590073827419611452894672047231127231409079912183239279462420278387973193141845796262628539976201534762316762652596742545319620405875593910148317437348680495069541080507239299731740380651207763450939378513166202978071830446169495704302862659005441466018844098224554071!
 9616679153917200489884068971445029536716348888226432205373660229868679
51011918633388046656431790911563879811258909729143070326022723137537321782737252464040999490777302595118890806061715925684790577300501622276939237818791172715970097786564560685839952418442035548312420592732305422415298624777944315447789493729373509814426743193221930565462349195190552818934595469875417024376765941296132058124020279232156584650195453340016868678555616569517576166998546027169174376158070884619904637145126693972271530601370802969175550703999789478444927172300173912692161625460398601066539712616647106533215159139598617817734556877869835175807847487005296474244749275005205453992174775766943823643139975416816049071233548436664369429810420793791324290904472483996503790697549424687690582660719360187275491085014036126556281132703561799807869734815784880525275615586079691358088407908588950064192523584510644210706336979686642391487644920270145056657394423170644199666119568390129424890133611055118830614080254585378268301570549355426335003545264311845671904889192168522750!
 4604291309678315817644711944856079322775960299870505485428077902371667041347777309074703986899803760710136650206349898972629945072414642433966684721069612530424570390387105133672422384229926010801179840214739674745655717898138233252260054157790190641028273680081503855623355122584076937813271053438448232636007775026046241209698237340796072988985379068551052453041603410075995278808755636044308079411207238547219070063440641017266594934397304856022208265151899012082297896757367352963578235527256754522589341758966580746870185765027029252033611249390460823707675535541981672088063155640409824294865329590085118127770776587720444115192412151979641205514368844453866261725201407816729059729129050377504244067721872070209447203591665658698636146832134116985662533686579335061766618931024310475630929230125247026309850983684268025411386742509174833470847367122559715654270258567735737379439397499090036609541495881522409501202985836075366307070287068042901131620892983002978509774038747635479!
 2323931289601986364232527036222814377421377323124372430471371082380452
975
61573823034342268708830921829900225621479133147404815756409266700641054923250361753688055648013310886545372222075620009225383642307822722169258761883989056359225832409618230054991580650560025514419208626569758637836498442584290202209932476730097299453565550404478812959475891218658838513466466837583938819713125092311752213981263586944173439310476715859637431347132816286768363163806115206958397605298278879588533357342283974869405580911312898970171285307033575179222641937255809494929357351579353019554895474932413803677893222050341081376208738459016510807331553047274036424702985554117929105650013601406392262142886613653195979657675104521733511327067193638399758671714445163782677843592547614320198324645815915403101546008132492618991373452341754673092803714821987397814609127481262789994450618216232911259092670796957556808132852881626093063293257460526562193128208293320722396868225211212454381254238953011106288971810627007364126504194217424113479968481107049720937739300710475474812!
 4106289972433725076620046599231414745032621986691636259832506542307162300851269195671027668674987203350366057956992933264093060367640982946036397073323830290417888746109340418702227040018272445757661094038138516677234767558717381414465491264574668956159390909370128112023726644031570393161694724946632281458446548645471986499106481942473147339239974763711234730158068493401775867497070784976733021000178606778473177477639417646033373615164242281765432076849875518873298356107286633583472841853859902589477895817327139732511726763422055185399939462193603528411092916802046438150829473421790152521054396488086334606022184413822307613538485190470237502565259668042875028884462166874631654787907623515904612017511209009496497183696486842412494215711165985081741941331966167205965147720077291660239309886890139287030165676237574168160546514076338807225251444828368400415533423379797545559052131540682145519348171449059825031913793743247926184168970041532850212011691866495240676218935987793068!
 4373047900257196084748483813518300158730519053837139516424312177119437
28925451113587258718398681342318220724831382273275203591578223853305796099048970975079025534664769064282916978285414657396519201431310499430658282047573533570785408019764370071903124142223175690646139580581815093191485340007367245859033934043995080985671062748755414700364412958233459096689636369297336072996312278134677118552119978996531666677939267368617736813600594781247116557904133662532078502875393845352665442684013950194702551455914947083536491049577920988193254367096423239284680349184340065463449256151111665171684880213328756861862838055094421491670195579124692695757697131796581664638444767255992731377465328306770164800898916287199251829103461151405982717956877552515268373475334590358175954094689679463053270951442789945747051430121877880582642742525860934801000894750569045365251501243875455826265529560467090947210596136561903494486015673741234372600468337238435662303425707486288757010979182653238675207746944057278169614837655787473931763913181817666306830496036620116298!
 2229677289914177094480777898194799387294047396564412847302343204998026543258488657329438766523128075861873647141426496441218988763886509554851358957360976005545183832228929767089666095582173695647114837421395430549395976177695704174877272164945839452211188723946626739848590517404035492746527205915193230761932573686116331680392149994548464288353774734068262654699430535481318840694447751877708765669231192127882551816537808361184402293415188207300677232253754109933982340223629373337624522003675759026313517753807022738726902052484174394313676466441835498377694524892693236619949893355676909257466048716359163640936709663031404217167558324829884520859630184485087081127188272999823595588478437830237864017212048775077501738139119066388157590494599886445304519793269399436383833312364825703079753814054984946413801782716623540349489556735685174069567214014028765227672083631390108179671693424518100775482871030968785842724119567469638775463387630960871823806381711160378373802604802680299!
 8690842291017057173266595386734493401884768062647578322926667370005847
23072063652276781099269222753796857001382596249705933732143058353133498301380241390872894457938820856445798884402330149747367434968827604704448937164567315273305382549443734607685841570566491798368375732455380031033228798366806855508895049380782944125421171042106016513094461776417789673277972782900794534256904053501119211494741386202203305423483407810108727504816967414428115355739027034602377849057557585051396973237156260841340710300100386143033580682231529027112951528997532360628382357320992270673400862176972998355677636217333756059973698072405166869236955705596708736031772529098787904490714086612476514713241987148069744703639995833654514346814175200846546740814554035868447657993799471471746471850320041470479804947927383790847740761894933141483408864189268748946053872006420469900386093551805213710721532925245472915295423752155823640293109231743741315885448864911799276114458683123005144350382907014532053347672636934530689982310202546504295237914883549673025710961850852363523!
 5836344444127803272331046057668685554895350803317099424765558694425364826920518972137425914011253586826474974371561092017436642694116823111655953894599209570378118561538524699326000415980825070814137628796207844825720231597035398550536074161953835238848596498717031956355249927423250728550836686745584809573357211510877569416330011636419686290123850729356450108160844142777525719242216631879194709139199872265273525708953490301693313186596174891225476850296615065329390778923297854462359094309143275504701946893308675942076751161480110535717060175506531338206990430945283412723354961674815023372336366670025437813430390883557570682896653455835545418193161589336141884085188956993498144265658420505934363968909592500448430290051919466766837850579182310375461669417997877459988640226763326192322642595289323374346893751978141865675481359985740330993438063542821920735141078123011581486362701743252116994208666654651204220237144033568886178041500256386710119853911897540839446361227459659362!
 3196488977571215715054681703682797488286601364876594170143916619545371
57551955807914988454067908315724618263507443100414248917546058218012168259757769314216621083127471606669449548172101165768755899700569596557204272919740213189912475558058001474211877778612472119169741004924152435060333177377557667798448023256541280849087579811961250104219737082724053448112678691359734953840770485145476314669196183755133220725333067653781128648161303460098328011564033888895164098785578279939230691249878101466250004278489408177239174731471449773286285088021594230454086172005736861278384401882678212696223633401290700148645462382906104889855529659118784929663107393788521716928949174773715591449117688779842934261508500465648838042772540902715223810268373402016191963937014500940167348604815469320890561997319153699250573805790675369369061237989496406960388441293093421590879406892218852780234934517469347624589775568506197131916071371566104146696189315040019544539450143101945155719684991539838208325000797964585698081572501883636600470002271538283989468302930486832476!
 5685804859814599969599326641538058811824695316197498323817464896783394617070685545829997326576739537557372713131308363923438031500913854045129432276867143412706527620217281773574234989398266222436523945176441606325116041545126865089135773276527305306945353658432787979552332889065983681142335472025108472690907169542181625358799051911686853722359952352243409324377069026535304151866891837184841949784169041386092015778196204865033271345313408850200671319663869320222676873559119741853592802555350826599432241480801311699584945410789205035907264513220442005615847091684589414819615115579960564171373304580105774141651050616025211244217594475085666598686106272510036635342191415873181078337205837472978617668721224297243400409609279829622908077568138235400502972727483025210255485217169270079434364800447683153781407439626589612672107277791845921663116062477648876483547092868218595490873336000477564879682773467108556758230238301127982226748899780186233804018739788446042807574678543740100!
 3382865605185999210333446430437783762230856975481299616661007081711492
899
28193336762870676854380909687954190167446085816789776563645149882814419262051860906445648613472745928617143475846354746339791649660150412078151029882061177733182681450058608593824739425907085248280060708452128235810218428531445983911796701463378362663775399603825076564942440506562540552676485023423859011817425280409664834071625955785237236951730099190475072454612002310889694952892478036567684043507980218151454207788434311152928031715973504781982852084314325170778231449748067872195263914536901361183629617499260576040845756864217162964069112668055604094280540443290090078191382158874497681348283201371143240399001424293984016941117467444811690162875884638485696358281134243316774811854069839046510041946855470600091207920932824873212844942166838407060121080789431075069607660746938991669167259310662320410733315624210059238274211167548949805553577796629036327868438552653945879939323869828763892822334211777540879145981309552418052244135262410962431636283652324165974275881477651155672!
 9744280163967844811424715207883557674063177078578445582109613929324503092662512444812273251296006301456126566399217965424835513862441395516351188028844943104652514109687975175320700822116404431082565174153260096249906651065830963207204777386583505215815885900982657695678117305983510720080215293261851257616489258213031424883850010911294738455669737920411513042121742395452620303822129456465224469685663520294667081452507955318194063374487295223154920682716562939643117626806271897284215185587631838023981066140831293240809990385517077719027874701296529616996753028326700717902134019248659891975550896599446197128520529207571475924093175465304693746934207531133186151669191390417798740343883125092146149545761984039593932952252187245430303822294334860665625417756106248235550969554956299432900942711166311913232398278615331905188133240629045893394028723251038953503711935979365024486415666169072296726664033628486100975754041460821011925333227815918083699200225177302481090357330310931284!
 2194510001401382453895126247107319116574932952485789609410066325487622
59056464839814846643009958207267754635126186073994446044775948571483189603187602265258616498010329526685698427550449043544019737028301100088798866842269002286215348370420220441714613801393043338004253516321255869103347975458277753207668439142333899556578608294834816046307747907778725567159440680407997203725724682246677730582742477399066456747321082327449462716242492430259107344963224050730745782350880431700291770427458126543572706812717376746658442280809618485873946892640227013715602962395662618043306416791991581562500356792447179247792837429254989299813438544021355095309704884651079522885317545055605107721549377011124318041165123065684007150003641872579062072012907744492896612172060008261993607935934091025343166846031510250789979653179094947763085410571551886461294136780875641457314529088220128120085794713761197920601441921547383656861378597231443039756245836640701066273330208285837571430904790721720807738392385384388131658593994006718546525717882147672903510701528007030542!
 4678667582782175409834878193693046500639441525232211284920639464429190005666677983204424947390110371412476725354887162975878832980064282749583797530020100581373874728635983534408701810729068877924962979343413854659258258999461939534451010533913861909171237755808900217787700325669392733371167508183244667739974463470120931749700998303967617184365199357031868003049900504986636245168438251024435191549058868566285999890611887535037448923588751072942113417302428047422190288672341021374036553410837816507506744067086150751407973170068886430673057000052160541949329199796548938214114248684882315630600229670956929157708270074098838056010107145530440863000611015341423998866143628196986480593886174403839203293645542004897066851618196762153063237017216500114143540675036614000708116490245286971495098631171831741466727076839289475441043758080887726776070694560420052726399068868725070217765329670410798263739103966152371819735133808545674971858241034624142657572012528695223486357416165130219!
 4152631981507045343505551705946097174132616979998632595011628473123834
89383077513179762337436304198337997599222151687820791154295526860052870673341027241685817045556031392569704358299178134158902912537631093856662337021844161580239660280553860862005255823661798633254846016999489960881659511911973856267972682889507713158914326336734313252516529068060722640185633371475764132675221443135796754937838002527861751286487091349095000227872998101840134544768894967910397649085264324721481046507597394210358286588541268814532586558146939721846694152682805418385656927253260162152487706077288798190790721511991341540813981134811235515137698882451993316947383299980100645738950190285116337000558447318539921037782130745690165283921277035856025004939598073087673533785691310533059807505334287219508663360987494916317710628772606249577424993728068668586499084074979378094260290170007058315385045614505832552898153297313435214793366713653085605976253861290506285012601465329916151235824760613683895830752373104821808064000451757160095630205750465871014305003876795703324!
 8711883245685570454149853282019366473832598185755785433706849603881560758620506421910006818459658275119270440189618842833050917698552618346486299255175461124786314557067480814876447760020298597165870417213459334298504647827084060434120551601945167659269828742483431826398095797438208528054354385877115296900734801892712890595840581797152413605157803169539780741791216361110252670564010701599361038982665105755565576631786632524981786048829787877686900185633761628083904396739281784505271926560246329061537408792177041109042067500489860369328535466462863687160444140294713222180508429782236707248949580626952562395332654807427017150610298514287514404711594366811022880877360356724771118351293063177695348389774281104285981399152294791693934565879375975968051456813051280249300222392378170241494170208456173941241591420453943533769234086171999035487027711662311538229391675020587793854455601422448947054948298119853896997416027885462832198625021385237866454072622538617941088819228901664083!
 6444101387404679762505736069474723115447876117523743944040610488880140
83302017883576986149992914765287934077123422638546359966577700580609938849471692691014800112371898237695390626827817977263701769112676724987243649193542940606943870246870059098545353094572534557242159159468696599306101863359041483290947519815321252270562276751093362739744847016381802421785803130582731860388118372455131604313373595584208874743348193835456324996611791703003693175810190970090688177008364659396606816341125313351480582800026348239030877291899443887580477228711053552709223203963499643449214151470193329847064637965877384448622950122168049897565476683742430896507109239256202805519671642821026817438288426606833108458502331640464700107072813024742570650069327848698452743438588327524610774498474030117830660155842170677506169416979306676762821104112326929079301153064166748882821054532790080931469415570025749690870173266912934116176689050259686615266713568785634648169357549919290640704654281938419628507091495202895870922307813220359080747317977529630579799594623174491088!
 5119240852417874921816571727819480250396299187262258738173636586112770134147816870482156881691708688861426758506739417309237064172225940138547898446599903677148730785305555872592655018226009650439109834993241325991630655298053912218586677827475950144932242673768055291683974029169242265483082937138090125515286359464204147616023656993574694956774400562974529800131225033015312220078735891475310330172770774219355725261802748762353932351955348767569225916063982545290901081100826427434926728517386357677025581735915135565436670694697545358378571023829468403760906161005934482910308482877592148198028827978610689229330883714696980513105688059575040436953362799980363344101446540313052701111240514486272141546172300382567311354243911164624724158052461398867705445877654314754259648366062366619075135645129132442937501420542280748208257456975154873501077560534926142542201483680075796893641881660489729851477818048536490247423615359002755033153092209797537068214311394169185404773735263486448!
 7784051225864382550029952936983071169169021688222408500140390638569425
429
46440086185480201629608564222481421048687475013146758178420822880372584160139783599345825370165252081867652604751886245560808477330076878718661184640014241908145133144757758111397479969708690452153306903740924588127775139579169245608725325196685029318255771325431725247965738975599670114152305402911366219986567402438812106062954363602221224598173789575929972634233809566622121695609549081273730945674739228243145111718802942358953693487330487256278702890593886827004310162006125039920621015713499111145949306761137711401095619765687232572919213796188769312439637459352650999767471469579705021771993280939890742181081480679421683092557259127023281232009432111185310755040618363699468804453566515964361447295486473024846088572624380217298504152219041992777340458837443832769737649272241518707838482200180443882716091019947252762058219750365318062553900186031677167980960508578608328389725267338165250633797545048491807412756450918529567508871732101885273965505010824732205025002580300011325!
 9612719482239358674224647006307695054733620052297017376026550919625682062724797626353905182786901339140144551598557727502568225816186583614205430106271903025706656148155027636457508726757690361804767218056952816949474857179279145619069031395164321901018341521115226547638051515925922887896234240738738377758631915227541268553775277745850926045912057882226341257636121796778718052137947400027306985751290734393234027764069184545534943664854509854512941690191219499475751989493765062709224751347728362847224544079035154779850019670133165660107144578821464852945393888426080608013870874737786202583728212045670015140065546815587964305012524362822489369861817370509014574168769708535063869150494497052642485763114010520316712438564681548597896582038680872688844585510606671938676368506010886170314894776843825881154582184075265514128460204512592708700996226981813456181461143828506622088002459992104327440664266727526107202433754759317659446566621322467639774703789089047206759624549845153055!
 1546436392649819512348960739414016348469496446341675196695002452782223
39352726778831930480940205579535220097256678703595481705688556328423920861122083133954778604242966174382494580259793722441851402101885224901947838225456653197858394012335974656612415075252155634599663502161016045336919608630938707502108651505462370195458564466477557772599320343749086360699983771447901803856136346023255774113345000328697396828853891796191016991137048223534897252950099252802846829784517846525655224683727731496278085799877448855082369237454338961202944916076099601621303834647173042731443931283838576533511486572468744944713436592617570515337219712482101938910805888458679576352567704123778824989366122944268583788919865578634843138045828493106850460336478837632938634882571751368315526761171417643034421021007709725799250506564220104071798331299639500038923618017975205874710923307836289551648153139773612972115853976457298927331492044009271088993234675788322884382014711369160713469598164807531838795637195521909089275148243769617232827762797184536883408646470425495652!
 1174630570900267897218952930994937039003273100282744596180295675690568821770545337479127707097217913140558453351045986282706224537951989285771225104936604449073250973246522498400107684992683724615023503020697849881161570478419411293410348684099552336856055203633981303980117079103820962489156937330462353954587493174975635192134313561766978692522842898470235215146259634942604787867774230196826440791208950325143518203653086959876866300090324849055530538141614806379447675099835255551752873735681726775850159897953141505842702700367585564731994243676303706414922129600407625758637891830087692772074967934392933562626852512916712240914548610524862692160222851981195012883483869180867865396506231310535920579815235968251646000894161417734933765810568805117281882267942609432234410467237010961443370774018841584023489024734416383412408044159228920021597957631497802353141619429402402231229981828280447808512758383072097575838886918859153175211985879326569642954671798375679819751162754773247!
 8722890351363632706177342272412895621212266909539229443914310309652408
23283831389365286792126670332132235232029332891834842241939992989558826260093678033871613382727335829108243958597646148582303802255378265887223150626151496235390778293523690531273685815638915161196271436307788559781237178638133020202331515109686971652777514583876189190560795959954635020709697439793484752762468847071661466606527629956138139656911253430366872741319609170804718573135524966423315885061555123984446146681654539485318454350503581769320884853715120675761983040300767392497947674806196207000467669501356127740507355675150331552505123560614790883382613115679907561326120343815492541832219279930382673341170244854405754728620915419885173794918938433204769974350706364202991310727185402998466564100163990746313105425371898933998140545209497474271071334368400063029398583901338918174093626329261049633815560710418105904817443656407302402750451664571912277463110296892481644597806445661931562533939491669034677056933730794275448460136830927376558022412228253597512733177130585092185!
 8897004694080786509599397218826669998125270688472226803253226326416852529581184936901557201530720292018352000662529745569115533375502197107422819006810608758885968833227957943789848808585530851821540924270483801760087548360292098414699062250857365229265508356363318942463018582629733843632311775110040284194093880524345451776826907646982117310929766297474811249302952866794838537073290654107499102723354324871927073837503287072507248153181154142461559713690640459800110135874557234808536689101223798900925080734646854949286141899797324622986345191535260170650312176372993740861494780398170479852881672035399035773151278175072573501892668883428614785639095502922140168833521630995483004852960333589304592596913592419807626608287653303700805618591328522679239724726317534946940576569334704204638795168618775096850209001454655823941964215299692490783082998388643203856810949470980412559610069165002262395005766023630587092217394084358859845213631818487843563568983014516931086988116769504704!
 0517061643416923548198235425914261994171887525989362557313206515029388
66612767677288144112585378211089059862545524638414501218271507010184123415714814098094654030696524381751974459897666336784964202754557201521833634982846875318411963157810579891381059292080986071999139335907962604482913727058798147878016072004130236379705648313971563901324139274938669356858243838662314408432830126266106128101691613652651328302577588982068699566446950344384213038611440868433122786046460111528834428145666435225867310609262758911077802120133696900497854804566618651699394002362999921424377113650766869669453972175372958464157061510914517780212867441428317617141127975539151233075299926190865811738895810377302419455947916663603322893829256842619761125606358074033414725176698006289330917901607488157723687578636600320976113494748356215391081596950251533158555322089310249163251647061175603598470536203529171145980824493538533167149574971662680106472073416277344486529307452409339758583919875023068128730441319565955006294875491760482581201453703373772255169403070855546604!
 1297775627127677092445770315027245150453638684475392521374975196979114738397676339531857019278467955439869506209539211072226347696847302884680314218496962962144253236115463236499401655459974106829553152221583935343184265948571580845194604070317424107497957253626935420870106437800914193311888649685917411080311870246849012302111848706159014554955094194162079540833082446092603805281662326808996172601151998423289672117899204575532066580241582097959626971200333142589795286274742148189553337540976461179157853497211351574804200532958658875486616776047298542501302914756358402453677993814724887206531686670923075613543181218322028585653020198991571138082314983754928729809088135763036974791646348396067927945926752284444104309848191015589185239083784981042185577942646039067129588670124193230036866091612959400636524512711747098095838326252604475078156674274891403997229089065893604963846735122630446686438341680083517103696847831396140585189351230880265959512693039970445410094719132395295!
 0557410308664609360698590176236261734801553055583506196858110685747295
179
75254109564508940606570397052225052969610315811916703874102831974945986801274892621054735103072461041394479928232088465904251279633151582548706216235544541373693311556129118787995687315308554875576664204697320783752009197641594284543665687212276799283620101487419204260797372101592585935204528479369961635116382027559462824088417035016433107380951022316203179234741161686940419866178990838313473460247633953138866818929631147162961689374790962405567274253232644750108361694048890337384813488607157338612446887838713248531884443163371989765049087223080658884751156028733432216109258104525247442958320168124990009405242120356941772031841693235101079659121557947600500909295578428312009876334410668524508065433223651642102974440509415202216965053046659964792247147645061293312268821441256859956195567566883913411259719203437093311172011295540820973425007266326192334214013569842803243416686718066198902026764297351946319323203927323093192221986356104960602080065656548309329342930192239038077!
 0722504616604620753791299017219486435356693535692270078460357557706438544638920363902841911132174660994825867685549410703170889752869866994973590698323798038555783886911928744428370812374080308290049572526118021725821461921460208035158456433084669038201486722681022680379271333383198936663624942720271518783987402269715207600664668015737306472260642203404029688518411387517913774565127138079419856129905802978881182586900729479483623490515540726421799090751254577397477005373125305767954300731632763946623944371722339661159309220631852709706843051591804846046062437794685855666705408864441554198854138292281887946931502816039528030773978937091872184695324029593033196483604234316884558935311792179597501090684371650951875370481834147461677775702011539365829930436992214862723093862215679712606729630642582699855868558977215705975819796642119242906173000561397135443670501072706576565273128262436275447176650925459960372146204135066996758977966174327107942126058234900623683693922636013601!
 3532618829864507358940828987987121148606225158522833415213344271353066
30515140509306205270372542272644765768848814767313398385142907887215813875659061499964172671509919317203772706656514922575208640886671386269240255519515679930055429640292805469187294521619766688009011111456097918662255538096708930102682016545812732219883618935452913163234686440063024918532542884545466033747276780644131213124667733654295542415403262679337789444194393542953605922999457527356744227780344577606261774288979977997177994859119263023243246382787861623737437098813463009012000530030268169052932570227691595565092322539530829897725167863385124490165568231708494680868097190153669551401592997440228390433602832547079741021195095571590133589093737609074226424443550105949614050334808871591099155797412152724519874422233105035731510578320914381544373741045987778351137293254161724192545220132652665106513681035327429644122160036034495711370517889735411257587186183326480999936699681890709446871810596567352387341933913230295676802176228495149832237113423854497719251456880283398730!
 7997479374092279415942262107904690757748204552364668118441825298230563758280858886755450635884196222532268837225836866411492202054813708460091601409806872833545555182100569977664102378957910290185250006240299797826380997250671560829164510125655586215384866730658662857351477389336347827806795965040306478519759998738367118793218972199208770295282855885211700971657361529696671324011774574460691352905857886744010950864591049094952110853858038979271376903384718041450927036342632217493462978430318233878481438994922560371347546745500424691364387536244825581998462630965440509354009008644009139385989872420253207419473796808975048676452008723687780088036342530523495129868246797013095219009284355439574944148916047282237376581898780705134457150497967185764625605582077496917305086312238883825474189299648601979401052361000698066204732879297060460834854615834867222325516413814875578404949723665757992611167576757460256627033404472427150135322188805951333701433791318004099215000698744685907!
 3398130798165859241521426455405873565036941043685101340791873025744245
27186854351272860707334573028257378713275983797213907414434801615752390975812363258208488830644407141626401850674112042248348198630084113182248737390790321301836406846613038888708581916403752777791167284544320123671470920177082910284637810422326393873899503971109006670269060609888344379861563349069359087714953244370434010478354486208206269572412147417538817350858593858839054657369513158789350828656789986598269260058878491443455802140655026074885851088695277267069403671730905763554494518673903076305633125184038538028409854862951250738717385730013302992871665398800050899317993779257730442508148730036796709021207485876092655799364863624193568336774301040004286384668324874551628899312082252230724908450477106514693765348373960168456020811531235533734885017394199219675862917038473455448224397812278354357425946284472678945502903700737275808179169645672644243006611080467753563663238183451382000137719312396407937655669865924752922755843878778673502515452667750058089974233623075682827!
 6597742700027483102068707991774437907578954845000045492998367105609886566638788213733076393407265867392295912909948598401495693709914132800158463975449379924025114141027387519151923916942701977163350201983378177736945185690240365799702052348910121465544710834173181235755073779933676375375901044554673354224366167571458764948301713268082613229961235084293470692106505586550955791752366247555905458607002757284881984759267012843817817498512085996112527513616552064628738853357192645108072112699769028119198744552153113675311381622081749771260484902753649678534396542371661115450222365709130059792896921166841781194983245432121356895307208447374298324388614012205434795908559940115091249364696689685825974792896027687775117609033143812676499335557605090642816502391302650060753464411536297479027583701781501575146331305315065373938975671149911234606867968304607679534868149394852047244585724965444246126064765593577513316328870623922009759302920678802460851320160337398538742378632116758542!
 1649244577972220459784988344598607565168049810819050116517067586696900
25065933930783336526404842069517363093578878384069792366412508932532669828787058240094929276872793071945096335472493094904262515412932801422126626678772724006482918123471558825995729806947858808950920641057006707940772179134679378968561710432290229270776975747987213904181414419179298198487612738305823618219212331300199701663485769692513790348424681295545787221236177283550653103760914643769116834146020335068278699398001850840109325485482912386375928823999793973511779442723437829983080224348875058708890488081940121456273623291794550615054475152520365598004237347986786126682453450534456865231746715918902652635232711731823478679847717936725623361968769626530342255884406565906975798877851322625477116619051849119907543240939069018843581572781558306260771176051672746117516680505425883253107393530800244955325350855222293472521167255856350266201375817215557414162016504403267082088506629288254640523482357465565577282624583318509552826862105248612240871652500623530372057955482380387413!
 7276977640156388171252124179949138112367430394492931994159922042106526918943835927835864232649188045606459888323597449614175220971526946648446353137929554379616417665391549339927954008312024860998387267399231616766567363901839060727863486732963752286274542695856176756620565491365147012433131107875407875691991937635918059172318533700901206650772090236880535965645069397106719005791386914665604670054728984584434146560465023964054157322310631043860523072630789682212777943759614465592203574328904784300527770628709279176324032102299866500324933942894128391213500211678743985668064389920651545438998383970392641470917181431918891170680268057583602920984926189409375007438423537846085588276204060107489187015209046071104237657575560186355320937715334305430827440360606682349441595527808981711127974030514140190611257399345250574455623892367690897047262117147201299909939763173478138753283349596735514890053967205765569102157123462760650569707334373073832576122676464561476861582942204341331!
 5340852805400286014500185339047304824888296358500303898990531128212479
793
22997934685920765573953407238818282124660341101685674283338212038799482865306376293079121586510216920951829159602331569702175326553138221913691590148090725421265881753448506069557261153871677113252627608035100815818948255754720513591366141740636049427116598897617909282014072100594145449273433207596199623004209069637127414959797624564994977410451212593662383093207342684294732862555315565716972279614872324242426150667369813163205769819297334875539431496092007123587086155397607143653607920640751399371675059986525301107594745710327412990021790060545062496002393461142437872105859135950509500706566880935501376983417816852387440988413609386350699198483701091933636597701070808022725336474438934359758277830086007436223621527643269064801694451684236924857712513689957074708638996684796777809249463044946927518719314736414621552012301288704353300045405872037194424398378136250060869309884155725051430983550252752725152129115272482698827021372806681275742605900131501497406391510057631692637!
 1316992420953705395725245221693061309980391785270445989954762431313138299697792640707464885736957688834730078632029409992379479927402635456402887356048514721622425151177003666671812268306506925477363796503799808346846127755296809245174167026017272344964307103763845009307504078892977912105669390274155803715456587241791936609533859496005843468516765301925936402661640828322376944348976875625023850617322931544679058438672610631952728391593344833842292022527454272338090496510065170730699878117772141692248336166343804741805414738241762747192540533970819639406974092828411504178700207395806991002544716885522194677751164365311571306169609542500640353641300452206164074365709203967165894083825064008625972464548465259802728878169261118384985136032373779701942698645189234458688636666159411470252051802637508708744659882634145762330330279609493395282774661260672825392900716567791503273427863529995827441434430279047676644250132986075619282204864271056668719148188715900571889709035419919076!
 1907160874411175732147541440504877601574458457922070892166838520248246
94468068568127435119367793574871406969577007032194078946980822394895494375436155522865700333318472418642101857430393756576573887489340352453984521229000369048477899868940402647867351204278402669834109534951273512293743424223606246177040002461643117645972473096658288701232439991730785047830278986939737696089588629717963727385109162284098683546413805341212914496664127115069364967358917684717409437586360117199027636520296506183687005892899980758131183356100197963360787359115485668167540231644452625525471410839337757035253594641424580004894846722388114332518981263124027095388570521116630404392582358603560116071020774345328180463455433822166727362449592112675369676229481756803263721782842883456868835505510001308386818531215277739453739817638180027813965848846255340040640186826107407954167605317011463540656520527588058635277031292212978887457469463223113976402253713740177943549487976637274947735869739833728145391109995222782364986727609044136839780191341280081982738578434387462466!
 3153448050741038530798705861884018578241386702310149956634275259906565674209507384740386920880662667356563848161911988241908825185678041008744042456333225450923146716974458096610487430018841089997612398481499733610709927290685704654638713019979078586308157781573621592408702279144794594524458299990144201421228556013333958394458669422777241652659150709162692522242678950479565976260947464850618158031391547004596970447276354972056048877634867369881721656715617175496707228264013159031674484054246767316641106268622073791881298701973671602636999183118759945163477714797562022217756362082699357917836227624974184712238758000388281056588200545606461511913430480349570404973283984094701446581349962097602296691952624967555169181957325749547278738975768590438341464417923946317903641253395666496987897589702480629444231704626608445646364875443018275177607190341843513636376680428281155628009043040162782106194276055783510695987196997977462480023955395071601576521313004754834103201704769394871!
 9154680078817805267172646977993536783212376038121895151422375359973074
54343195474308580280264609894249451171182311271384476459172011274591226939866001183862213344508319994010406096789606587147716624270810826674528720464066775946790639650734993517335068810242639923045138238225340766456386372540975671739574360516661972084049252734366822534450861552121186230587849462588124488699904090384100731822997938656022497926605568398739681232621917869259627697896808951412355370902265537370425900384030682459413665455256297180433059858638548093955750560487243275099581839728751664605415449840089990340360579497023511535151324826342656707780972295324532777941439453806192475044319039153536912153340053251712103568573891729318900964061697148795450671012581865754022503437199916860255427968742733451659517965557389479770610998168796945546564441695781685300497016446485106107589311621328943246031158299239390832454647528322618443084461064822709929309201845250923160417578611699605726109028155142515849629823257225194408454220137498181262774889537137639364591718874829872030!
 3240689460240540995711127845280939982081273458384883842281070854531362875482293074311373325243881427487783539679267736763820652581158632745561167729114904737581297436497070706907944988859736007230052228390680962629094895689199069035214405838162038488329909316858931759858215701902337841986324959380237172818771182713957666669825250807478442357280930652711825998212127902355734102355038421662412766958251156593834288513723525468100894102880107577069912491930158349694886683255702365822233248092889314763478142802071542132249185327585249344737809080100333000530959304131463912464287975137688377552252170224163066143565526324643342868901214795672914724051973372334045302657265874962922460876314922510319192638982785167710775670307437054324447086776144658697285150356518005790308078056934711968187106868331221754148609644845384941265076052913394698714997586014947659499181958771158784252134787041622944488427362594555920055765501167833956849027098754893675979273423566662883525976376132289998!
 0894456410539881946304998256573137664060856425157168047182196718652659
27400824961943735872614116850154012814012555970330677562392524992587608040181604264740554354715063392075221932790830776294095571904685463044676000478726248519580825970157900082183678829459920245559399211026064346846279559286046925328941645581441364014999480688936785599067433250805254503044186049133313736984799228027010658368452713278112927963248611437778118943818789658161936144732091424969724136493636017826524086510721305904181123978218880737093292685072423522504848346168516649315097877558242385897574718673245879265275797576640723456159774285075745275665774941822557960870763057317539757646954522726011301033458138069885490548898955428407254013082406962304571314172088658827413938905951844715330471820718390956919697837535878478945288859905181148570806181551604315547135846600768500041732356253554321344838524703180707873175144319912515148247721970859831232197795826696012769508733537171492437751119677654211084948897735256159573622042831944479773212045940464999094226000823762485598!
 1368111545427931303130432272770937196633735693682199099998465450672237586155553225578413122477340870517681899368493018883668634220037584558398707390594561822622115359603819077131439665774347734384813669338355682633254691533892111197225838637411494913680233975020101452659449741756417613629762862044128578275953404408037391581376848487663546574831187450629720585800669569830937014976727277141232270620375745803561252789504491507335131592528395945891258774374337899317234172643494667757445323660640825979680629678449325271263222349266891022212585112674063640781828750523159090970331908091310761968463051090346374863596560947843709096433086639061227915501330300950682610491600414626470725107141438237175967196324351548626243119876944935506705368855696296904827604275850167475062565315463303089316730558174648258170438267309719640925271695473396898417641738263839417910662235159140515361698871730507145463710273357004443465963451254921375766101144085748815307344614882217633299567209768550146!
 8238242247526575986958751018308725737791712239946381701459113811874201
390
13260692081676397903590558796817613388279427374974164251754089959303677634535753157619512508357380072436005743145881017639495651805624145488278412670385056546701564726470744700681256497898164990672945024472228895028175147929151911346482099905469102236315011862872533419007511526485727051799697265711781778258592519375072342507305343620858590409186835627537138959663950067896957343984183616151399733394358473041445580719691800274961560729297102741412968741177276367589990101285648069385974885059761375562372670716554567902638296962866524417880461449146395907448673283900717509931107247537202452968474170799181156454875964963560249709566722040805531582944820822017341372491934820748367978728464712618018701524734651382660817645937772182240327720357037533758757131116715961456750979061463742421687771223871589035868111564379278243210636466445616758335759380944876670481662179887265350282509619760553340567134895000460147756241067616598750068151668755727241258750743498951739381358559264232356!
 4344662170730555235442189524018718983351855845982978809587584815708466497705176115968181328055931297759422990401862622316193049489567210343914977966571908464456988281430370033773256063048355282964408771215510963315589098350460959085976621448186512782422494056733291436895668725936666354666259614527191910455901426778052975316746995183435417437417378183841051819381535409385220577272242890674118978291822717366036017422691238834372414300599001302639671645257396987587937126679451278485674208270937920519576251459341595696490641234304685064453471901360125161510683222062182912614463225342972436562294003221942581885936853850666511356250510465811777391893366980622373356830401284610920902799407352913641195759425405229620173157169197258669153828480269795148710470310966500044383123508589822423232922138054369954618006476781350711893477288119695289205158343651963990985673948260260922238562655934811805115669231528051697961762327963823235639453387987981155862672613958564084332270008868517216!
 0583988277099009905656654312617618808414369832699867460002182819576112
35121560559123028097073371875757694054664373564876465706397990722983531532177461059021226299581460678744337926979871580400526356946753663845958241750558660047992051769252180528409377854946781201664996044388082613057547622846658095187590714571467254213868821445884343661505123601782020262808398672657551754495872682886758208955279716876200601534135424119502403463166185408842001007744854562129079667383925037916282203188805380871571634045949416087095791352103624713605780425212053003416460191538807046872967707955510135468694418174751356474056920473691390221700477735051441140621532608682761109171507049896876882380628716810125051777198059098465978093966784685379710580514245479942215244782765895776759364646947312046013244401532656743718616417026327705175100247455521367668755288831381901722010304921948928750565294918497048138033882493249812212342937447568500226664874287204729352593995754520413428992585675268007411906189369834735122082793926179463310142178269610181299223462859288525664!
 6294226148641774502055966233729972432649398276207024294155072798425357364916499980702598857871862792364930239036860058926398512320941963203861081035353285608960210047161540049165048981876134770244640179490281964655468755241910723587568993764200085919999211623028403519939885775980999985859130852795556271720896073119989463947062076422614160966407693001884043484246229748003625139110304687452353649546286564545070626944089689389357799608996659740360958980978230556744040721323422402071675283453683441051161619201403391370849245689499362862305953161786362905029582412766206094157570489935113749143593692100784372966800127709818622163625549602634831399370159109308862334233087893196959956059516924866098093066294885009011924907498974386533577370135265930760582762640524072221543870267867949627983649274219638341864774868453083210110867131378455285277072243709741572159395194450198391768074609567142111182243850582119668593953694184563987294506989937220831519175289585129044351768366335595150!
 0634506026470577621232965139182724583502686662156085172166339532972757
48319519970076816351301691028682477950894675939929031634311927593471520651998567738323239526931656304432399441056657965628994052333902017500968715099006213877451320661737396633402125264848504651895437418633154315096714790047419492019497327808148147118968805558929073862134210611707867872924679469998810150185320869459909719646548846581263063749040244995703203721444900648743715491935650459742720707810222762654115804899179413477929874934876276687128090712045757000531330014958597366170811884646312888043928802107615084687188850572173808407736436307510934094221056909767789210280932344611829493700729029583308540394961190071157299813169569205753343708292767064629390471869860647389473853003467844644985576357295628504188148035048272352798896602931837703791605558628603454340800738663876706698259162628993222023486785696521897284659902844112917845455839944218261218636459149197364251046358384859104119562108174331826100803837040659013446258438253429678825543890288485123253941945403233136174!
 9425207563753601506268233804970791445174107616377561839597929385279096163810955595546909298588704447245659917435397234191063518889702588638424705313311711338559652079878352819739915940369553798183097182184428413531396809518620498315573925779965514405240613510834966821761962340824461556560461974155366801153607293686884117052124538239334833385862292534569189018459955883866923896034966582107210277647247520377489025400037121340934412391106706035096014632054856745830117672965166258947422668384929682420780125395486612610943176859330476691922558693138770386134354594357107573106742370824705792410036102555011633228105079230844110350091485888010270403394750786337259897418613929548672607737319373574098153944403277526617931058321194662694598698389157592498064517950647500710586039561371501914518348217940214119651067401070672958402617855206456808998367138592724314599735212527469929705097494388223199145981495344082734014271871111376747553757247749069325757840543160782777731375764002361286!
 3576363721265735221077893342854368260353271783183317900684933886469960
75609174622783862299220486290472286977979524207438183057928750600445341752182959286706802947260185243918115447047105674595897603431756287652383343442194275598818610588582370640558003434106788333296537192176164495098629385587307709355226418851476421606396476663973753783210480651261809233396346629699983546785723070131025581192597249330470075038817346615719947865598512330456720880195421560917091200148152295699172647587893914081294143325938479092285940338863044506050446380018204418061226251892274293921888190888289797382067804754820662514897460876389464441642555499232141032969566774816791922075586359449107722530175817819440622568279765172734739895447177684354422982639202531574302030961940923677856978915033530798424487197900019608425442022770987930282981414357748739989917347176712866261739761326455809747283560204882681780750700843315859545766756463136985618262670479180766532674776476719916811168545917709262271040884339696761639179703688843427515072964330822357922564233096774837206!
 0498140069965667329629421255913190975968871227387314792519149691747467454617876160659564218090443655993331554875555769911241095805814852295903328333717250650188301799989146282461715891339135156053292105961186571459069400265654097782258183033673266530058714856697580666834402614951221693111369075978098477926702753064208247693640640431619544086394120167247786645210439856797809300059304852242331896298904715335511792776524105887423682709973948452843977126691740996165704446841438672717082962150729103640620517674046753984452258080904918983370558915459642263198753313631348449189613022242842348241507387909380003282232408415367178120357660337558113046746944318818836358465526371633553750742399673379746259982587840809651117885946779386101378061226050996482715662162861847044080406421124184510978284298580269405161447740235095214281328980569962793133952158500454000629928958595411401823952465345831842176584542308636852964113362795715367473798035910718641117807644056001248027976737094684336!
 6695171909200948207460090872138495111526233869407867215413645072999054
538
72680049052965066340203211270284439827392169524608734593167837407181288690320057129866640527573708455505419263779474386421177488798857895852455616152817456176265040595809836201898937406091009978675593899469533752592197004464900457831312308466276554645836108148758900532273737648956890193398772510171913473669565112816075493586557283662623118321456493319380889456323396178903816403844954407319276159702345635770579762175889773630353622682797853046688841955335686429834474099190744543636113151160887386509043469283036790299208109528967752028545379749333490874922501434804262547936772292756856391526699465262470964344138154676953200270209658910585565491653698223672255754020549495608920088675035057277002149616754109479597433287017420548034244641606623458323673785264940429967052530497292446755005030617133949983448409637081184837285449486316339503957888014796577792776808658101825373356080085724579137367569271026926424699319188553238428224563799697415328244813238726572175739883129929438661!
 6362023989972330889570717534721763692265073665572436409228227481254493327874611436317069943214252592624504558856940235870139301475642635213429521218353183185026267484905816174397571849939964141725880544745131926946977815952764996377082641051334754509619395522797266362734777702095151012494584959328535070311300325815043873746209019378349726379479892306049801504021873592122386762615748330538446585733632178218838233358337472894633853716094119198981687800951026786730539801968134517883594136030627552625739169894388148591724545740356697071073116019909747028138001821895173912779001540585500900426092412418013066493249173060293256944007441774620642601916192495846875140848810762033644089327668863486932242264372364522596436132522009415725724060860177087940974651654036209686078378999964963327124580475526085867564247200643111387099522865759473993355503435681584347015621736753418815832134700569299369484215864137323945650469907932149987727467289767865974115427284485216373435887405184974545!
 7186684568298572414906781647470093849256778069137641591719801359701633
38924074622715553567731500223241586998995371996803968616998648995374127941027924030173186528399316938153493868388530727434811501348674873702880254681388091324740053825499610152731347308719784886925135475064013132764052669491996201183971577582791152617124602189513074302333830332476406920798579366445736871944488338200939361272936505983432233515637991994046627528745351880741910650987319367305995101581363075650841361574748193017386205190871919000925301859127697605806617691376520600627064638850388434892583483319659017490493183978399917094966559832576311591434408347268194153278569435291335673120207289296214962104782020283305133235423321914619132862494729926206161112843947415001587484851771645863485264313394309949547133564229808523972325678037546144658552412245249947210426839567247258065264814890142392104654221017198617217472804863816430069001116096536499025583892640004239400779525059644982044285689010420931653739021609073488653125965106089046203510118779177181650838704870847563766!
 6709346758079785642596906845951791597478386420939188894924201938390657737488293289676723784020311543619731334479235402705037100861525905485409242202702524339437353531719109371437090054878989677801936905304293759406098446212374755274361488408921142821061535915958087910082148202896103702305761191060905828680117060918640507130560960113985435343688997789843951207146437466265959798357843169022749667886593586773096919461965350189447511366415614267015956514557424593094857090619018856307376368404126492824135458713777419837968617734726314044377402188987935613983880682852259132846435884945411457071940282548478796672339908614934320584814784118266006214816298276675107578425737659330497994805798562403664419476649010906723615328915501749020387351718230385011163547538970398916496976812006167956461074425450226537344842425222171417852638044026011429411727097736103876581541413175286489524232301903103645904960355106713432050363307958373042437705249236916298961377320558548020387805224669002640!
 9371794012023299024099136095107102762461894194592678469843615910821133
75971577473190778645771432936904602208245701170314438229461332896978156002392972231432082423621356152188351683984184221426735211386853796053987817699269069605252151891709566987936652374729671878086952224854066929139112233392065369541231936414867466658315891958491332081258556469792078194021759180920969161654426607328315128091809704421548360515734603764003594727724904485377413015349646229867437898910460343584478002413146986652530056955043462869547842355498391303654814525952233656319451373052421486525226288635304770293800023014068258098255103111825167307198620353065560925925006851824222131260304653214440869032514058458735564222576194009795027960421616177094714765733733760144682000870016524126950517511406690152626659716223157560803923207851746840991868084003000883387389046213163082120893433317392978415777898734240517667836344947070392934041066141007527749195791392264323332540157157594913716134005320847433211558051382434922318180525763160332258213356850910045262580133552785709991!
 9449920026093820598249723195722736679050509621118789840464975020872576884862555706858586468657449685578649974987287532235354459831778733624112830304257033148661958513263140474861519180674829956418188274187696384447715084080663744930136914825050854254713521765328064809370544754278378076507189716532854665522907742465713057187415216059156958446109556368207439024234196088673358118106850771741135590263460798997588829784432186692465695143608253488606203958646589822511309780137603088334182303295547927442740534216817273688651057635001911816127712429632192832206758991752814855850649895390325677488104968096770640584664191136354043224271682192645845486175140148687759427034731309811758226216103198807215555957185144134804709975953097986103952552032641242020953923420838355454464453879514342713547386857024342367604858853667250122401899421143820145210945207651507251901846456652982616282125500930107838833406116720478878962544923784236808623674808962050365089318415014301965587181972808413312!
 0562458877426077056680875718744339818933863701284220297107869509081883
07689603531887513192431949906387717352903840400768818949281414436816811194859411930913855354736202149981678545737613388339986796614206364608532735754824733088622794909683782480117580386366960331646053580921329851136103534396663841037564196676568784359540372989709763901115648085762437828872747004320050755298820569532722099399805040474668932602132572042286983034798615560118157137637752591853538120873906073094009393345059372406296920303443307782532925380386217205192808932634203276828938851586599670720693094660172629264053230024076094718653044807094240108082198962180991113235181867711866246552648614142321656530242178470502054075569648602040493361247348893770085977919573567594907718754571792326991025032097725102047223410388894988740182274824621016842880462185946965930973049014229018516059104253001412709297650374527551160018321159908151288782288097588671173716180358384216771563454803790064657626017182706509807575900274631684315254553130289477724579978478403463850862524940443008565!
 1031201839320232587337036533727970962238201808104268491549706360725704001216440811387145134212930822893914786645569928460786809308140062093808972495318554737064226480836923486193341777865424955147428583915528061920947322422664698702909277075738850968932782340931742050205276698397166638581786408556730541485239547872680745303236481122281211649888532683945247925242557542605647157043227764014744562064319297504321193053981466222185618545348093178834221961317915676563369642084751453816318078636863213797234193027970292030021894962664818743183638638987948712722558301649893131305753073019030839126183400381053156601888486669063333048620899139777630013891163279464651980943068186876910447075932929177725998411844711881044884523391454232873358578149101828492668460933443496482246947457952412685380038733539601948819578679713438263312861446671652180813472128644821861758114196920105269934493599037462419557165956893844044656378716708263425790985352129441497728386294408283221462561491713159741!
 5743455784802803335006494579782360719548670583301564354979047577591558
548
87370173851766464651138838236898650971943697345114201282723171756253258787255493540216592084159610184952359303558229443977359598349042089988802220292557037023730416347295652347873510094338594407796500087975918557521006715860428238867909441633085888073017537191815154010372283541601896173341449267965554975053834928338556925404977776113310758486171411213313426389236542901396973931171163985558505381291111954589160132688959459271692182798803142043483834984781877231745560015666974933565910608398129460157715718640053402362227277933478731935228518449718547475154599913164735318758055983553263769495858186754945403740240937769093017463317759738843112476450454974401722946130234660272320647413190587711584751054513916405733593338301737758437932478120035031207990059131514768738245844135897833196991805695792771010186265169443689720341347463453344511650853498442649294697860831103494792080842394874022827040306873215135120516310702789835511906553424341118144073672283216842409650777588455706823!
 0097847157944728665232312058277007335487325374042828470137026954469317444036193105462633838260333053779609580013634421382377016923310194478742389752416331628307558144833504213307615372439955946063128614817223443561101210912065008372803855555800159007605944303064647516715087814128476630358874822962214164845894963080759171678247190297637851663841100239665263604672705356205139659857045711711546314434244186052231483063945679041152740353069144819242366673273087071946308048670631056814527790499447292279841882460598527121242857984566223797527040216464086821522860866539130605322725124160628135676519963034278326842405463418093381038607987557946771882390435990160075772812226384978225441674616054454785353572049184840197808632638033369648168356381686176853171332313888357940179655928832392929292847014970939564454270537146775757863033432023231255477460001450061380796952056007268560098290448074832826948679851283861205335516268634421414086739618607211324122026712988581185926805751949926137!
 4542130983100171299815654466774264051517345702643534865030389079549341
51335375519629117352623340726142590649049304339601829688806773219683299964515032856124355110953919172638509814541647730207850245537445573622905526272893656848723462429481108920595811284883553699841185350438137728879813054651547344327319976162763582198774594138511649768734935027645008389641344218930066411411756318199061229063730598248543558378475756525686713322580432423374433651914320500836143235706172211269466502692297757276978952597502674026211388484123386606911658236791691167381070391133043954315242957813537258789165339621311623572486804388778168517600328278026286305801345375600751795151636508108164553235716862276316929110505525475703649778847962396892253879208461524180841311619511458501504107998205101841301921051377171956300276585101546454951163090976285932839345292933267411782158815370453442666479714050192359988683415060382979783562807162188306306833555406355918421642574268916011911336872997580322217156378625423232506499780805342131585435003807787256040500715906507061133!
 6547920054292650493922230419496086159160380397302924099086867061811675597768924936524641077011667003222814261825303659480950527903093762718355918262817388018984311723139420423320243123658601402820827559129294602442910553584607522195859566330462428931214337167972621790254028495509120369514365761341294117399373837791605401448699559841070127541061426030804313952995936713028746869800795961127374410935015009197687446036240064903414752920353638094634861675469805291907293111252955044353157622354621695940795745263361353479934059557957529867670927957535230865305553392416525355493815196125168482480736173811428953895509409067060848726964472127191507353923225757588486171848429215837545570725379649682275846430268837009618647968928767888420328214388305547893639141911680344017384326598623514462192387965534382285643939649162367406533321183211589650077678856535027993821206558431049843243844444667276055635843927624206619806003778086631150733312603718768014516584995061192827601999080346185869!
 4055976664470974803859341212634785620043419378101472262890775574624689
69910096832656147712535761243345820546582486302887773727098982733577837590105114148327651500405083420466367973681229582259785112986326335246407121642624328883531624599490431203062824236198600479067801708112306468533978440786880397805685388566842407203860696389367142602794474720655427656850028975273313174984826318370233711740136236186902803448352185946154660069746595728687836957701318230661885574007155367398387829436205609105645287375873440730357575365563511965759934891954428116266464718947527200231529414035074358195479582382216551199877491173169383054048994587578463705935790375090067340146823677329916099752875853558470228648729869829560951789357310091921197726201154591974068902884872599060881839548616272152684373486048163616639419858298987705759482793915086024989076660883101110302299358951148254712346968931952352095394500817913930492469027037306923889204025792926831128973091836180284895666996501644988674329567751973924089955035124728815595147028992908638224504210839003872141!
 5371659671004348758567543442404055543797715380476498037946844310788573828608846931695690673215697023712396264520451956772075519629643426779418837236473896323414028360238710271847739673426798799211788547290427502614080504860135595850539662486937326315834482770225631704828770829477171297561545288417364390420271833067852951247619411420991340432762313236700715274830386062869402897431426592251235714604232413373080284518557239310517151948964828666175924661680700330170332293517096160925910998396548237905218358130565641418585846130282922527495973191213962299342102498737256230620890407098726126640690445205966646502910448994293885643664645734233581677152388664144067711068040439225554961704968963077437900770919681141687332337638612486154784250533449346824247731329322957618640897107020250441689248056388437458954920854063791356415002281192334295486596559424770763696441609581062039357685268057532493521932456298907362114454630271592516735466316084848858440196081733545122820259036337823791!
 4447278875737510772104792711153760245775828930495288554436770648034716
87617462770235977827547549836480015069061925350996281038994313749323506947631085570482524681811146039090002775962509705037859487903780713340969580399736555093295269578308662525830628314422914281552763289881110307303069763744100628913399340091568450044762373856621674669768498231948306527015740319325094390680024837745525324866913766154760880998720110405536656873559869288705976647389507605094756783147433410837269123860186616478191835129775086441817964801375841406026954070036819822562812834997880541397808582659025497211324165234599092552136752214780551646945752256594906839877733326767332470359532886173444390482124779910716248761130261109438700955954650466192876110933198808720233085006751520179919573853505804191284930834024623634417654731125160268852388519053399662886882076440667204373398514940913697700209469770495525835105303367440937178288150494894964429760471393274328117847674334892926950511833816481119161460419182809023745946841772459168282994624122151565878399696079882068804!
 1805877049356660632380080348182549972628420059533008385457671073112276800785420203467843949148170431931708914733886153729269909876778724138457963992701643367386716166289023319667304436868314078848541671245823096908325153384942870314448240613586091850152893886728418814555644723044526785952477106281782778869730884349804303725902302568783804401231330424975008988131895799916661419670655710432495084244768877357393051511676868444434564663932883529026632969302369132823988502488624634320921338491620755283841345940554233660790216630108143675772576063588781493767374870187813488467712361368304712712463884728451585541497559642098585445595106663919557400955283510996375453281514656102746391290870219617415464942559561868376934436998822673993020028276895472467580583993311095800414129696301463234882929425893004087678482320706772786050954935570654802511293570173665771022663960002976375979681488831367235678142928534539245571480125444138808217826912091126125199895341660121279807761138007054214!
 1158572736879367900576845691762056937346916062904005451938776685438399
349
43350279531242893962800222718152860282118218032681117515302605032898596805513561030750039085501029064670755930190846626108425007068355631592776244869119012703753857632427502788812170662832545210746454985789969511734718562221860521704549849576847447398737660536422149429157946998832818263307009194821018583737641137105419713742636214223186330272281038122479707388028921840644341612978231127573934697375650591383814256090056217973158150948853572844142454546344441185416632930505421061589713991402910018328307937145400059252140129494757992847930411030947169918824844064810751450113806546046022274504242529486909114047136450013568663813728293589625160607225861082601047566053846558394527729644499366620366870316160634979476212741204584219512129888335455847609874034760697143447479326391991285470674489412740357348576828355078416689340743043112717229196085714990199147049322069332224279143818317041030038641882826794349549506030447868021796139363390523186974429986443470396311043169293132552212!
 9701915308855017935523816509246020570936670411965268627620209065235644520582443478547095115612006311455029186493538438288603939053497003566579874942492041171843213789172462552999603423018997088987328705285698290489646089059604831196953338857877735601239223477402525261344562149913298078264514521541148140833187297468385750258774256469280623617852778368832456150500506497766162669360119809143394192899978660158560862514476234184745366447044721603967636406399103560678987661872261736791873628360156230258690967932656734268835664050936857421115803959278418925113922206248827538844838890075226156732452404440095924397257158400006983389383258492691973379032654954276070784149766601979572961535227278312385721878956478077837101486788588238800586486541224838301190350625043482585003556720825732954070299130279639534038545254823807567859652239708425365550232543349100888207148191731440949084123361509627421525622192835490384035594027247404789754025246988196245405761303883468089420365434544742859!
 6260454406127178633807690966933187640039962573754279714402694842656764
74027781133355070961068829043915246290615306940814425481473493835184046350306531371600054000015726128572947553848048332608593235072295234623173157623190859137142283581844846732759867589197513432067576398063566753176332089085415242306903960942014066156509948667571049139263977462551664582857936641711480078048256784418031794548317946768769338529244025071983809800506979659098994357687937251976569726914901454680710743935980921282810983866031023855828427564490362755425828811028238917204658771771267244627171553200875210595294850449848988697328654106668078495004019098963805808687048050923105736899064274061511077344808702917732851782953299727405198071707059220046060053223332828688881634526243770627676534731675562149439518115361633790408482834596065464270316389976064951804367834370480462892330476585816610930690152598568758358361577193454206845709206546275085196388154008878749527747945313555942436952387386737677994078249102362990485210703783457123643465621589216130877200173690260432167!
 6093934263103575892370810974507292517165947203492866159569427456131367875361681430864094357902650441184039048244895747388201126340738059223311466328668346106880700651401695363538006303751303394427701925462667917238526956878177557176115998674672804401591541293667639427621829621512834537770823910034764059289085773651661123341089987497299967142735297725722065068907289436602981893346922158413383460736711708466169108794964579625030450877738079125070622289722632953760373276629958570805456619907391356187337846926484824241295537817692047409597674433833837041043298945259251749705595108224269300139562241696211666890837875711782294248460978159314568349133638638553664078967452151390367905649344346132065072059050993863952349221846680609119903412943677813348230019833025047736298834162052250281831147562318758391517073036162981584756323411317915354887955333979336536030084892782073567001871112653906668576596976384937284717312634733312798134075153348319727897130603163347576013136498463991673!
 3862507389989711740134565226581508547272975087303831029496020634351522
92752635862610471455843367023399464792296263208167326723067642424251914680497358189029213380494192738468684823809118345700901786914499767622296696980044410911395971147942685748776106279614735059259439715172145813514095885024126206427240297098355467926072029882578168274464045601317496971400662020065975868696952063413143551737528045607675485640581952123995651005574614792331147928943127059882409679651052974704797467985412295353524735453319522423199275130996249885900158024094970345668909020252108009919336904923634066031167696391066229552242700447293038318180484648877814582028395273279981141612990891472793750984972694117707883537805555665013100043987108674784606243578871015835804569777242146870874795160978871326783278308708951334950765634608761744871656950473820897342253823298605335574593584211517188894994984679427700414683483236441179031825627097921486930389598653529419635377982236260623272064932330721177932508793840492597784976629554928262809989946508320203291140868127608091009!
 0406601317589330486607393713689322825613079773078619886165893745655897541648583482045290272842166087141486657194868062139748765923421966084997253469946670031085137040121349390218872733594951851251786297303444808782700534618659286075189916908949280730703389246360683681288047883692034920840272154826883044048763294880112780201999185827955448954016512196848318961177431032340682914974392152888863846182982389388406786180970268493508208955176344091786886479786415541751796735635672755452112185151513555642488691795916260555128858437458955187894200875054102176973443187938727157218010117373764461447701848986470416048400912336297353897690822783127083473885555158716420149816935475440073187207863653777016010751847003739068762901055837667825317489708718641657228618036156549283695785511068686727132167586552774450034933968460424034385864734754911238808340568181156569727551541259887966347668759074524505297303189441014821827096646738436204959856154171100247806191325730053814070228530071220090!
 9767979347129499956152485864430204405325520745522522671796415633119653
27624140852851013445104441671457982176672881007021540472302291993772762833296135777757527225867828209007029217635396832831159316255185873277228491033412578020640842763612892156185774781587771917911622571775986666299126856779700113935292230398744024920801220209915898483693071998849506237961723385094302646277652933440175262193842276667183261994927692692572196679011101153339841173472811165057754561569740762101184908684450651109357685368359947777787979152567203868817361966694359566827537967591690297822097405241596062927931812909498839771943347800634332957526316582974245456515098768174945838916854543259318819119336905976740657166717980715285180088228944826185559896071562502518607122074320472868521838329632480195102133172072431853191023219643148639183336232896456256271388036466635640053564007336159557383779127631070576131807288001433016664957540346118265052369242242288816921329976451716423829190323633326261986395629703920936137284499621584028994769947672733481435959781924414762670!
 4416250138801237586176988628274625165407271943270877002350816108612430745511170344619302586895961678658992086057687531458891758083892492860644944111432413082363009699019411825842560794704796129112508089458503792314850350899496729155289539958702512841590747837223263873793393989680354020585365310812505865964517959532515663620517048708184144885302923719580784747908460422918433917106554323349819123929154669691677950299842481672183080560718317373174711100713629383545621041789472383711974567782781846357627324447290949984264304317971556178077443591906817542913690198484834191844083007908514499237785749299600296074054307369922215832748239409650384002769746770444849995703015465887069725588585472289481708962101207461082592484256661928262706237707961999673027784320240963409650058941982646826454983567081050804250677581855943537611852465341126025981559655738967331496802728881658123997182022144252740865040055788137411000712594847896178534398238028382744966232482338643066416611835018257293!
 1520475992190927635397827054422654738608030911072253370234769055365653
359
87241062983502959352304539927596833162634892612951083593441991768823281777568496060257578096560216501912621708392095764277284947828155923209604643986961991251699272737574416470047059418475063328439395685584376648411224577621920448561424189492564093536535422414095615231747003728077735701367416921538352992941247254092827144207861538791721039504968765732948722348711169142660416875489822714155733757512668635783864021821401287371259602250179355521792738758802173644421402119324000885549159142358298345152581768465517268915688414891071242522097406522761916975491998102984315521236425336806277671122816191715202498097088560343560001217146909737571118686035298794757483937259751610187918216532591709486531960551339608543425035891263733617279074638417798661572164083816583232823189026566134525131270109547837279276740967920924911255215047049597683383575215265349904267147490538273047915021836981238222786206969443756253785115324751785801392935688360827966446536750929909337753239448349145747550!
 1905377914474699500731035975552228365230892164405262914409745451822527908122618378390630966152902634466371925147029581448003413510774931432892761476695385715099250527353044366158844563866803222107571235753102171599966550741346960186539594286474413258963007168388396328454752407911607161452090959719860551558449041801974779130312472053817611965210926272926092922562129504375939631598169407119265575466693530872046915013545763896046969419330740749070119696319200005542204806200539532985354028520182187154455199571819216736316537479471347570998778114248855278280451303357037499952069808765559469866484965598564727672345481472296716101504879119432310411650122749444847217398283292804766267282150518023217792651602993907289839909140740578104770572075759643563129838294563668264701678413525468830130338315012418788497267918989426914029463034298730411745346985739022128793327176306403925898906836875965722397726228306882645026839500467534046690414930951743529199798148207744100277487064436312522!
 5435066046668230816645193974751656135857243055695007261449371079618495
30141065502672384033907500515444301418719974081370081917852909697931671949176485968353177836844010678022327554995465813929433528498098894101142245888681121316786840666021323298723319199801408352666754056974137120075766689282592878068224695189361818241732671583420658132496807049043171394908845645204478955430843360153135827023082788617828057472780176428725426549708287546776892819247100653501595850302182754015819831831431473527025348510054610950565657383443906882974969572468991601067177746072570301722786588812475083184410165113273987032445297820906915198725426479227918768818463034015172800237590994888166595833261060013879461791394090524324927793660644696757531124261339543986966473696844766849607329364431945046369637607895581198939469456487683108749048501431358934467423608476308088645776579585023461812366606098237757261066501788031463737191189133634259450364947851914103850269097980506220928569930870607010129451284381834897223649405462109590473588048797776997463432204284245340804!
 8121097818392197609601893835971067406051217457191792831593876808295431063252860653712095881861768696643106930697457565573998754003562551876350831796257835952025040728994221033893925913133476432293817163845852542493769061899292998542672556852147939569326795630266666197758750572827508241215689774196121494682448537138987563160121489129310472408550773809987065724887375619291167728778185990917067279332294165151001976119970523528180119111348974037632372854660357106809912315150761672575907240546347084066584093801217259041663947492730976794405119593672419111473433459226587896110129445032181610358125133120752075187344386267692390428259634783946758687366788028257105946145112775779524842463616235287792806817851940686461567680735125901450602269341940276218768399967115319974868074503248391882931550249410862219174834403891850081883614320655512790209402508026293463610947339187840678596855157270952486365889319725641089650695606651914193628887511744216387615735411996116634651272568507938234!
 6193042095692657224883000116924634793980623553918376712625407200276082
60470949118615545178680285982784620890660414916334950064285963825075399518586914806851123382527084059281027800444290618658800356825292767135359553702188721062418001592491076611381165379380033025558814454943798305097817940560039480377423925881768076960991579604802983498842486195395792332821256268226203065630454415237773602417067946216628123364475734096255462658322820206210765346172364177563411581794478244687031099121198506037958956763261167081670089250635233972365771392482476127279294736724854205168446607965075501650483425407032664974061756925088845003417674898800149480075404883705168826744019152639162772787919429219920279108574040339566804613109602132928987102097183112535176280776676200248641526183491950915551090430260016549385356456384182712977724448964650077899218587714163080212572130948779737697969964898053929643939757960608422426605568946692085865057379215430645997773403546211281725672853294359618006535198362971342610078952910561575253117481483104226352604264409474766740!
 5646510178630928635952394527889009123085147478652170158156902872617560722921764744850546256780218960529188362649324372020701894500066150571266495169670140508104592130139405497734463404566656474124146781864346192527478274830953050089297873155905503880566084188329604628447657834322448883693802718548105147083825541240388636207809747804011257429978736111459421234023093060549168532924081028554053194144096141481333960273065057073360962340238197349392318837028926867104987591592362373883468673255491125781741295433825073108309901190066351508389496552897049655061647385146382900103471725680096266200660258022569827009630825619608148974429714643782200473567476740344592969283853242602269621167156215473434446706015228038401225241592412812997287531757252550448176939530450484437057570292277412351181006554022357605533973060786331039137418273819397295419021547045121409477852333571773032207970683747268082365189903305027734132480840754363313967046714080682843442380554803400261012346045937903523!
 1019778070349297636940286090043032182915329032652920772078030182028156
78942232375553941436824914925083263803154989206794635986208706412016828787805683881341255847388244626790829381466932996163621628490977745994291121416962918981624683340404697747141864060107853355503796254587841833511942933706981336446486529558364419004576916409963619304448979001851730143116824153193499701634479989963157838902798467644986822102613908234792020684864999275758018951368960599129902403090187642395254986552688147432696103366286587134393631855384160760155909771137207105715713211567407761969605530453218199677980827300029602392381212505525207281676674402796846217712494172350597132543576374328411899327291966164830140606457081172323141492472488479792802147918591519794902658968049379775125198351795852211866155951809911432146662211361870015513408794132945089641590963639744439685033481885583073640598630232973436590002084680813373080129363863783589420984900215364012744149808145842327998359091176687220147718354349108605635262197889130577021731964278032620717339750010446917425!
 5789294600700657479183151876625219022935833691262868373789586841836381015464327872799921546916246719378744032817544994384501694989825125494273620896146081092710859633815873670407746207712285977878664879325907251851996805718745094410261556075628586250667383263708587031596611218828134334081887731410983110541053573677005378721472172288462601030899149014519308057709491105450969817940901226328631518797006040817832583081320536179308132269440165392170993921418475111744583601603019294655228095037183996265344081108684253908443884579703286984920919212926179738987759011818802464211839875570679542562255822381789675816941707359700909077022853826845862106993818892073917380205665227090559291085782029760446738945847526314254828301600515808816854942229376317362877650982939686387228553812518247693759204348722024244832738216188978084470987343082201569965843653119291604770254671229031700131308201100333796028401438661672299570193444766960097046936632009579522299941037777911022244903959625026220!
 1338841242016680244425285283058054471401042489850195584512978115353244
148
22457190385234864900527835736942661475891661383268297003472898978303665437469533089201730392278544922984376064692697436515062245936806620757182346948963720063598621240350596814790307499670611129049663303246730471955612958187441341875232418841339252787101889990191588949299059701842062445901213028811357574005791767950394803618865656919783946114051110036780901215573004268739248877708782581317133526357267861155836279773123102018662433026822439472083986316070384870805359586641673581972758294878931095932096687425968438890488459310523595922021650847366234966493930919327942091005025463152163592633757568238358609811954670700613692034186830654145581619753268626100243623602471447056747315306605291073371491879763156904880543253351617543739598172976601645213134030637621849505180029998929834111942526872343327905745155039873053759553932764670380887742833216010219361666930028191471593406836244610204446101390118284426942853064131977539532614309895587396424048104542960532130593969452267777207!
 1620135217749831679837294318653744320321227630284964370320580721571111785515919457275650541016860240791518990997290233292424208290301044984936360494997917211901993643510164529807468897962885103025855181931791158471585315090639307963884069103769592325777903752125462831373962944813558452751464372852311710863051403851082385758504307735409804989428810127720447030746248218972647385938608840035987665359954561257699367715771698873500116049881276285355849659094879256797589045887558339821497652406651871562592702191404190058938566048954494773723521732606345603095567601825766654943118907053141217520268081744964914889068534293089538624105295358968200008967811895750059926512806654543204743048466038217580585381325343157254043829539919807779940377244593235847818057940637240028565990719543076124982732954103011631053552563140609551401741985548988465646542992913145668817085989417604585136475398829056853945203902525870463861688156123246853965403038361490292542487701950012845776823282995959953!
 1504864918799362157877941147998537301184143183090705552021500818862239
53589046048385587814712522635490096983573063238451279234458973048036326483874618463715769420724810951476913728397461570280313957917327493878527548735436430664585828047700726434190948023839706525735460232677698939634377460269458000395473362046253220500171854483376232677611737221605401803177231600172809586579680536703096860570632815198233296183938566289116909403522655398560790740607078025797820730401238871151656605770987153834302571455950785534302101419375560968603625321205777857819786362487073120226789812537805637157363220446800439440131860183317196410657963311954196152519202863057989898665878999673310027942312322152571948862753193009020972543862324361417530225580563952207883176383924848357729797964291180131154898528880293856492409313820195745196258499742505678886850740511663009345563503397343252411520187409674268691513239083703627383291211028488061789391851521560762229639423069015484308283395662113594769761662289130423205288730897159195409708991402598235898254173512993370530!
 0417263817887689125014701664159502353955858098350205745572715048485064274075636817240880639438425303189414282923918116686102025240100153298281472264851034352717474265063755014053856841006783362831534504246566546123350580262723790790302364272878052146150685772529181712987417828358842030220010522301878814759033452759370483630387709559063015444247656783104435215342886234377524603137101691686374796972531956403928051684704341396693335878016690899155015817811033220737981116953018557603061244040873656703054377168904490653765755842121093658013925475328644146469047243469058206078914184897976345674911809491198079028651205282509336567273343446723160162533756530430007946152323703390830862712081858796725333936591253831934193885812252970403464004440312861249276648267135616954053849629083785020386842765389777968373129912022727215885458165780153694605376736716122926043521191235381962335900282826992636066487619929863317921202175692174344900531467422283495113404202264635495407906955608011749!
 6486673046032894772625820864587804635698743174781203795920455990741458
60975746855171284454004604669580098974115720235358987239614780557214956944104982259783944768065443688085359920484304411179194292184580846179725308374337126383835600395799364960252127213201062266219619808288560901370053191157457775679744009860829514262942018923011956510312739453006555396732361889603230281934265479500418597503325454905321171409612582543656425401436967100438286473625551680139205776120172949966729482624263380578627613844987024357804991083715158217118271849438258629201676100066011607322112200181408926626363981136474783728369794288295202804061922559297596270849389995279604946634196682828935752578826543477104119874031091370008511237737761450474278776235040239631185822082829429227495308042406872957556768286221313546740668737540732114175382657883989031303557190471627637952822153486868110378345383276619273652306718658973755359454196904793075175342522259425378783307606031680689057152062878739767951665186220570838735491410223148734648635905299001800216019621659749539335!
 7646961427242073370832662912706814191158459919500655687419692591548651043024100487156504629633890872474234979584439578790164013317824455272453522558476099275652445411241031155207604462958047582294443537114806768334498129004471814502679054307355047995603567112818171756415057903743642667766472333985801209315024439227802144252283014370110111209998862291818145103508824968741694726740227414205534225301482752570108961818983359112499544641819082017480848933376108652729481725148601720299752421736557281785677807668781161067106286372108359436255773640325332071323371264390357851106020542596543259715995400685160406196087058868552710543110028624024319813374064455086469215943948090555474302729848202553235171974400434355001844744494149765813109947724355081948081012782664223284068123615954707396303666164907116405228285909283501741193140615770094814174665175404331401660592899949218560262517244224577924603378754182042442481317686764146262274146842215267909363223891849154062968960246823795475!
 8592802310583095788128777878873849632750432334064592630270842629397782
76052925613000547429727845243736794438838082127226740572588969608328633455671701320148123500672336129154339303432378106288026560484450743502782001420560555047617447900322872262479699633738135669435102551582510413773215084816883344980830867879131024875136795506082140014847855836161342145125046504031670039342030752106148567471264665054100041260879907146052087852427155898754394142026771674315234420434389122776299728640563658768475215953107612466194435269130366991974237852331108941981196933523926038141983407695551251936325313864800677850868605712480195063064367930911452748795351055861150155667357284378063879135235740833144866940225982369997770679325530316878854673410058837409667588720418651751250105029232760924480631205289909399154526743786722751816559502074556184460239678745514317404580521597537580696602453514564976328144494194602219569361957934385200711549039861715409753404591590542452091978829037321321424676713447808053667639047613999700139052039842083288042817362325756348726!
 5683084915819146133699305200935605186635679845201996598340465834386539094294956880567217023686550849219519341607832214696275440050626117716808057857006932982910396867014105857195567635396661278070632502767632263117028682342156304649595494266750938255116452080070662445070529805875183063995738998090479604991148969389382339000094259500799564628895779251449129771924968555691884603868568260811897021495239387599638797886053476269293356666963702984252098441531857148462662956888703275022988270197637041190052540849233221735129485194657898716295771090620219643234187510573974655134376823015484632754392946549451288013117106508585815507100660790929044167220952522397690866833719789760002541405999242437793427462587122810764420679279598394706027523725830576807765431363022263344238687114626707129298345745781732525432580829846643520443616606293456570804554727500091178599033179575920226510053388471997864534256566429309282839977015160564047560965451828629411902557441512899014958154932873003526!
 7885451330977645901294931073642390133432583399685370689914304188812192
336
11029648640926250487974969011559345503479169052868693261272894423407931793333252381167700406858715633348276063488546723548828765508122297574684929955854575410220563163213282230838497834917157643942174641489992084896784924671834744883673974923942843154571059698669701175543184657738070105713751368300060271245952886218238101931545422369839646271539628391550657512100621161805982955041735017585086454435157272445854951711924158503060161274124982363733722942062639828618264848967071202480621032592856219325244835043483191029626814862283901066488214067963248151469923729083926749690274066513085100679767526662237739788668637114966072590530108165488105260017950423895528474663931171512747700553719544715421655605520920096182002265772385537984141221513465694376880005016980437648461919623655725195587081491989751327970151474996682727032223426435454190500426978022981289461036348984875128647639866509460502282790505345894371171049324164006429898132000765394952773748789428582290940359154676036182!
 4232376956517968323047982875741354526616199600286940292538985181116817440916872778463903595034751192245891953283466716854379235424199987808794163537624013966506150651781126573797481101033393805320167342281502585246210886042292840306874780213898705751848421676631151770173968803423812731849407666254932577695835935212144835391721411526334040001304256034299804535509534823374951618306785102992929400626560137836012076719887915627298196853272866816741521647886054631556073783015648000630339095247941569327013284206004480244668950539642862604681488710145715527018122870985491874658866914518872279180283507306289459311208005911421573414606543449884012160708627015310242938510215764118148672858897790067299944216449624979017054624206441957733970368541635375701990536745796568386536457067717338730225643988229835145822457258334073179877419186200591148374802956232823819893500280738311736325660557241705085065151120250291949501030611921521288436759289615809772885806765083108590673402089476444566!
 1098266424436425866298354544653159395709785443838085919614949145489072
96351864814460094647856304353637298637411342734175516775603934823124156813357132272696648662065585944027155624049835238406876970793024526240604010162807720638120153919893444955841185927951972304757318723941888678603523267405451305151181949384859389964975405122243912939928439572814644613511376464844051917909497063086677407219684805552850664977910324529621206939951391527831875431814219762199205770701866248379339606405880761806220154656294431900153993876766214950788404647000907684451670407873356985653855489755236596255029250580556630661878651577311212965162733760836472644423993567382532278239177190046286833747232528898986242143969418646574579740724748936114548384978794345898683300242017460812060476821142980372847727441229844780720432199237398812806010414656556869573958199225865865799357174248152344850442429524999146048620498059655897744780431534960648260960093707072618537109682070680441629854203491761077537458068708372075059401886369232657770307668081874723378783532435171707227!
 2547797718946875619418140727056128966036584879135292930855386589414980232879333733340020935696595564580027158009102804541981317796758116324143249690110121890875202747674295609875749471327882823769312192871163332512732194432856213153111995883073459070751119616761888983966250003736600723505212858696331707454618473104860194373612594902526032370377314658610983511717170906140024168446031551312858227525118345959291247776403450508612706261035030855128909219167041112944320527179789074468260756692750216649698573851563274086197580750848141058819078216490784213589832773295370275739889363695334173552023333174432823461897623556268710739452292953746672882120473399603067837269120674068241779029130208013585731483072181994537630894975009039145362244019279341586983734837593876062907611963316544184586669798275684938784274551879525164933155895563814184566505754668620137013861619698448621742958512571810169821464734173540763884833724672315821796106650994787919705067814320179323347674774642345649!
 0856382620000698451955663082089738572486587368528010718179541743957468
63930787270338164175404676162698591024224201500792360798696899284936805882810710489385830197464625094897802417095047812901006850969446592723552594747656155770182830899300256664695313210143006489586097659552410484678518576983517019236431270985177693788713558162024556678439651578024992250959720362985916725469602749732884068983731582760347571857036452774160623660379510234539538572101760546795204019269059611106188180583063718102697476036761414968873868609850849841715813371523601819784505514959598536177878101019125479441664265272954670652409428383408993566555929471283845030652456498524560111216180442360889592965247344741414070913223704415167177186900379062601217694066845980191047206557368827693179784177073341430051247574069506301069868024558911305174899661987574987731656800157711379437908724165535283640506342460881070881926692399481637695560850706950952703653425479989346340166994332862903944248440064614919127397363700508335280419985499804283400565025274649727180548159761100634934!
 5143628600044975273762509706857055176277030784304655731189145327439444397905269157364421927921932032834244681732870415363609146267777279386200575988269243619585862916411013837499086431604503028196452274125916528082699930559356050688126805502403175077202712263834085623882735593126498827720449217162029409492416283915354607954141772316466505904595136577744089069498062978064732803268122483117074700695092494373293737464940414212317983972698196799475863577868042130073475856672294036483341639252175944650586131693178837557123847364894307507241993891234403691620164316045630005887068523716072728035880325853172886043892627885184424748998042337164282111897285087168472313596940359571897944806618066653505087107576213955221830995249985372415568046330604022104751020899069875019965662024335726698716431838163814863946942433446844914331739037980609939487105466644772771862167079403500461577794772474033283694768780273261258444293775672267799826981837139717150723035367495547571407595442224466057!
 1722529141603975112403346196100659902358228905574346020186401722939498
33791295042955167720613626984466688889573342009163174131576752687784870149072088045638846390517863513887045052092259821845267217077674203772674350429923986632781866486547647451560417955150223792543767810544092605889643151467152780609516510135900730398151501813382210190319178967348996491649148334301864798713442053896123365510287760506024793636361572559325128970828094164528383257716939268252148177397217764684642840042960735435588166159861568280626663654477138659743622123851917641630108321524684999704505283774202009116017035332526291919879677288172759262541666137193966541644568196276428038319831119311915239743912073622528979391866371905293176945917745764227614851186043695878847847882486947731619780545345467517736108566932792082692447794417266959049121479784693122831166910737349013155385333356183639079830034813459027833847608377084483967749330311779222073180750660405700406961536153085575898752646928050402934887912749835403007467403651787726682715976242644802617005519934970367392!
 7351271829471251400826878676828853415825176992785781209787940720284816905462743985167346615048287102721737662466139443256448410037780539567101885645025168316947915318308754382779877142344024290649979244776766849025265999115861159453529768913160489489935279847031911540415996015682142622749135278297430471442176426410758213784938369289261679897773686413254596585152529544650016920630473495342318438821264968425086816663705829070144236998002093402009357946550541764553827511590568241708226745924726959151027771146404236993916114019371934715289042346467580255601686975916303371468934892062259512583961850039955293619173035969899955900470072702764640767345139424698304563714889712010129085569186729141085544054511901518246063770025727143618832587334385002575407034216620536385552042203920082404250429903672521462819703676859615543296623893436798707825915701734042820154921920927461445532537854372465023011969512027256479743562331388749037864041117863767823686895757218396024688399870088443627!
 8895889276634542538925413264599491492942350190673098370463492052819996
515
53000765641257754019917767117217816717165929688965238850121690068145233234326164760897660503026005322462422675665583741643287843928843690615403813532038944879912765226036105571810130964516517344084515061933664425851537164232794431536246731019289223769497462175987379391518898987907347198056994219923575258941282719506046969705400353739598159299887885576496912707905560390328119718272746128342081104316256352539180230042372950398158412750813076865473845369934946986675146835853169560903405074381200448435328097593032810334373142059723740910086247168702996692366862064667032671071094867341154390306872860914838637843281549187866607091466134642640939797854303842860213965319334092499056145826917704107379699099254322102798887211369759083549040721431230257154690722200473982447919218702037845517868112223891912696139930458563558906025732264908396344791384015638274360741254338272985641874647427744642781380804508742585611358351670378142378879252647098364321955799309936779948622808502328775604!
 9148801690906455395573820628398640476914058447983542845659745511222845400556994381944900579963142509443263863559168853561320732569499841601380397447643691968688270000963884947679847402828685044724371938539811810542465131839461308862144452779263038011746551132681249038891031547770985427033406416145609796353220228122786539044686557176812554852705831469291836099923307632249857845057698665353623773802083837809778785577438217791586324650701861811358689307410887961891428156926546648976395648089154952393040397684989984016564322012286369176727476208542418405830612547526962185364124041802284745739970509288154149563428087578566045110779676759008215087943975898907876323819860924734718209545984505269870925653981464513060818877192605020574292400167498713360450135911827059764945003607691562398565380456612546378302359732440636386987581434483166994989079987690861790294528794332188160401255645171897221170420999497724876713187365017696644683134304813222850537460720511959412776772309268161287!
 0354460902387375545309866714497068885592202866571352891363869503845241
13365401433408091543574345992988593587387512193708143083638084489985354894480063156464402965625264462507854379002433368585357443439816193420143341482762858460784131627509330745349783402949815440966030330165147271878635922765138286495449263648666072848159187232427103273588683666125464221668442251106403056134560434392824601526039345985999426545865841010157147859009005209115007174344486530531107473506572171152902161405174727767248088590953928256002603810624140878276263581904484288872901873731909652993899405461723137330746114317067602129901082792164165131987259227654040040008262151110373648820890227119605386689811446367201142408027304630113727359671909110527175899467419856600844382081290073149260162307323300519859617807444511961352068714600025455349663565139137034498925651647954326257962252879602275513259405236736197987153944804470075745838647676228777731207873818779158177738991823917961047352751349922249368660683720954922622535898219676662209334102443607254611902472387105895557!
 1942022019672255602524234237145643613597707446571882237878831509986660790404347072995847890195615735621612352028470883307593457779690727508892728934489733027720451226755932240142391830621717591553399258376716600023104736695209864436549267985827257019721708766156152433644940786186487366680349557364880990898882600730410188768304667317547275369257549856616029731183940716447696291591140232125475275204581617294254343671386928818094137782607987754676672408904007097977546609603994364628912144250081496378559748988821729781272172918607734052446512427803736102465078756379631389662826917548164222344874681543079978597985318272981438987732785486196701398199858141197255278692178806896540561480264253226411671469579517260578273006912837673885552458593919718894486351497741066389181041218100842876348385756688783414777138159868822034962978771459557836790488820981274579618801475399811565081731479943379140778886877234973834321147592278647752701575426026476566072865584597003460909992920337933183!
 9282384692883573783425998690310062584065748902940183370019355998341680
35909768430198732360118133830627226242548586807645074858206184730287130629221150335759943530816786474809842417091473478619971468206859870864383906800757997901296405629444783490384052111101032029759728343275003023659095147671002976632971163463610604574277909790313155676590142693616342855368545229464279103609616689638167426345253363843212701360038866768829491854476803256479522388246008895682251577524179967223173552831890327517848645536074099885524223010474185095782517132124176075969227473202584610409612686874559113569802397551083873990731127759593908126238630827700215966934926147205102592180758898968302074831688606600568777305396624883676685228847775179665303861893970451266677842692827255527212920954702566126781930342726604582427813684071676025965807796461169588888762335835219074249458004187589751315530283009022854180069994434746473380961417242608727164761275529274535829396390594101240945867830205014769358914874841374295626411873003907255850744796241252871582399789937046955932!
 8052011256651959366802317524893372279195817827650584527959614051013211262281610239044452180374663717361840448014757674458471815031098407096687641059258398371603247680584245091835814342821816786542014001998803114440753271701306971254160524774810682784923170137626441444784034968984793490099643893259261835037179789358524434854481145586355307350438360449727519719155207874595991605327364493126902459831374562723417570769944322417290449736789861198967593444937434273282416011126122485121060106546452863426183644720023390161622926695296369086166998590434044222909460164903018317075646796055100036113263338657279242461072723289377261482184910088925222212017009179949081581591028990710879378488676280110730771114790572093860013873851415967735782322108828641310578739491168482445341317894807899172613498499079783482846612578817685466492903295798474666131826053004131884301706033778332577710200036574529175022712731114680070013520493596258611708548189800146241084730217986611187524506878560910367!
 7590101679206612001808261097113977717795409697182106905401851030135416
34406894814238020817535145058729617029304207604828348155822117501881811596951898421423208970660771968213525055267441515838999041814677235854526343543732129032189189196031901830430735052043517956015154112611937841724187853233700691280797567742645553594765857802663978768452086968133703449572550797612960090793214887443585158794795631921658872939160327484974208269804693011333110291258783102680416830990813391716747400322867194468964907205018409795654366738599332693856324508289358168022564171400256845132583927044451761868650131340042268231830934449396166948382272996476399399604237089984168143284507419109800185705306171885235283191686055671985263922357601424526954270766975496452628576588501931950729196947133731302331188956404837528987837712026283805248893637388758163087112734600920783099251526172087766119931630826542817570191507355261276424931251223308336356497425890264741810566084856536870343621465066598712290385515942376817748076487031241335614732776210888896281529016781798279626!
 9208323890015507719841833950697268113967439924343150098326874894771820831295539673664333813277962635458180692930980588301697891930519809016833856990887220415984274682557344981572432819700883843134874638908891517504542731648209161393789553146998306825623771398048690706561838745863027529057554419608144398900568672539598604968534712845467861524508275136010998133879409144835034944172678780665277485356468618608827722128842486673510227048777543626283730466166696689060930875298494774412811033816241577800895897801381258421115915332068932698675369041298560103389632728397728410997617046513812262758579175607786022139060110421191990189234155707232414948113137532831281126516492883399926918013596711551417482465426770275248100779336804003086742327166395079009255842770766886763493731067349801995978636566569909120285009529252209091773058133686291781448257040170078255233375675807782398545729875000858620921947681366069438416460797521000040364884854930904765452612873033188653893721072365816100!
 0815006992436856411929982092194113074112009748442371699709223896461042
161
86725344673807687802052597368141873915005114598902438810861446802276151587201944293278105772082608151830291653493426681381697219029781875469316722762447136410716758048032729286559349845721096750485118720967678898686563270343359489037192982353543475149249540353017415040351517584269081567026443754759430277446603606137434449971258404786235932956976698132167516217354623627875285922093043170139771630552508847159688255108718136404419851253876211722381515077784680516442125830748610693243886498048208012406929643866690176070844444038022641028383571892823585505893692695375957873610202068632219611922155666156659432844336715945563941875129587781053711425965748336418070608917156749368524750994486136171421234563237921270166195779268292003225344453048550107247103142410136218972697229187822708473702293254368046593119184075412590348579000358739958939804767774095150470119215206502746839024465953685402860147664570523916084903064071812916626769290021787987888138836237944429720414605920965523815!
 8326750892710945988933964488453134971037129646720193831658353927800484883537811650728198129091193221534514742216557159507947481174657773601700904342828657675872869404123677297515740123571970420537212617599069377128267112652291856701336822739277318748279179036106950751461287631232374624421252679035238035238102046290764315088988483769112808015838771267449474562807334912421173061482050335200996580041233195201656694560389552713894451130446491229555390983473481205602607940923158980754781320754537612691506245288745759540429989472019905696087557601577449747095468044170734217462411611871919385451629599940259374511817663566834981726644119220533109700500390755620894087867667426963814700712258079230886615594378399170724488865990354834324077966984150427861700038733143370176614539482830173079117658459250524087891880602726060160691558412128909216060811964152967809139101858767478214731855416388392851133940885582298889112629452680862285753408833162634933766865232946885915863181712736460425!
 3874482333116459392920433096095789650649599341949406081061716214535209
30637208034474461984744208952859284264480737884426744956078110940380801344094433603848309095547982593175259588857054532809207184488807650704997550204030282320693354541604446952318632019890229959015725797211402472661861348205477728973449676143875963154848406011745136478005058449030319970865304612106420467460208395085386297967949787282546907974820046331890984069918434236599057432366147779975738884883723965492494003452994372862980395031363147200957887068754806997878918436040671146951117108787106954129227759511439837923605344581255243709647670306898502016980066224167442471691332414036755557873537141577528467208513719900566952824667605719318677873942654696251549791149351367196343184928152349242748996254054669001620747732860134074366671081076871226729477469413295150701132883656426993018279169568336742763098027661343402600191995496334341738898429584389352723644957829336129275393740322700907928442030082185949577643299842190914726214180954639118192788866808127525039870889207637229778!
 7835737817817736275912088956975510621335439885246408472621562032390539620929729385297282348236125315464582370171629189170918910447158878007627617144579256181507287973172760984064415218416712687629953317111861308613278615238742085387363109866029536656978107638035655933693713732902306176642806750820057248079316241624078906783127479446753462749394867852621146011569142292504253596751890432594873273523651528090091332526961240655180863680705230192879221142887277261275701516831404032765545467299437913428947897939211931843554574780961967593718618559750846628338980015735599066740387670768235697095257533199361013790732627483812233666254217216621203309307337193677157638756527280615411590086121462808348503426416645907400943105504015038426225644818346493230309171560591161435069022270129348785809728679517325118138399493462440797836017098142834982258970380820432155729891067424470353686648874156322128324493983630249138001445405476338036006779000785513065057131138450314989433910748442834334!
 8062560022768643106101960666109311576312560403238910305930003597318664
81958457096527009469931986284259908927106326162965532483582072684476344757634297372038609629604059633953287720726665110258701052675434968673175086855058582157361001131810739505660372966660083281719449783640201813966574228976167475199398724846291558932554586342848397723772517755190414719005295458239629935605511616062131290537070396058448897964295964158069705285795820811143359212800258235792899931507523222402592909125065773339970179618396206947074457428481087583842533273381264685751317582716023327352619639239036649402811539282313784551675532108784136616466390016532335862095697873784240340629497987924351262049562132902218180505210098868688490574270856992340795950025277040047332431275670631889058839020742036165543385293726385728794607700849073155467134471759434631639989212059789969949918332004050944116853529975852302653926716671728942844418061374491725595385625778832072812571434366503502671577167988685190886368073425023375940742199633610640934246607647237663678536146603436634196!
 5884828740983044427237695553760864395896067098682637850047042718195622383294226202433265323138505402045490280251183814814200683460365994254701328419705567530608334805475481367848507303999351069884201049132938051844989022707805320542525125900771895306289594730106083600162098447339898827995417849906178539393149998083892674769065862873846481224865311665499256833402613943614271825483893984900180830747083822744343205038572478633926178553767423992765075039359384846638579519636238581351977978498773448648498893898162828912030603056191663842096115522121011545710233303590911281151608110576346067750333752919486671539146137931530993569501960483880637403430310581109174668628525906399393721944697856083683174721094655995927747881028968990352710630118701058999005171866422601480948452452699927804295492402142429485051303798542257705408683957801740941181068103555518233923401119081997974442751075069555093774229830086888827387027475475283232174726599029507101557572500496065021626825961694796575!
 7486344574729770357436963588070725723066119444075180641318329689394066
63698165662514507320239963886401378453359888462517805429114458168047370263271684446231747807698265716338495741073793676855442473402237714385773850134486278123271376738842378102940109606748665100967775877713360119336969994278014319627367772780421825556933153890118952136923417776606142161900804180241751510470603223634596933008698805877440643494150348289089985843805839041717137030660632603886457538541168576582827960626281125251989134413657527144596742638381621905280644717405998726029465081643731402680918121673285314436402925701708075630571070533446099327429218590645923086857730681925493473962629787040655980015105277640425187359413395702676466676984464942483820796530766620181205415160936362805574870108132485277546558446721121199441378867909256530967521379810094367740440316208237593900965028039978088329263718676261877125388948997638043457902985714855906847193206541708121002491370695971277292215690034937816006862027255285058272272103988577373496170294700975839604227721976198471490!
 5652182593171895712054297696339795599326021453629662045225983338024051497498832401004879937770543051213653447950358059892159360551420110909315659375898706906678166325020607748126138479406304330932461493446007434960262528410926810031038849565462848511924450021985210632268265113488519976531461144822617353531321121662807630886431653974868487946406966027377809755958550679553818834440252561490182521296208353722346109716792154861345652735440125722618571496824161911810174928519108970717926818809872200487632391227820134681753043077495120764328944155094053520950784115860089124340911221745778180405851062938803729991014461136817706147168048711291215689308715485415907047163054460880935234975993027857737966601920111719903134890886118617275976358511123314981823446329847668102196987929181247551875622523753785528316668072040916225486517371878735925548078525249351100955050627071967400532056565433485149579741569883224477854869373548419068762002233394640579662870189430630630153541578560569019!
 3654330915319700505708555921751483761246612801340176708128113861862622
930
39928123286527743457698198923084018411138444384144536494730166936583002230091602365269152838028896931886818873644760805916058100947983976004049739429454539025700295470151821254639284485402087345706100031535002759532354624759919401162171450806019536740693890714451208082698926250942010069707858729354157771764758005679520853653513252060718263528849514782001895316251800633581610151399326025677377616681516090942783447246861381594642303257693457384034290706004889757445037210420431357371601992642536595185482624268739849757992639866416282223480905829425268428659275414009590349387226279898413851889761273684108770429721890740165093125120832302785454009253399338248962840641271436434491169773300299565022724356583395850457783490487071547992908405791754493546471657229771030363591960741379475559569149674083070757994118565239990509987001033913079037801767270068352754843983175147946313592448474366073180689839365953562883197810878233860488441157291300023444281283936144105216027609806426648259!
 5697392475132236401659871621412718196993170511474360081463026048255243114516676340286742122872219175112168582407590497713354349749178922815048168379176633595785160325950110522078677955347933467429355087776074522200692574896043471167361138237872998428936923047808443415760617677797446004042634497465248502756720527608359615878105278130397432066044040007518517999671754088611516481563226233694159287984531371989684763477414932072470578760548538866066446337086806780418787979540980008804314821393172230417819905061957789648943102550038671221155169092532827450827542088386471725360518969400438361101286061121373652091502398786392623956883000823306776864759245447943951372280527782405425511805645876815227952058575577328254920445326897409451822542290359211683516254817330018923738474985801744957716576995993772907043829761506154898352177813548718858111252634288409538522280502457155851638504936696076366792232091971873126390180087905034464874660767956954872700355585698844253144066274422673422!
 9294987651240560781474836601941467458866860358093963611363134716622006
87547378362599739166253469975171473635620103377778969973463446989721046919863072023222927190711755255658710664117140597037264067310014109618006736425146752677769245633906051968349052086045021840715689816357940791663858840238107520806394581766819661771115660750206301076871728781268062154828185258656607119352951694799297064345872278109921699663539710154738974975160005509145694224292723087946019513829021777063381426494235129847049282834788397335044499574907179813408567951465606234216000817624795942263818718953245324912333438749162216189284177235636415258605736703400063264242563292737174969986066620664766965599776756595192289406560428774156955744027317340115227283178920190772316679424418896225286293204821066760890153611200903546122351780362259097202342272872876554142898179466914432757940404558906494420230186968690695718283938458747178326556604138280663118521951006291831927356449365605994956491412729894660232094493001392902654276430842288053718113468248444407464004168669065131495!
 0997541333228982347004682133226330332156424266123221099078792251438256118299312251843289936940855406868915136874721060649344433689854687517003592461454286848163380537247694469685863050312641553899877849712812222471886104420317317951686854107489960884987487906935429941616263603605161387475232651483971016433973677063384371106491995861056026393269073998977435510002151079922259704140500994123118879062983628222766186316815801224484116227200139978512175167041304437420747006503428200538505337278785143952746207743604212853475600097277826146506157969710145586386081267127043835692912374043149808978217166340610460390811421724215946147246397625329774683759416929221415408096804753211010957634904959352236120970289355097576182302208884830264407129216478172816384453152076776746243938692059711639196055755948789778833416062952463948963739193848563597954428793754864722731215906583031051644575525807693899433121814842726161572518979405300488909423668898698895726322859686984755272875151243833247!
 5311273440355229803710512597949482444425671041317849639294320282659989
69536284617034110578479462027683377664602451156133123390629857411577178117629170508381017510547382750378028235475855103224956375580854293294742341984182223903180602299924968531552621230432468407935530406730958581987733256829608689609701264937568599865498050845423503317240609403568168958719982098170597630608594154065167155862238136061591953811824031211752350676083880092351249155650304805935340164415083340795796497697135320612185591340685555198392888699283953620757519630794443780526049776366433755617940348233985485679486854583006350500460761767770807238387486076084977264450788296551534706293835092545387004940213623004139619007442439163663941090581224129007208054600264222280277080241545646150388793414004491357926943636003819350759199829379588786573516975898467039177861879214648646725537329336265034857033218648917790635776342592159586375006811598928918595949651124787558074236394178852425155193041563742773750453364116540032048063477520246499713859728539708914132997408932848568438!
 1436934035373020261641259458223001869864411978588940851749743058734751461074737556561921577398487446705520602083719289090421234269062880808444717682634304487164326247269867618434493991580446372725616450468278734860116710013532417323371907013029862883251806437312847928851278135189831575963790718217994452192343493731839918653232776656106572968842047365211890589817242567207810693397438433100109968530132116796026568017700958055060694979277329008768761019578693408453282687946916232036936114218013621412061730006442548901571500868288513643796601473074765500505923219606826255921131168045811649219127519100341716395328889579331940793997048577812704231512954279249207381448063222298994188767311595188173444913910408329497027448897722592209717770611396510954402218342797088418389086751054348055767423587691747751876756652828588799210083087625799084984922228768364620746356707576168593687731781474040208893017326173759347382785973640053661133380294958695469755251717048364096214897300688206657!
 8712315211477745888938508150568712880190928400732629929951166742755792
21518115382503067155691217819053623066746659102482527242746408068162354279891703069861573046275155020147310035564551944398183153285096996744827987084475738546041155909388581104956649664079018614665616218629604358133824354869710900216135518382837249216666292011351682738990959842649205795528769287957513178992059187042535269948913479153648646025500103290834637712036700252232656159503094620397506829791564497804531185255347063225702471486711814479378959980670312831176614318210794472746376670379981646805758787583583904236608008442081739672499645624628671522275482241565048594601730989064526439231192691310116101752171293302629076076536104697498864557508788337548896447292892608304069204564902849954572270621646560004989662418806540398565601298093916495121598570609566500586914742420851595015771850472614725276379797023659921275235777069061763509989794240733662909860820945878239044689174700469736747853211811677890657983855214243073731881110093676559147901430488555702207671833993098614058!
 7301342840144530878284302221355373915379540910580321111273849486495500839668102743198915701633183759190572596318967635079087005426577376744929350447882167211539549523255818741186247345400963690694357076201997898693019578961743768664078114823282922599062736678244015167679860883243930372244697050970396761977882141317215189203804520736243853006273944233290580259772426117166383217253450472612063660386819854033242221508737323530561439682847864070048924373157963031244600649523587731205448462393581085614094537309680723962345100135462893223628322295442386578054975142531118401075920057169975522760823730746639141774563025746002028593965984312384148989147180240076820354484880083047379999118575638892801107747414278385070223012940538674812635984918984958933588937965520839829931822747427213210920545501460057681019777399328829125307678530032508616781022098375841319158545548653504105698405588786197755933506003568905255331188323166362560649146130960405622059405515071418354588870020225904169!
 6983407203366101637650785147563722274751111322089666137617770327462312
295
31126306067598702337477670932347213301381264028605206068238613120524205452161227136459240679138905828153263919453893328531084032649289043055274217673611032967668828351508756347419191018364457073106605522356924875218670838468152684499356572466447822279683790264612157293452506273088812343817395707943322895759948332994964432370101831387883840802233671888869634799636172468517574324871823895536154794178399365885980472028103799514904211052766649519968315530805233692953941684534117230519345109155048585283092382425748953246530993971138713962281832264629138475710466102186746017942141612329749317660772558180820882991454963674654425656449359026082253931079310661588556941753018806587166292963561788400090441836907649758515563682595075025913906155831847355591919436821321463576286774026588554277293568429180991818242217696565304024488675827838270320640587700735968806036032908744556547096731888753410973889835795979277745137293306310251619121589397155288981494628735782658392754018994590164380!
 3665573306284566354734078262994421744122424667304966002318323647145466706901376684350838628353056858740893342474026831373540178127279896398207411844981024699951825553890786594111977269745797913686712438497111300732985413645410933384451937756653755330245020678454590113132795475412105336421716830668441576800395776527782418519679483458550002708293735784452100365189842379212016173327625128170242505620105728430447006780057687021236710833946209056159376219739761370719495573312305628995857259927283591567835615965926330192337527316091768387985208904171673580616290033413391842701376356538522655398323812882128725264166122593584223208154242879093561208865444369279070545064008099984400084240677930309645694981891437930494151137310671579012092350073378563612318346487687496008648940602105868403415102920469386819495265850467038626629987940391775074217096413160690809612146609210252887823159692770055924008374346927857461506495831462811787746866780946528997156129077206886954246722630908587109!
 1135264858347734643511345580384571945735614367867054699795564662965016
56794543752467038560263233140599819027833548825142247266428205111110337245622923670066069583912485607335037768436416829608362637494855683253734027356662458572847066099229078590134346362477792940462102576587536524136673812740008375176265774197999101446213929804487101229863838316677112099257697650822659433988912800875135126768087410610476404318675341853389697352059346328227120571407274620657823280946656521858950638080412970787564003968701908973946012914467792637616276512945017802883491463527652267335196334785903646103016561234828205787351032973794603354512888889942759333078675175575392201700010649942430525968050493130897363019236994178828741742933003057669273891613139144198839518116667284870475447389770090135797884695904177252818649093998134192741813858077383560641610533778030299247911823531111305992327574032096564693128461719252920825779931170959218364309645201701789950895399328746048736429650984746166826408591664723356043326486138666565306882622009057219310475953420099136902!
 0083201546951347942855489801486460029317593324211317650401963144838337959718442823718724057774988073770369468664385767133485590259290657958736441591600497872374522184873146813126633225552703830192469069734589477306898774234333072786592865393111864540998726533341152422593606440158771497402734181347615277294550487885350429359042687379419462747011848626421674031224240767950722379729534943840444726627872112331388303893568273080173212371829091745556697490622820954724290197531844198568424209922441865783396526200583274680202110964637497366360805346645691343344245035152810233359145112813515799347499408476517574175779360246388203843130035992817723287627234084651182888229082431996118707443361761331942263177424299153335738962998279131162820890555596186944043817563786149258619623321204783970345302018658090556187841748498556599276283936229202672532403401962238047833806903318826826714313465266326987565162740950996161297409397980850544764337394322752513303362794341113079398061958290559093!
 4983397701241533475274630024447350704372692245357997717148884633354899
14097868585188453182275120594063910813117687716298710442433905731618012772549917327117582433770358231044615488063572890859789875848714257555398511283743859281650044484154914826635263229097747406599314731927888910400318415760945272140876222438757326586105627792061841092192130570096335865704948089214339894416790236823521486414319224444160425253876738812624692906371736822574749932474343215833431575259453857114066897516158925212044432110518765158205448803708582320040160358445373222134288825972902888217992731170430201706662366362672366669059305454664475318180221680354990091660647593694539407192508056597988195241871866759784892194148437726408370384581073670065288447295152878945757509965094521180640694970072909828923638739662625118995660185513087447377268253332144939335326725159564460216747728288808820721911589169261967485034572621627717319110788729692237238649541412116077976045340747715694829765714409194674028131636947441839626379347013515096747699384322842891608737093608285506365!
 7069322998216152175378920629095845855767014638672646944004205943816434820868924639834865361723530366111068429860039908297389185293630283674194518229961888181199631506440846120015885430606085954327145027877308643222049904861734013750195393339092907339072964909879853676550520662791189704921419791629376171574418951905198685116784769793682583654808216745566320757425992836557318955084163692581649662067819096057235792916347405225368121918328401347644803507675415370503047575287355592424407783028392747727357754999125204578247896690244635958385112968322163185753979538379759829828070160456452892575168366191911398804485670534023969121147207628467048163941601214112014794447548452518823428438664831627985295231109726627815677172552387923006709344101697675224690100360504689871969388834896923614361665370811700615365093864745636788490573706633225118140385385367169260013353366862702774964991606558523558219874485138089864288472692156819206838479507795755362164633804281726726076750236224155073!
 5393735541788732114013358488796373428845202906439388747411356756397213
41479432182907397062494560506329636887811199518245513059353637535899098846308395559785711258739882635658259642709644068759667335833525056141039613702086220451685783418077505297116282716870394409964486982596468415776866308223091380318676685767819615693335458867076273316028174455451584098147321538427060275572995912833773459805900393840476403594462763954133890532478369237445632850746597499097765365637503820272923981358281399867165303966070117310822781980321311398134070713956683021744796404893245663784771522449590950297877752657140718304769879237596810483795447182236689873743340742640000084735615226071320997667622997554027437379667946925869732480435322073139399080885616510787976796600030464284820049388039802015853314191263640052124496226553316241128041846228757992183961088862425629078024031721206519960392649456775680682244632809955654146168396295360277574527766676192473036810690937201517189494734614991318968775172826346562802616433363608028515738955954793211185432698021053974493!
 3180195072377075611297037278535728686480573567899785992018424952280992819259499784307290355141938519365910074449460384914292435208673787184095025616803869622303634053171031158710243289762121742327381357051188805628053272858048672053265106107118086389382278609536528559107413668285938388644618640951269493735556733183136343481120024433638209693573925127569795673624920267024417234100530907711534104144252674002358245345179820469592913802074571298649751076034204250096808702570664535791366923706731803000858257721226998218502130929129177787390702129503294547184807695112723298307514924552950099791431721317636063619183336727621356463069211217414249127109126666197895533771523317783657880976506447233951660186633414245678299132910304648964362681838977260242817401136793665212709964427617926033212504265039903387192290140112880108541759972462586874089488824230556202319634688352206708181137094236409570350319186981568223154461668933234137849022886408628509835278588127618577553773563178176519!
 8304881269728934754809922125934288994504441520564767527895251198173441
272
91527812367481893101357837840894532086804051816639763224759845550395744543143213534884958829715882919375787087339731775733676303069123949221261282636716318704050356664899611242968562126422316526695250436965532334295932338358830257503465561486845916446697115933309236549909674329812804037374138548824028520410986864359733861442188162342956675234756626081669160136853714462249016518481490265414590393920550533482621408495439501982681222340987457919398085986002846733812843288338686853367303480811212499334222413559958979156860832938717261137559014032341970142896853383187903461836571226411315355536946696502544213701231622535739376899721790124501995447410805775504255991356884947532639443700316167301056538850859033964782976668838323673962501821404170339748514942573425483054257117448719765122338553997905501288464347824317501003264494734307369037143736817461253467095117747611752076492565409653220125815143343154196024568336231938508031788184255834003879667509112355288782039744477526191870!
 9829618117008637382205610666572883146455158537506022018559099822839295458745511823966760790241999375062702055723265862516445522144552740165920836578511837289239543112095796838522839397091463262353753174690278669971891181967200220334425977906292538047966737549156404486307539000346202045601651712637073178035100141275108532552695665075008099503668515290542793603071038131177397660942206043734552852144319798490171515637104687693740503091536643101973183295284773563645995702147830394117059824414158305616529227933163619435560588413095280625212032763456534958335479595029263173716089980479910092589015865741465451502975545990018703635360680661548530819918658702614751795388939717533645212579557848910828233981673706845309069120148412662482537987946832007042119470991191838929396341391319301610886795770645624750540671391076051079051286678152812162585513091927796905587346830554247941528293812778924297220840107680852682795953013342081802950230980748434672163052762233040071105162013081681613!
 7623361685009258666141656669038803498534671843509851061159686404367415
52730957503795913144434468263989770953896753782835307497228462826354241158630637067034972433790740131887733332554150735815751725519344701766669247477406341744299484398079588400202935435993245144477157358915256042626317995105303145051229105322271381792878175315163180617308032625286429075761214439581541039723270398846937561949013031053736951776353621522535044642063099436089679009398251152336011136041440450597800710164299272183266404168441975526345185100466509106849084031926370076797141946385537101014779018859273993365744919498003388619210520347577916761484837760858609588578729781660114832122629312047379909829426681604442967680369129637241220823820784844033899640714334919579655668212151412674096020179268148164008966535337626598866322736169840861001050277300853923383946114650407921697344121404321495219765605293184081165134908400027211860051261569449623856254809431147489081515476438447292316552182157981238735174858555378217269252318872886281512857204145456340790147840664694906145!
 3457114270294071833728492533336415485757149260053732190110377515020994354802796661304594987272718938375324582429376602507132765748441517776366836287017689791090131085574933090519263489393688453023812788678999189433069872395218919506637217326531011597648525540436762004216206462827742027431658650260673118343772610171275584723124810099953204457723043803147897003992061981824612691178950049278129856718956044511864781651567686309418787769424550349087698674478905309634383136665656949861228470708613735042495219080945117670466251604381323554942574501676836972912307948852014162585571467682956339484629442733911061793721898908007810472251298360796718165473665253374449390785036914133298155964500629961028606667257855583686039566863319773052542898900659729856052108904947477474612268838961476328117713175206464014448279920152043237832054887942200888054511588145670003223341686839517929978418977842821212045184137005279938890300599225333904659899811919386142647119836388503244433321045146958992!
 6888460861915243882184758906261259244002931589924743472250748496385246
14739725233747167086847782665248465774441089474802231503130319789012145046929775367969758429639744536782458729926971728869840532378469144959365500176790787264915341479520344752703369200407676121698861388687698934516084163273165543430208642356062645951569315107854454745618692688867149486406796760003076097559769481794357276489042051382154051826529416547054528175532497610344491078107992843197365433200286032838223761289787755443350649644083939728526941186378161597534667518248169720361900121061129623764055664756618712863453806449924184522998823612673440034364807140702496849679371110746962150713279889585619083809103444108993624386985624378474895416328108234201932292243835193858868377424927861188502420549099477567573578432289321660524298880792012328926103854247417623642631141562613004533466362194096733179269423878778872547104929006363372948679275132310040447066434987328882443835357610631350256387619507643905387128193685084973880251545258562415363140093017581741946158311141380993343!
 8097016069976158891074007544128314342464292558030417204957258714436626355499986219942442927676241238230003102244469407224177179147488063143091910556965393035153396018649209870180587070982765762371181379100483578562717870962888699442111311983721550594104611881644825493548105807109491894507185064675010812849392018472971114052062373498318540830676021268860981356090262712998288913429948718494790506898770769540345522275701502715367118274640923006091835370231316077414740464608900264959764831211184125191074020581405916224629542431352090939987846982850567452356192942721397158150064597994272857220648563297350438278442129142460563956436084977402707066235074061018297501619269618020168268571338696727269070105459271838579466112093425834060510498707556657155217047240712279286093903563178599285285607789443474379313098503561529255762995925658188360149462932345230816691422336984579622115876201243869587422742250086700965137873267981911857416585375682065156760150841695179779276297541083270453!
 0734211177387332416332092267679208574688947838653000789679788606967525
64548051207413751342359008933522014306768175639904990811733937985399266885309983007428976843710009027816372335628864118899267637546504727520544927404437183738299541825806916131196959834935685050828220798840449312296136311489077237603297592686919511710346845562211421123787140698587432128568513998679381965899401979013077445232826891095484950814599374174827483507014580687752167544712644822210092936340161532775168112858157423654598778840122176407404602982188577534471758173795047512633285216638206244680296041394187123452062887282735029464294138084163429990189299556068548645995521546643595234639039313606736466364500903993762093963703208651409561335808827247998134120152883595904898440643945079950751425141361370538209445566545423233188184796221447383848246784840577540187569867437626012842767713236730211609626291421841046851196936658699162617037286458855778148422898552364334161213713341104226630478881510704572756153961924917436696810196377389357967654529577599527460911626285739364249!
 6922519697165719015415134573437434752392015119566149288088816552117677687767449858823162437002033094903193357461114773861092104322562465403647572146721492743222439733765229457695860640680442520550440815726546266546493600641466519066596759491167272019675492541004326740756283947525675848006166348405082090615167111706716015157766639648502784846653670389326033283983452558602635141830735865318448238415157628444743376499285612291844512291291934258568087938120953686666301582368958886783353288378523935513892270387165720608236441373841793145754809275983152320564485169400349086622611135500352276272644506543071080761170014171965216759403869604460192455771731119369175018073966381278987103692697929386232462454315018597414345107307254558072173593934107379581206197035157093252049072971882076908432995268307866266922859541948869026640907819172077527394652136888144181590234611206165314981454520293319323580314432568893694132115316336918177477663510182605621387718814461121352686223683445850305!
 2951629528774516526391319900261525063765254560774968228013931622525245
163
28375082997943499082992404034844256451224138504915062485969724957678632738484288544791657612263342429648127506494797110483415976888026825522620456008811059071902703134186561837117954273567141911595057476499007686284978278880565966133724777638324648756447995118000801244006852362528668222940154147725050690809696303809848760104465904934378764682175200740019000115611077492272117671625686286162744703961848842196674275599826040980085342197513653640792045881741020890616205383448871809520256277730153053584803294157914644271331391361646463465473207089744346470892674006539643148117869282074444810924960282723675909408988811159951417056356996048791095250509648304219971884320798995856415124333836817763990482891940090004156881670083402346152074034445916444764725729798376718912074101030225987718832100627651448206656771173693315425523038516954825034541154231435755411368107080819374753272262027760774464327985807529114813898368792046384217610301304776590465153491610356792544455006473230302857!
 4528961240204636807679311967355123416232138384637632672334365478603895644613905816720751472110377268634299147288934216378766247039090424989319246674703212648320883901004265810373428097733995261645889105607938080211353331176897682056447149433407958492479488879315026335966099224552417201428619523262665805850160597993950951698531154682597268484124019113575624759692079983075341718808630911089561254187423716260412962420581594968669634199269983356594596216731987000312831258310452257038864508878248744571719936906115972746898724589173499093846274820663981381698717815056641379211267138024402130434340899697069707297354029582088636702182389508322714391861320727512344956400297689230252194477632214190394906151589628927149875115507690668431225841269167371361475200919482386575272186185181720300206779708412380597085482945889964964526864022861180541575321906379075993172704791555518298008681833321640835039326769868365864297682512382459082922770245921420677482688003582742570305580754209341112!
 1942623147348915221444482164947874795115926304117967376843217023156103
01460206874076939458358249038403670506748379949163439347580320686835331664771135069107398317879930815927246388126912283413829064199825462571347344098445124361328359927187974669078896108886467895514610954881523517511934869786966676279944519580705131493605981397800257089749227724450924821790856211014565091778983519585566280798650915722026373751539526008101861942330712985456642704711670565193070368756870909342715278670218919190432964809052641184549870583369555262256475501424984938242065983808166456207608664655416626785828771735746614541887514309705940795031780078290421931965426283895690450422529065236832944987541654293139165796512659206121442483767837523054536907456686632916685806164771066501401215645184755046382452891386284411516878428588342430208390034663181608665806327320326108590475805811919296541591232889119766769278426780025259949189531767818157419475982225901077602007036189546481864920416215852580450745846483690291461121794759170826626121361429721773540230481265622575940!
 2140263854710179944041354286957516930707423658781907140045930559998829767680241424924697874170121950303214871578469331835889283251625004161182016146864489238050593793448001054461787546213608274299743326857059129228778402955579821521309989587716343627526884322941955426232176715874289858658840512424007185274300270882528936474522106307744110765388438389939428720166999044788698538579788887971412324108403429505249369302246156396394998758364551454089063113290011052517261152219907698035765028047687593396981632012305439059590861783639889637870991902999785473512185145846377689720250173765794344366710825502107082040260369579849849343883328794099231763785053357909212950839173777504732245113636829317112199065096977343836572210256290648994677304588575938209931700591727368974926858390239399367989247556996452912248562555657432364893191124227673106514004248140626947261090200628016648791969058845588607334822396555170481944696285310324625057811611779237960940862721949809911499058297420245427!
 1007498904515485534241426645336167565435873872801542862934893732027586
17910418349121677914553869035422945184175592827002584700628860999455927204762644476523014800530429380912141901875803001077999595294021881233855875173184713131729212328383717327897921139696735754067750465441119211738300233083959442264981602380772355339406430606268568180898675521480251867040442779296271630808410532213606328519496867452979359541362461240353249342723653900366055097059604115318108437196302051285999331637145033212839474781920950455134104559874360183055892541399399331052768754876001719411825174461795024115489426765433059432026856915814486245526093820378073922140192379110883691969759944951933280702117997579663589895521224016406147618000368030167172822750632795193418983339625572476746795472625197910323767310381787250936134458197081727845846039973370951875869945373347781877375562721748398886985967902337090349342498309790540593876943900716033274047442796620366043573591813923633916769970426935396624188607426704741525155899939378366862813094843615785320941491315266112525!
 7520999649112678713690459467979399878637099995136130995873786440257215874866290370807401864904065673682029167061700673153136277654995029620597859259819315715415552845842992327075776633501605785960718459105279926410273532406316093850366262080824001504190240112819662141366483872452773948505521297852023777443939616602042081116650258920731500813609668273377168574916806212791792336004546786930048698772170846170069561164450905759497152024819041718740517054676421646407998093902183859649498031736735244107545750916041063449462269192394856069770373452970419192303941713228235590090602027822908644105477211274064648822114133916033938185523915179784600663633153153167738953594416583828060187130064636069382574746833097364147819824803148313950548409043483326620549275366569564036985078678323702911557955527153747605052926748263587746595067228843930549973470983075641369260219839403065094398220904185692458698921801057649156513719880101562761827606656492877366757106246386625989525059157262696531!
 3958464957287018191593146359022918384708469163125882087696616617930694
11445474577385416942664725833756070230075303648298397847591140909747077795905530648011065955207291458703031198035863298884016603418226258912169188801014292133400257028331142658337738969856764103913808934609842658370658827994004311082314917250688214870472640814604352721623142569710585514998464330727856036732534502719360678388152161124040379689373725238699711996655689509085470520699645620678954526678855467883682211822226386243229945521035874679173819194972446223420889594033088736626607489131223989638382643087916838833108037255064168228109704512861483334683864228960663314407261480974083952491703431877814864362093762298534282325067610042694260649683447638897541109000013840140184194088846083395144822104923401388526931102142387125653098825826062382132184286629060074572786924107675662453683041885409336412170463743312007319450408697021891024210866166961153191833248135328376699100623824852227784863992984418512011531895261876133527287947089042449582282366973031517366919284068318388431!
 8802425292066108754212545110135539406615304243299601928354473785158331343894061962128002935904677663632058539762181366317645361512634539078573339672999734066705297404405778226143474664876948572571467470299331157196104007259625400528595784767097836560181256876985655746435197189628085339150157613227767777777340587953447922692717408441334954224833293699823247783712511811328802016304334753714456528567165270768969281902047473147424136331385441615778207278024748360332052477169479969838079851343619317704804338511955647208986341291848229271283105918931172088494727542864370089339004316016169970886609508597027446078238297233094562843967176192062492201037940151808189033884412714001453732955281831522499867274584489123982305976535095059030371985350519168923251603674021452069814946538546104377127150765520826504205908849986567268099376936885478997517018080984408955902992628628465559063950993999095694104945214231339482220249824348125770210763105110802210250921610637566218349816590897277566!
 3326464494854268132741047511521513414406279652634733340969829649588639
515
14008226158026211560473513858013992634903408856880272610793467278875453476003562408863809039709824880895527227680425840196321149520425251559863656035144847438930430497834849461666315130828970582996753105474766236387804498444208379861848141065312203221432219513155177044250787036716757844946285097692954965002577460637756957230625585493386244769451802960978224702244383317900984361351379460536343371564687418900858427626754344508964833376373713382333633652993331756624865008932115716086809416863215554708983741867032890827250596963178800251162991936276100793401373906474360196030452327747684737697427296089736873738846798603809618646987479894354654386042859869991026299572682388748625287526320947377335356507207052298824315484492083123274187005445389951545419183191201263128842181874545488828243147324550638007024593123650960285682726844801059790387191035149286420200096582512661129727189180853543546218054832789981967998939558262878519389542974561098808866485989797660793401005897468160902!
 7520740105189199183494553040903243682184952464196304462892913880052973587016863423092628335078545423286950884487016017171433250900495913245578825234730285035992864880173665078447531802317143496816170280972712678201288561761778904167408496500189799867742915177984640668499084690119241396706212761892867109087477246233969885902497754081705358113465918621095429988672083552286938636060564498610533179335086591285193195501707741286354510621464532062188914176510154120282463890777711747839096761316452612936257230085410064860236857711350477715308574056363355688724789780373798928412628865894350160894621165236078247611599491796957178642236610232365827019094840142582658301484933049488039658522167172613533362923660523359125271791057183636625941799786455220527145413948987012569935454056407014452492090371933983317620298108033754366898482758426098924096511974778290407233905272707208685680778425412055579896139694648195572533533673596405897082614116884639269248552660880538030092919881822054866!
 5729742933093330794344535077746488936481933796612981526280029575348026
04367743769848443773414655223719786428697598895626601146607067627380942089555896882343619432377721609363814988709666273849670103502140250237607283171500401113495157841319698933753980980632570403361391336417237982084280404937866691364215834884590887170053328110541600937435555992363734937156109335877314547980178982140668160092808974796240167307348418574710029933181471701370875173372967379440301286176933248371178743304242821500005110558411629058020255456536782202240862681884259576706866165267526245894511845007369419790646186062345170560127004123752200460492318706387887224362463801974393727855102874420523345450076914598783738828062516041715187363991425520907592185228918973856534384036456233588120416058334096001503220479846160595891685811009043721980090492295928734959041494398180198329480511073387625062167887294533976881005021144141618188418962045936963920865229074388147524183623442854627048683683827810871988841661490129067740129596097650146647300231778566000054074329915323642091!
 9512561033064451647549113721313789234589349222113199994452166115474340076584626658921062323626227776330031822983814393214918744354661853585841987949455885872266471008941582608246322023747391461106730045190353769347429175583742527678556581475386835811252494818479889945653223145650856776397562062045664070705854757687703424661321614841249353432297288612863496491060429147034952627811380871928038094992774220568866497614687217860925031831687985827840056974743583356261046055023243617935894328387793372633690766645901539269306938625579659742381024077339192253274459152289499688075963071571083326146145722922484551400693306247177895306135392940322475526311071758928609340216199453500388260765901916464123414846876547088909512752720725137577387998330575662910667959644298900370798578345395471590974346908194904776374762841886357757913105186582725612441768284755435792620443208351547677281929149594185768524119873549165864764022837583513440625277826710664984416651909684065614644016180521828029!
 1645644380360891083840269435907741189674686840854635772763746031621939
95223465306027716478766937915613958597684811071060911912834643679541580652084012512094171414791200551548637001646897863924069528871212842043174496232666012244840262099983833589803050130305622282403257218982615204672243349718435688509777684050443198860853001151708462144370831163444208070631715030483981525085576422222691934504413843133668756650641656246394727693304266039121546625445137553738897791593231208386295268756598797298380335439565228563623935633698417403492033099655812996130900489186812581421720750858059746306927769257661096288774239263295816789592498902974324805798664671860742718163498648030646248093966420641673675439481401451722685027311918484816605011692233003813972190648430020234033385365547590133651325533743061059929684156282889076564810541889557878814167458615197428810315940507591511300591235893211170747365046725721499729502415314759938935655823806852208376970487756048189362066195098218495658346152839284726504151555519837786382185693901411090752701613438855140466!
 6948070995825928393734161456412580756545966444241248695611394638027802287100286131204710759120485782764568320518373643161378192536883632958602070491969477854787224018380750806929612748740771216907565429469166940548187423749355018412548394240615474610042953135335906678429741146401433402746879224855054629810773749444190651794537548606444827188576526472300929387726485517684646242474942896809712933225682661499648445820420180554062374881142455746526079399574649178799865619483699293033533457537839839219904388140452995584948798337130150805086004416791700913763461593376945730356586441525995947993304116727828387133599446738832671418994408131501662796681399057101256616931134233196853647010364728274577263561388941319943784604701623051942082814324080789158174700207547155492193127606643454352168108926153704192979680928063896785693276216512327489725985941471922764160771609906384873514509369377385110098118158877104011493834717743337271738128813420452085972590733052380762558260753121175716!
 4274158424559898675804829047429950037777329358480544143829836242751210
44717595891199000848905179369411517174403053778968762876921394583134161369759023104749204589115558255429960774911722257234504668661595020936476630395548550587888108652143642865111827196702097965855962709599520768683265712802092363023727370706808617690516670490167992791745291622033835227339739056219796418267399518681345997572124247574480626242815477860028421049014154772236397403815094158597260496876788430683755076481235860156320115561386258310399100706905575715442154276648471641537838094627454439758291385424732379697149171072688358563450095204298429020801488395275340516523969851634360408914068760031908053087236746387683376841970302231544221220681121352508059570644289060074460483562881659382652829621085191823049170337064740833910882269100202115793107225056827906147938338636261681949507028651283182387432220629842315750007206461659378849825991528916786005021323436616108109985035822562843383285957310417686163093100072879643245263933519558778331454544490991145081921531668003974419!
 5522351284479383538206856937654101139388629677507070250533600503490846989020451811852433485769116914606994070044404506862379268918732550443852888673956340433957654891426380905471695047807526223247340229517651134886232321036119690243287029192688415330222264183713924950585954972424904487213308118034524948132152977697806057642369407135448506868928424121151362427985045054971652291015689856583143321346506276705354151227602523085622958380344521600023130938486046899828696897590782598996021392780628627110401780378390785233435993045490444199051840577101843360426579241039733402647656553077305144089529895335128324493149343787087155166092433620586191127173594118543214351043596552241583315769523060374046139724147664921477777274318801910863339459283047657542062421981657167718872814315350757908450837040230380825935853646687159666991815119477109157819618926113596016902918767017798522064624663620118848587210418409776237572924524125469090614702710825149563214622013977716693901433774123494082!
 5535373653320006127931164137697593970233074238332176216021667124002779
495
18714852865267618414215841324424156748113014184392760655653876295090215218764705346315363513464453016237484861246390948913534254661034175035430310276655564310736382859182151853876675146422870333971410352542564084834374156404742802024334868856246172473728117716236317137097398560143127211710508110381985476481831364392699496468204289331939631238732162565483352061780111981157385830885087169184336520522223295752871363489153183097608766173026682799183201375706679479182026570353549583160596374436175181834155431878911920024363155188324377507556385525402687798343048597416447045806303986943785668995242781938312647679219366620949796829856938980624429369781740813908347409559453128556433610383279042449512073772483163755064716230814064753552892894874461897225393231182405599659936892459375199211300924893467270813292390475037434105861380092973990915263707636701618376833016855247929274503968094103467580807262482363678781057885738082874138040271381632566641991387414246367518061232409271404111!
 0220052999090843669684669246568176162450555166549148123602563721743534000146567526527571104346927714874470100086236563578663283945363946532172997871221748995336991504027099104533135846135645160021513546595839921651557582523115142019062475015865777394185677674488810765906451669711987988761549792705054083200852019096573819332429127383468877648818182386739262823210421820895448609403488073093121820035359410508241573698453130496867733026355296202034706500921335552353805797832558706081678264593078595352329209950911430189901896798627325449463293924053687833494682609367687815888703886035789647791165977560755385640301900630721430113120231621665408547706928293818253734224765339416419807576521172389230637607861419192216392219925160751852873165330338868514058538166484324900302577560835558147651488651939332858454046609010232697847627743503858949991127097234943966418167439601001775846767452828997009370227735627771507253120150939840690540303877416230565198582492592814608622359383101661091!
 4060476448731955165121301961228066066848110244797072403554036207503073
08296064518498595249957573709861936351154478185613996416569331036042319649009349063045798823542075648283512004841178119971516137138795740576718876331635624014060069581395794159848369498490104931630554606246987957102976428538951797784902592413092211492034704994623149520050951594341007059519352871903117262256188746004508037467831255783967491578288514235322287019469186815203057066468213570562293621831251028630980225809876879480484294107488456616576379176965399792313157729409953546131164320801118690577315791218011978221373418169029944533060491098731192515895169741949015542278116865806586048469216488211479960813880981266664130511363932828166494964525279816617759131779597444849648457784814545790155780857715100930976984843626537495328267349570588734582532493762821825129587674204155772944610111533767242143705458561065294643031637499277499534248328042157326465474472161564140131332142607089248814351249258574048930412748750543626434361190888254040338451453709524878658364381891402440479!
 0258843093224374718091357574116694461914061450972694917064693352518303227261833031049232464057651867032844415267332334309097444047190644483904169420757792672096412512602954082788779858098847995381614789730691845629833218921752753668489202773317248692588653760165603833397776146925871209099853108437420539286869463625157513469310108739510792490967934388059530458897910731433365706007972722355858059337334428542569140770258435356841117507430324435048813147826850184577272517601926911033459286977726660882304753002406419747901488759443758905407974562761219215708313517008926614174893461276526170325060239364452091321661788211584020275732700574786203554898958055169177254378548252165654070484213788506297209790384550676234270458370084611891696096035226091465385969441074796360321692987850183117824435633785295818130058785036414484628527135638765533369359324572040596251544265596489846509564212747740209792123460377492719742808059406183178157893352763417642582072393403773918087659901381185147!
 4109258488576441090179736902441917929564372009972999030334366197553713
22482427682841001213490190219564220981197019983505270138952476507224188255283463583750822620898862629255087287904373539277493999822537275762152373101020300452229751442912347864463978565750924243290612150420109666402833033038134475220997632746337724713070009829545891878631812839091246178372410510103778688872146521337893116298669297283338002650642313149557391856980095183073680829705017654691351044763906939820566542684678066676664708042403562294174775094708938721777313689469965555370568160641819902111324981837619898295219823827349919659893543099824634931826677228495176800444355173847304097186961105232217345273616348469162893156990788652875083841472377072853605357637681470235823116643811366133899525833027011818000836683048145349315970541120035157752426108812082822350288605530769801262114950270549734831960106047935102309695743074670913206161718992093866943105022039547938726580935867941140296784534264403945012914904261526513369908220250543737312239578291338305986032154524420095469!
 1043737241909677531133996275181404375753510188651133524197768234161703584217666579213000258617685289755686461963771164117539680359492679996021305859029966277628879783187257184674232507080186840168105104103382789977469650144593809784830935111954101887998806106978115572315478688695575388651795762121386233917133626799937463214239791289347073724438692941440466036134178062679144963098033802660287532107127190476979428000612504178405768851640926330032106125061597082564895328841725634897677106900096707054733178451380343501019458261773172228506989435528355706838724137373520397576559849483261132517295998225806577186135446414668695308178211561608276705258251440092910477680970002577636492077332828372736701061661586627755532676649210846813132234487550405061951088157120592174109531806603255969823630760348054735553698283667636229244514536877889638770306424082528274189536284146099466114114440122541011744675798058750892619810288590079621842416804299018442693453694483312639454405027260627950!
 7624217867159103357134615698016925377679074295609672876998458114785709
90085835771800229312638507003196361164251683922020902905138676207599810220477204924228809705137564613498693767042876320637962293006015231654488359213952344975974794991455708966518310078483582149807188165234885910211641604915011487915152680055177478181907587800015853503392694933907928329952964827089369602164564050398926943728391932371861870038321815489560240231672205288381287009012124265311106640181684651757673210507590902195164313186850439302635695115812873035655217782007026128868040772621446048230241667294420726352364024139302890156834310847773574913843224360231458635285851636592105694101401431962072923461019497818716926202106674146299598983298472361276198488988362268892166666468203887901775825172777526771560502639361671138456422440274168189398042013153869070552431038249532024662965358042424958643427661269133462221805615608091255679909232163956567951933117886849276816077739649347922867844610358249650297517793593206541719322584878930545024640834818831247668237568405223119284!
 6620363182000891135758418485262216164643776606809400165166004787465414890548718409171502101645753922441385015315496110622264068235889873957481727624247261090164184547275830179895387705359114693079233027748346266734588642442555141405380594024915773074633345898728796679558619884361176626690323711277399668932648741461907374096881565265889889899231411930950789874895199725381845127615152745784824551500549647764038534581348621218333751036930600403300933325546013131307167400583669617869603632119635529989436194510586515420152983015598376867033695655592005158867508013132897162719153363855333941729244576247274347499465494663471633836045284244664367305757369097680072946984253843428408708110164194172218716082506695934343746162911471024447934086338670090693406466372353805444414922068580892566859963792772692735113535985019953541414431090365632223158499584811042999575183319644075817098905330588280324912164185434057344477538102450233559628048314491934184220097382267789072062312641442916788!
 8588962930434974150063758026250275434871082330037709306496050017035751
438
78839208538025523931400223583682357973609118638749418182855228572519943904706367308604275724360451309397269979071609865344944114633018268385570233908555955583186349705061186547505631147618198694827423488116165769837314420520143024169595022401550822575675500864563008874500675188198076876007316333819206297738390648037535547320316172525692181792434567912883586854465453795940274149968115470524171114764207949509528103208352351314850408186262797832676345870314906829419953404124072593953741485925179186929950628776837602676818314316079114917454814048536857110795800217940835573096802217818716838309523345452826493454770301366543549513406854239745443252670563484007454597206697844137105842370826286890306769408910525737387088411156697803114493252873591539460649464511273113032975677938754637579614070693396713658678513867082755398270761302128479758727525479061148184539851623619251001259313269051129324257370792777052651439971420570707955054731738296428085147365765017107510092755663880648199!
 0431865367404850095002727542501024925387959581820646681405179301334958852135874389383291546396635286922549044349401357429497310181869231654353069997684135042625457428818329705458388900821424212583704997605103927677868497683466135634552784995203471927425668122260943546235018941056021461812279502359615921544486748202409227594899678954344958021007892022655932660181417348053861857810371397660048474738552400702629957980082493608316650406642299963000584110879696634898595792040466368499421206894347145886588001884513633986921615595856277947845083851842268322187219438150058198975039243495980416087612483358458327291987927841447061016808422425351737515277928308255530369728982646956852835667125233722968596628461633118294265664870966795589474177747766543713809049633714069016264493713208513966919789944619555595118026918080545735312869164404303768190854058155306317970242017134531651721439256623025657358121667600299456330422637620607810868811066868414484039100247649685981416403615821125100!
 5986978338583009093598891973818225879420495622812951094419947847051984
46081778900482107699407757350564371296795749340309142345078268440149967006168993440684908754849000000010067456580406527983990100430615429727897827210959220784407555505376739471774915556360780322276858060827421709256702032638019145615265953795857648802247473083651811288140245193507940221681051566349206974806991547439249232273414518587018362072767068979125149079837492959992067481761280967124442601145507493419391695989314294066880953092108101198272947383604396926633854060488055315990303044463075937190622461616488381399457577135470932666271059536705519801367357278556009406102794966725393084173880913838585786171960324675488656991499341684784773575995335991904169415146575633239079276740621481811862383975574438571516458419612441601590533791727109486448155246600256523304051315386913352832827498673802671320504518021000555955065580617960369371089258689448108250134602498346002496590699535643823302104671800584872402861832651436339283949123067632139622613401414486539680744840602918735276!
 0479706888673453343670078236287428546410315105880066199659829067618087442981318707509647988530658514781353592016249004801844653221315089709972923539136595158616148516566388784881109648177713445005091722487742634752537145995063911171912462536859445252571423497642356709511801750817365193706778667723033937782199840588360421432941500513766415253587130546366960589488472955276219132881844241594711805589660155716311900643707413209632657591748356091420344235392185180453643414948701348600255608603701825935993241165296640080753501683863658722022964615753558668868287380137153394847926322031842252157435514324012736747920772385439139229568636719443071519470951188858925566937586915961897068038254414359067731966218038323550204847800589998799914631625060297698062004978714037693883140025889956529192541129068735967905915473053825244646951994371155441744466507049114113821894672897042949963796250892723069326855418446356933099342288180007987615473460674721183751650664541430717740268153219661451!
 4668769910918796576019649321104481374629757233981029224326322180151331
50615059578506987043286126157013601664132028724420542829704433326465860495751176455068886269205845751258371897784390191282474828016280949232198730396724671146694853545986952404170888961441620234971705066255254771865115524580328068324425304874707616452797020074210372594318285516830513588433768096490119812169982990166445556624977457864957848679767410060543869430777458765082251733079005391627799907120116328995284639885748491032624554060150974297285331486672726277850958305480247891898329851098060527801646531852966840896558356146971404270496319876412153826166599593349762037572392411445282124325407811567817539050943984863721571395939484945075447980847849072665442549195804298778450603448246348356360325576918522363455551710936032324040247638370986102380144142097620267221855547441338489975318916696298439173831445194677514467802114069664414595554459836977914030020126880686737881892940819193754020681641803829773954388237480905287215529519678423268446864696067178159196440955744741548148!
 8962631473029427052242759184169573553432214076439370770009988915086937612751856826587774087790990582930345587656306748324179735374307217970085930242115027077578105334733970239216403293429267084404518923005063528101141020854297094771511265641892792783109674631807991377580863216595750692495750325163241978269001251690188385092672651612747768773745089765512196631549938047617971773122321039902565889958236199518918133889164249635764794714292422853303650977593123931124808141148454925210798355576049826143134259531474512109865862976556614572472256825087243471039018571397569205657911616102103628689273831025877769285733883130036460009871766871288629171308208046558436223156491703656466623699267753617399142406305596660528210514076658707942736148928935103528168420778596429224189558739244042891465619659437196371764814435448708623836682527009010033929797913457036409417428779877983691400306511418661798087026318119079948692907191229505729751741983246870342334172680256811070242430199533673509!
 9579700361595362639846926738955115016291825895145326483485820962909111
42199898931656141701752411619668293104941208710490252411769672993127172475957167930608736730771511181358795727605853974852982457869608697373273150957515182771856670694458807452436553699099837275965122372588672969273370963014107748829564015607476062947447381127678900347062708677406740572531357449830628110323022033807470596713982627706545950195561497416003069464451387859892813621110226185427693202850589083103141146383774425363998926807691227038818097168569156419071244437989666484921598035057095920519799542243666026145939345143498635378199905295757445809554490996297777157944555247588356551282938898707765981535827650672102054228169878930107199269963426739635866260599023107672004418570921325085938573751546494690533159235989454819895633589678645185875499737034418395116755799281495000455519128750970030580187253949842120027778514618363438164842740258052346034677903293102927517018458958446577378822196388087631795141489429337405938084833819142966683091255564665823272833516311856184878!
 0732263836332140766898601736078459637893283997455124326779352988983489197846860725558740793323730941402984275490200761708732750545039429196704983031120576037006500466788606065175266104181456816377983156985373286841612292158675792930076992133987242119754544574224559280589365004175738371157542828796405854332718107272617549140993187103891377407348182950523595241866826504434985567799147656106324836799290302503427475126573102808443810824264784179765988596612303069703773396097318232603378480600354712729482275145650485279234461422401522025720480494869530588474500683439064717182151259155304032969704594792190312572368806297086246566732083525111384323452732833144312877602766944370108340279303579212867884399798772610132183816641548124309727857789456985906044350661614626229522062579177450026541698283910913167048778934152003455711354570032798622989972933411653094844167427870852051450371552489333232286954072710379801935264970120703550368539741230262587861940672381846829944492480144349340!
 3769940082131120435902960739947080225240700981547615771750323505451876
330
26598413925946992984539413703655191375988690458802045931859471576278959211463631564757649812008766632989150662682924385516229733328168354485700590547207738734311968812174117715683858360883893823330238916125563171014214307582306979910951900203312364527803474416798093938251593452082831962057657345051448789139461605562111843052808400163473940883234681025057442928266356293394029568958779963769595316462024585645706216619829445726757116309038072328969430898973497957183240887764534537936324526843872015445523230940812886817636055191462386360673098371975163188171925760278916763759838468216461185490316613814065790212580766678949082646003806236242577047926052487878034151984475051229273033300252602943958959686051156150391849881394746219940578067654397150062984522469045186295554778461615358497178349510708379868852683100448770992661434581271363592897326254634178203126594065709831803180768641944009951064940960894820389254712786649163523139166110002378746939208182259093875899485271156820138!
 6484160614238668389416748149436140209861217032417198239319360029222091197459547805913863121219460842908970686795856902003853699879611758071845356202419533296571160706003289992390724753479149134741882420391823969324086419638413923545283737418578344566752643952929671156853315333706436843132522456831145925231382132915139736205678227022345790008774176227963427625119222681663664427204220897702559819356569249680667258574557243209930740624530351639163630773437623027042577466923290795817044197663514623710068936981929648256270334967328222937755108030960358610413114134654120353193434248564924488636889055601948809730475572731977647979271997683556685907853297955631530603426188640420627262275589175659219102780514984458085679830619700403840924987075718574524193338940412159334489155043441436891855090021975818786699478328579384567566428753019488364896572100868995876188507957239814591208450555608028220195393856337893263345522007502934758184810024378290645445372771507543157322365962830429395!
 8347504795991718289097177832316514123611124574155966324251375895236678
74570172454799693205076108998472073638891862540736437705826271906720434957585306838167218705152988145867644932622087462456547164787220823017206921415173029593405274601590387548986111505436449845093350524315702878755247821956996279738601481530525041837962059941565109583376482303638254054914611506619813286055380385254396828481432457318676207534907223482867103621279287771567508252382107116508127413689925049942212044917035396909494193982347904651400747438224804195301908020246823825648427521283641984500624428577523698128570473354728675416612055778210217143298693620088537234966671931081700233070338863124754609806879643913499244990022205644106468415992152742899519541172839652597575058321499563278805503326819695587290670498404907787964304199972303136659305591483099255256431068313727227675278760933138559963644337896261148829853741830301849046392236374567100267246986458118146977607732657143132084984376289445829540343873710021887088066298757718412550318817939996230183175895487988491726!
 7867559741883567166866962086579689149155628140581256197133548164389015544075076416301246428566467908451882487229652559550279968455418108181892013242600231023825886377666040425958162153015281341809919281007612030191067592125484010972849032424461109824323306245901973485973180344429101253932935742716141050694647631198766883749128418632362299478435377790282633354034161157921409778393643841051520594225457450001588884591446705280663793192633700880546586495841289928993079126788717248286863040404399141770098510599876570617669562236408696975875892782859275113172423378622818904244209148476030910580985620667590726977995992863932040329847886094437808145053798192974839620123631621282834237936568277655711102026316291035666120379885531960932415962505322888817566815327166624314903654601799389341906682155029658595064790167183527463901864173065521167158225976093489385761019230156081349703010839637208239408098028096142808647916712298698556806742026729972903130962279182905147711615393760708628!
 3883225270112666729897474650133062366335506949508034985841118772649209
31579559657013385635172670829265947711558477071940146659345310265936214831602826884776697587923027264698528551331838278790153401386995807390500394107264264057955116387310443272677860672679532997447492620301637251617656084351467026269496395537852110276112914267216864964244281878254686685099672006719990538859133066230532332739003477425047932749733629908789386227500919658744896573982064133364257704450756502172576268809652241227882841130553202399472103126042156001091803505638566382246649851467260291448839882788332025719296834486785133871785103832146410983164476983702583983420195823300115995540249025796972645261334079685746851484770412396207249175054811543860037989500142407221034896270021963956483810751835461175856213722971065910050708512829726182450134198129850946402428186447867125347745627822577360412135814496531142987246007040991497082147062205774622187014281255903401489987873791837858195395700590922438050655807226497654068041235720384288858713261155434624027064579969881101517!
 5455925395460401017429900963578924276158427721055683443849541955185726260642067274701839474869814523404141421653880684120276135891557496170572371846507906769579701387634531733206201110270163805077446124450699128062309527016056715438629115192474257408353265983208490124096676940795790547060850366310253964820214851281471218658759828540901256397487732039655782075257165037140275092773124011805877190324797407829248403453427254933536728463281603717790479790208007587665291791688757752939895409397209747925897097413164984516046985154062562138812564106135811329335812510220812986735219494076083369041793115632187946424622668491121066521423514955116183486969100729530180359294883200974409160485852518124221488304603881088184435909726248621332801946100066565201667804180214927749930661658082524986391952564891339794385205692644343728282161183453760477745155255340318446796324101867669053024445824059330106239641748823936532630256743031650048027588730784039399560438158750433350541902707509570859!
 4851932078143791715820791566834841507000971398325846913824626257310018
34801589459091786082505976864862734676281281624602392395148209405277468042677122550523910502451633737743133333567388752132641517318339944735127625842117572528752622362980879329841848692131534792384813616808461785054713331342751459928051739519236497362373826092235573190118521379674909581827871353228302288330269638522229420300794503614905048254969590452404394114972120668225225773716723033766952450149309601830262297897482947093319564533594108965262653282172671992832826076571421109841297044810618497889948196488308185826797732485070226550952747526506308122196316516555239092432535508487942347653126186793288259578708422496663682029611481148980218399261275740853443802154375687960272704702278337438412603921285032067557793502429626846605977174629729338787895943070450589907538793469745163691528746143665406395680074145071104520452930517505723393761082985829749369300352744041712471077071825984606338787789018961864301907221541929182658261545477068718799986355995537058140453653180278158719!
 3245004470583697066177190894683701414146199972208753509919521548037134742178637308422852046792859726551745013180600872438481244056114810859309997225585048000738984472058430386954781623962593670183875212177032366855762166409810567968595866413721394540918585524607333179957232121909534804629226449619843446418897890235583752657732378490529147236168163335549547049546836707314802363289148848242349015895766346423515033092581316083081740018719889006549584861536423909212765237919703319001493783041614107349297908237661184075497762562750129803814737013867925990021622659429552746734902780850468509666393546183886367806297466327762829416662565249102228562050857974981853249651683278007206589540648877864162410285949491749782295680977210150101259387016312101563620474938964669547941061435491702825113149617088232254590295534466815161430665355567723837605673298671106309628352289813176291107168293982068195845038022831985436612158988643220115907971388327194171808951130465439459002588589024996284!
 0404380080345534048555726406572845812332596819556648839784738251289395
924
58005120827861348026701124776991729317346100730048969153565433454650657246961782807507854246885035042115967133488093566046249981044396144209033766212199403444679747770789224687320899238505217864250442970421154661993617643920137357077269340508841105503886547488388737740620553816322088847703930360146461166187405346812041108134807374986304348529588487936743923713657892507367652538833902970833567321097070452973882510468855833080682568554897359612641156162854038165959848802741497896281036122876705507258901537719377226203772349973991009579144908212893754416738016714727933898841396127516028506885017079102313701351880151777244007136830127134099205037151248946103494110438106425744572520183902381636998312479895475800979750586821618756522326555330276816994553055034809650222461760174782130060738286161682512231413899620620413553941313806619725302720380079105257424824873042040579303600868714152225118511967208151782588035051765161308583197586831444266787189976642275726068996539439184659510!
 6036585870197016499154403989242579362403352798845890606236185736932086243334998518472570663169437929465074187712111060421722785213596212434481679285435527833727819808371351240920652692841863712357699752638537815144616096083824719458166365858937279539526892434267468985415696124840238807790202297156084126229367105470366353015804299211279735199057712645375098086821302428799357060821147629486573607077726343784939078635469058906771309879330701083532818276020408805424185999249378462558504298367421170007346549287897017900375806358613211652757141087255962300235706964983827637841930471948100274322181168714518919675362781624653756680970722497993049512147709477960688689239748980990469821425422575500641904355181711206620336177417678970003167090103130040730824172209848259419023823898626440774178382998645194400310883457347323043415450262727449893578396549837017781846413792575313001220415764702087526345242853549291335954821855335744765211916296421466419680114734676053079020967476755689041!
 9866023197580338359030507776084549492348679751700577784731832888457462
49232274129454966174938582145218372057171836054662688571386261657558759344846677162516822525772141151608202438097716375880680563681949432760118439989647629546018298924450282692749592483689469356608815375704633612347972376446986966990332905040543376764285501957057301340971301526633445661138571553698062650209999677782225482070269077788096572637949791768025757261766462460908391216142453073653852035950956964259923403835698375949509019064148371864698403060819009455826916966068255971926761161056198093048497823193556081468681868612265744141116409756857074660738956297137705484771085214582586072013059521068395280572646469453396232790677996027380982381183229759543640021793118198112974588643853908681126891957930282644701979182218496004549222169246553397789993513363152831071155743635494896798914982443710760576183152887035450016403032669173073842071660700458772992096766586742139494435688198595379817161956441926229083882735299251854966724866271715043856980563621825340820140275646928184504!
 0012835237112817796526675457360362202948000953137474021449949741383571406193124535576051410509018818215078859829941945438409140576803612567081105769398505816719184570941301608841573316721000492705232475137304903162228691984982463760845104571474975925106303953917201870308764656050650752278299939990502111243533787256594983076043764522988485572723203366566578399207148308621891480771164809979706921906773598918424610769911819010722065765555992212034447115826102931104998466870482671826368530350677244069477027677533694586167105226754703399229145580175069923368714440881313302662114390425344762363936264819560940304387576528996503117043907027607343685076199618080686397012429381691589982494466895141838935668809671018914217584064367327138774875385393048006547317792225799657250471445409275375327537228234543792429983025084014253299034584939773607424620268180608568110065999747136879912701873771598731204079066665544936348768441010628936213998190699410009446012139089417978314989178587715051!
 3769640060669054493193276647586824185010064637260379581394470906049134
12722036172375985644869477875228640626396076852481748297152480618760164596109122534734272300292875429451087422696589058603335817989511768714434381477146777346743265838070163314241290320523807513051101252453795546876112799680112440413033285751364476648041302106237803712500613732460568377475057422654373500330999989408570503001476375477051699521597394792519835855530501157165973917290714452397793226370829471016766428025981124141276316459962925019717342541890384971398636002786192521825716713314380144808812451624795500256472076900310792990868720480212305076869504460855634959235311261108934506479591875347912115473687388933842488232679452716173214896878015116308336365278629690123607433931220210857239536624232732154742297798826815706128379050505978756176721292918258693695829610796909140528546089733979261128809186868590670483703042325206589358042921189075052637965038546666662639587127942928472095920096924272948921478048800190382334403939229240966237967341291519365818336140800996526163!
 2149200794506758826081116296081782113903736768138560674792305187196243132124735822167161308410429912068938627747639481302084426940047748591119527142378771731224203232685134233007121554031083191364226599719627329183265476675391875714248916296253077929435741695153130852475982738981528375278394342786723193194760603966037422408545909419670610965553827600623437735258755492366794859339844749861376719186115797798230127709575286823186386523245704290375893643546854669372874491115143541560242969520741051905415361788966608553525160205153259727090522179918282888582536470665164174040245091614990983167097527305131452374125318708422129174611545097504715542598607481084060190044299952045099056653048356792597654365797980647979547426890901417547669830644306915466631327863767856099183931899431381410760811175550579252240570342430404352334860216414152227030560922118112199139851038925694296926680638605672511630661920794028224108275106433584854095053960062113075740678288691364908463894715953835782!
 4797198752742912886184465933024993735549582182066568254936440512784133
00848353862639689168427001033571881411476751256418289003187360712064493656794753068774581936801329791083580884686917775698363058298781804400371623952944991497240584029455048212182094230805629780082282669155794354852585389283444611037075890681752454059356052398577631884079645554117218010380358579718971454475942661839690126584251386773057563835072248172420124569456545469026574190585268131019854167131460683725330542340254009795553622228153825577916083248023664930254517174273331335783626234164871552677767671883747573886404506167084804701829384141018261065651613783865828412862045224113720997543762954332602721248828666982190119867199745169693158790879740766803622899565179999131138799198982563803996709335484783591536656943177374752371121465188359624283492521132071842628438163948298474648940060575297162264771888869630789418161214094553966898176610227607815321656182746009227656570270016614572024702483372970532716474652489808300323790661825087761965209598107726024807055936941633978526!
 9019853484895977413887622039568311000768534063499771158593581155945824489929329988659086207961527217487193088351384769008699233970895357359852331702005631939901491637468091677428127117284961305221441675912056948624699944967154862244154665302917488380718341575241672141801979096715042960803629815493110280294086040169290953961404111572460020554784668787178370049170890381996668421720716515026271387488476527511258454672128573104000834943370773143837480217599350754235838701115945408601709207262477752053658989407429058904525891333871654300346401944906044386258000637833631683008674977111562552121058142280360050887232120341666952320326139620317156465796435041989015990508173694688955177335828298374308672313756388886173304163826306477881433125811825815264503912570261380241938817625769026897603233047401894413251659717593287430453203197532550635139367657909217099594285100501724111101904064900488687042298343014245193375390287741412766774282548011855532509882469316268032952760194255911463!
 4931987249618756095509713299118453782461524821716889627530703085193438
865
76156468749685471394727786335153461788582594186290882886061072458875371884209642302176701944097786799328665727731888498244088489053378858997255440201378148498475103858685852850361089102284893033874508107785558002598678582543393267032062898985797823635469533883538941614277656695363972203603902281376877577140011602554981555326896790376500117244296186860026551281660026189443246391957678325700711543386606564111028179804912287831222061242723000511706105262523107468314771498844990820460215890709716125327636178035858346660424897995619816972410527179968819031549729941759122943524502676003804092289214403589922318788599777945874170279000676628226323113871985995949490972412347041982393771786342514779208021008765289041781040786368449563013446499730639600862733320354676171739869538955495172259086448646835921054754546639962182549661405518247032416068438899259124330552679662854933874511692768660532225075160008208516711817253106841877150200970772866065743270197448658869376359803064433861413!
 0079734282848388884296445817365981615345883054044927027539057538416943815197201680875161924405955332866701510277862935314175082994460332759130096295388181374441647806792170009972407582551533369981123254549384676195079691642446300977571684176537955870384895395412385883320792450774343210619241196022783327688370376862271525401779077404108076211410174794364816814609669087620920306301268802773088084366958021589761547501810467585616115160497419258317202120804125660694053491932722135199395850872330722056688638124394806344672489282853084243145565208049657076364526561512327098194605505952918895029223115842492723028333613926225754322378402660010205467353334464683184518149347589420208583156633229969328424177135607714545476481450094195447997455933452440762289503198723201747171463576283394794840571310519968358497456346546708867982965286073742363112241254085166032876307532445979285535468161851337509343511868552953535694713880631863677816795233023525029727910666967556113793114506202600731!
 7736249327655464748421953811654722426671794242177257314015129737774964
87591001021841004927304521562859782801883205486978639443983574470153474788243366579955576269591799747383073948746221023819006125762939494042450878416047285359140580268228980120720387763884576980519460866725812009804501563766417821684302177749178241206588389233731904410716242982748269943896678371252152977969215546108155457996160664637857782616000331150818343863822818561713246002863149742116378701341651840515404543047992526917718996648703872088783810895956310040764873433039558491922318608417735418417622971429367800076614768617131910533930773585160663885361715286060306117633769730340886392763724537860017864354374229935777042023511610021439739409159628550535435587365658021492465349412236161203772131826062595392316815178412968130386383426630331513749106849135848208279144556545753034649132514642970283926877934037147746125191838013481637012151232923547560206368110262532210955525599326687922624037380557221702744722067947520195581093221817627861346990311309434415509236547199389466343!
 9758810670334187853934872857362447100332167039097699407347769100705399282485697767695806724314112704759282288341482118301467952570411482291290462199307814043927744341412228449399690933866512580885845808121394271928334696790886592877515470682031148978333183496361152101806866830586450895613059680278906920988390933305903370370901965011233165455036358220053666848718618836030212791948853406323386897904495121791537074412385441369173583914870715225254714622244765673323664751514839480851177821429840118717012708350612666112047852739535535997726521181795251225571268090728828923189005384913998668368968340611328453473531630368779999285257379299262599625470990758097644177040479078433487333239739959711174599981907408271798742995592882993891324518213312478223468232464549521724793632743940753315432995426906914955701871567989059741414379622808514007908205448396086219035258887992076580218993712282498257992282836228007456440535531018546406774645189358772722181546086917460431734105418933032105!
 1849798740221566839810332756139016139729505357355476665930567899622177
60944074785033107932486412143437656021273082677576200412154767412472982145927429806006064527469487836398568180822018656900031060747496227119948174285185246236756965022776802518420572642921599693360790321205773616500652649785163076004242862084017979700048717982136458990348942833766468220522752668438004854921902972409312994478028063167801410993719358468875756145318628459573076553264670596043494028746059132707700458146549962695995785744614068746658381471307328042032878039432362408765955499518197378398342145898566881856634439564088289987632224419921821938436021167422243258472698416958007559408656779122846336197178648251108957516972345928800827961976502135682735469179103901332616513932374370515889376493767849130976421253286094010084782179968216035845274955987408646116718375055403294981526336552087873911211714829030048618112561577551005731039423679781386559344250324021804548276042553324237864239891618498176493342905564030779332423661939073008753640547575348895739576420122318973445!
 2473502205835348871440663360411419726262364320360632352923500780791423681726921452745428627474707792636262425295402572204677467651555326450451251098015670279916505786877644473025532714486702503150707199870823390734384411175941613924913469763750219477868748245916108395634257321635338230557900443065058185454731140623388822150615822134504306743402249385780328456280341577641955575355440756820128131734392699247750605985232920055743132545774598698290047348174498925309833499377276046000152754384935534458754266716938699110477614242033658234536241976446477813496116808022777741903000159407460135312745911871189682940828647551894515335833026070999699409704102278867513499745721575564230631297149593347839335228220048205936419207124627942214350634327823736343247655483786714179647215746949049053754926594095129019544102567549673711848017483399297532436005095059790166537863822743342061477814349228360830783731481979100764242676240649842814586153209446543745951425412469437874873809806650887194!
 4177240853014114425716365212741068603677838165643875756799428627795310
92790713543867633087781659090223292548263376805083205588287469515530961332585431988198509277200699277114787783117242727698502507374184601632755895345206162608665749802579507804383153194167549926128514925000871570823700130267890838304643865608687529289297849111800988542478232549878452069958924585661257763240866914409911962556563197570503943221398347683164045139064935924231661432652203058804645447736005150290433100637654212732491305983367042586473932720021106659498892035258241964695470130155645299645466745962114507539757940668588648119881919198780191819348934584415148768081278082074668614732434063950991157744229111233503574063978819165619549555958896292829686736594142980289132227060385737884135713355424349127382232915551586894223583088759433334023810331483997992365267806381407568598809725141999062211224593211539895659504352444547421311398012819023810249228069722146541283458520038775983251325764247253487126601924638349754963281354192620661690348499666118634921093953352430309573!
 9874748917977445704763970361409363263975628263083301617350787063012418017841963168601206427388564662118490063986591966478339553849292810145956951122437515507287175131465328552806427556379291282013128605715729231497853199458341018189060252714876344124946295052956889193630836260233585369357176069031853113192357941952405968129354186340118778380345380318342152529705130895642573060741035028625706080794176662977009837821786182971315074518803264031063334951790233995705928233846264628866469517867285823641223480488278371149877101648009181713888102189514527971905932870436297571396747540262549508254173488994004082273007766552886276254134758970111748576371403122292145870014606578236049930497342391427147553354959839281628731286029836519588516542942920863349206500032976045229397355061947489959388566009113308344392645345467123412986957656576575122474400361952865424399790514655787400031306623291431056893178082928887545628507293798746514249895819537681643388537736079274226082228526364530628!
 2614216784552171627202781284530812420541303091159026490127962708798862
660
79149769168544315699520472533185776986488480351776031686545057743388159080366601947236973924204939017387345445998309584124950941670046286776135462334266547707208207391581429496735632089345179368837645387845143906472766955042733440180579497276427709359036855271329915949634593205217142950318099762956194003374303869249670294908270428394990689537381187989243771832476607207015906491622605257498186391553763673607143496326480184066883449524366537536536699794850794828019928382393164378748264367289993304624798084479452291775340074126155151678050213321207167635799352070820625106312093909792253182071980314255484617223557090560229514359354675979886675950270000122474149016232514639372585982366758345601606991591129559248107503777212654211310786413494662746305867256755367579363615938412630459433261978860890457866928577402380802703874298521362437793406447508418945563453531136063272691553844572265996586981045191248166842365360901984183276864713509471458855777857943688535112415010323036772763!
 2040906001761628505141610198617176996657204688758286311213744327292411701171409160493675465111907352764738121912711207603212752972803111812560811178105419096035252641816705683815483386970809441820888962155319632399115065142239509857475466788736522483860222884632214072538363671198595013031342268798000930930624887097284220521596491235344985077945944327015630339542102801211003071414504005179487068762081594618351149961616946988915624586614197521788504815934821875982843938379741029865066010594715408620580428354425979040177343786133943745690345857858115515101177055173013186420340494680937059790959564223543947661051613549246695715498314509771626825737349732075382723027085953181120016707020201646610586326842537811921301312526919857934238856339076111899426533634559642699420441027196425364297021418227770758913894027098832714024524396770177423691020159581923401631932412979583502018496215409735898121958581572562638097674378443875938828692056162255072216672059017071510075192385331315643!
 7114487249846726429526398173711497695145496455998026740544459733872197
69031242932731603286470441484002615294010174814843771058985295111066874071660118011815985280177566956313761561343267398035422836650874599051454038385466032979494699027105692947130283433466918409353410771628973597830843717851562487957992854742055454802043909546712686180989860758696859225205052181819581652941133486165311403967659046211982812140297187265231069565561016173702193793748605516295370480881543243865795518104705749075599354851948213830938563127999611919429566199698178632832983341247990188414526992469796745214964206219479088144332799877920047476454843761264558530918546915316832426047464410257882384531915461339824428326552689255358156190683882391626433345312800692756633702439270449416474197666024802928752550529968693505668297688693987446826557643733897618710657412338992518675532312057078733137646021715643457520117744656771495620785100203812934922504590361878716637906716334011505802904133831964981391180014493663448112727069530418425976011656770025423868464140349935224887!
 1100100420847900395883155992893202565871849375877145437534631217132250273673032707735673656842209000985474208629679709118173990883841211483906352626829618984378642161293732507297752762216738378588344385099099188966903708581032136605380740670551044463190288463433743462868472354418220261591880721991565129650051701114993569817600675580976392251329913948623512459652605965836686102636447281299773604881158144479138032688038039235275263147625790769737209248416139252818193937012199408506555359759439996939186108135828178149345574945338168301657763830900595895739369382923603655573085641261995944973053860482558126912632431929832914045262829997500947645581152761855267904190507126848609660521721431770777102048558943483887818925125558719207556916296444718235613008132037371530225894558799853463640321808211512327149751119390538805292720068335284918082239848933390956064239450924776149659999822232215477521433143626309027268619946300830096410793184029118901250203638024687633533249240769504914!
 7018056897731972487149290446790272611168077962706652210291052919915374
51518991969190779874863354874853341031617333607687570068673170459182316066291942734417100472034783915548209683205794665024513530750411103477810533006082684301676735185869839204623659701016118647846907998714920423612135703602691137683889241343427988886283408155294643356405020569091920308216972555285103789182127212333996989329450356315466921180722940912049300129294352147331199458533349544484006376553446994631075308647126693199194469316212132473473008237871430342809962279811978221757199483858074553310929616126300662744129220288272428655273969571238475247339759280587964451630671534046064881132697046833333493513429884672916791192461541117740562801775609070390770762096643480093007255829463144424712638354690155103252555185020658571239001940168789593646138891598803057764721382627216652182251739601063894853785267933388177508681428971227584745504284207230943057395127426562373975136906515897240211314686049013498053937136218487591356050930608201189316921107790443436114220396898369699053!
 9039490500935911117217422736745497824807652259965705229824994608933045821889499832063712313535055977249948066561801263157137505021113755852324480275647399916117528119505066225124210424228458634488049695088635230474391174970197888903637728967530609031201941933560901715845040528553035959424358009087708099800801114389741214384488675513891135997689923108970903126598997291757977702298444467250021298130905678705351739190276391375341631697671177064837254828048781393556354297850245337225385095116247159146431210706274791603609354809140792960350938834978326143622572356682107645612958115888681909445579870345665369812119708889019917746407153778071969496704440916967584567077087184635238606882421352078404437237373244696911059935522580202875743743732904582177401154785299813676210609170413648619554646430903900524403146528931213266099437941122533318826768362451263597596125108237429022697508203563295670862392696373953067225047943740903283903770934649301097103854720219932050069281565571879781!
 7273465619534635639546322259173172746985931961858708990146349072609645
55132188492931667624127221270206278386037154731805487980186438380511551642284281265943751060288609606596534420241313124396594740294133860229220573384260000572826898631958753808724200838518264216508664510866559640539635178848593789636937947806946519185936025934383712325735583499839806743918112637144374978258876996488731839413828852564086197955862301382988952439963033934334385948541993689164881064961941264024209686650776830482872099103064884537132104544428276210279881965043255084412849691871597195583277889454871213542071831391847439295870289960344715591319886513750422828143703420939406934514513501847558780149296092330814856894100246962107495551029158652929250029000239281006984246561009888185536951839843187568092909884829865388962192829703185701348729674654634700159739339224186256830739596406806099606051846191163069706209516632537831678445172852617849412708810312838566580137539239441445052334276507725234293892857065713828994295329056084252362434665237555009442502792618894576837!
 4389181357320514716372101078997948470731384645523442461770102182073840558882809275664912388124725245244288238081710683492993434852033958405364557577342719241706472725345095935604407536409207980600336484964739829004289044069318709906591477454913286493278308835242125117052573902771881261176413419132208075878770669978472457888613985056351966547485822756311082567438533195822596177089412131408081932576907910276697907511615254984099679342978136816846799408323864836348180870918554608579421267699007879701374034952180409002747668875942329720253830840517110667779928081531091928704875157142480465469162692603071561524061123772335062021703176917254435569366370824867108430625866681264036076041869153583005223455479383119407877117484062277233732901967795838567755781886215456746709096855131889085856618854935033182634285124555062515535538633088317214499216069454479114425351185340800918538358397222218324346270844925975597373011207863606387390124167391715412265336537780391605945656687235643795!
 5136515151556458225454399028629477215668047916678769223477655409611699
307
45838219326808471517535542389023784134052686923379139015324551558334955619142572266789712441212888599012473619871674097175479720525495101109133150692485209101345644347962499712483403486122363648152233933093998890704453673861428531942548568237506235454696484908204409635351451813646120112279558682618653720175783025356066777366241855640265418144645693477656151307064336376923503824255461297303724655942055979523319990918468109213322317170656542862383438198142481078070452653076947130838327132200932459317491890837416617909360212761623049868620452003897546960654358493440751172689054620256847991474715171334204578368743299230172340498568714083426589377416412518747579604153487884398818554937297806050323218358000106443844547576569016504345747202344920410443376282326749515087141018047973269235302600819455533162826093641764455092276328287587371499804211659617874036654683791917085976157331523691416891942136511321769622070726051008247197987167886779436512979434376475619510843188712804909596!
 3889329783508703621677849075810139668019431310334877832521608244731271654203977965764715312487545305901805096664050090014242120822010262252672993418405241817494214379266944746010578498114835835189363204079432531149561862735690099415256660505088208353672967273819743415026376546692859122660382771278813332603915448987447171619977294697102205540000958938028561045031783738944191830948687147013795851957626579772878457386440945963339647299387533821367793769263779865178705355256309683495123150115183918274770591344114877763340911546063079910782062460250167501863389422979847041472056679942595306629884304898491961479803617261125113439355977793178899524217149306060721640686101995059251734032018151469724814333825381760184901448500323825511722181461114385829395294991197004697680869640939143567661524289493496473416269602174024821398458506071867554271195380971887476555937429656625523038817197679307304289693541485126653933732580393001133823486025916259750441277166632426370691552803504711522!
 0440319870797437303386903121732105678868003196617386172672922094817101
98619507097047389030577986198284116120804705970259305502537762938983292502663149004847634074025749886792339297402439950362288435996708429988296613408007626778237729388252415990591468452461438818361034524367901653640919191259481841442990703321193399577023450493805518558607655106470448932472834055217418360578049980868101646968441105268084521650134997723545425902020979835500548461482620052625087092836918411564205943902479874683294033151280710569111259876756188511717063485067691913665207328962352921392251624308473023738852423954636966814360389708723683871247289246500863430845531913889723804792099459077543283968209908971960641037930129161581198789833675720546863760399463144550668275483414083714249419170508788135131290638451757667273368422225267784437888534073927251711391413728836914825562429094433351130378223841811066158311575203337608655335081162444070331513367586028406294474290451739357222520728444290425818126559000370104374266821908847370462175260358968932262802915120900438626!
 6019295022981847031615638589402434262397816547458434423427025776041350434635954116920570534922722161476053223435476519927547331246805787323243171708649010692787130253365493337828489206585085221662419006916050488058918122434227111685542674026158024140779981349060776199666174097637740921983646329275085148044187018300239708354734168897454800633129001440434113584542283066908990975414023136733794359869554213539319103482739240190416379242262251523432559128064376489484001405379554291424689223762088315054436492603599333394827126472584101151123781868811504568012639508106358638409034764543346687611008111392652642788119818007187103295399810032791168147808887623983100270187430778021008059283196348806430642011624054705871372785853088865589141747423436365858374666552180867501853554795470500477150788059094402552173283589465084810724015320266892309771060068355861975550676540823055187783071197950651167663400514759752541965575571722680525785877731913879848394118067375780908923832832292955584!
 5991544630232962843458314848089905403667700812271513418298269463231194
07414453918726233602124544548424513192861950826383476412841447601324938706976743455291089330413289763135153812190210914916543880575875549538366329442371326178758576313145038078893507277330843055855113742388294321234367818014669244447215731895920273152787489849398471394056420887475947047982489499716116073846170640218535106178131513527753289036633341930094829388635847121367638355717602829409645217884060267299458511793479706267290028879154858392714237457930020230401556584208216376907165869497488509328527006192695412579498135587295561871858269933681124115788853136591518757759690272193139114757689519320307343026786975334242003150486068173620853082557660537099312816778012713617655590081370055571051097347634873966584411443424529956867380021260544166098596274387362700287459619381911796415618053706916535408253307914485415054922965067112547131162480937227405876937738372974448049699364577112933862371776035716857403477703188748333517400397408458275114797433939250304814077903971777687833!
 1004016260925387101062996226522173840543754602556986460906748702698367616201494535274832603072488361870983428797993396798422735415899400015393736028102245065702619752401635615718509269376370612957790730023585180962147557240333249423573596657652820160212063005770586437229812619227323143649000542181396728432231662670504780492417431035844595368257440526775025087696183887087373802525173351438159087020386861257650499855810298685558681963461317694373850997658243439231557259091395199973870082824753473533628978782278079838878837013677541008336789053840222317569969230293455927119880049373983061667361205466331630215798876022227788597623074438606776942233693060878851859172673555150779030273263016382295123870911278819968439684644747779359873010213402012374980508330860844785685725662153129689959823227538287248430172633101199878490381234941629117988535423871240947877092144833772052666180681741241739732648317080064130792816005364483997196031967700218516045252596512240056246289051666988855!
 5007820025682553834357104428629166043597689469846789827885417516884227
65408098574156719628787494313969720546426825854987526155677193839303008225393616404199752562034719510776503430792271404926702798365901146957175950330024296655928064232542429452685469439479552308334479692882334355729464195989624151457090448150380070445733454056391962902312356475387083429558957632150818005628995728249200622953089865396520248659054910993891889027982363394515399502602868557142049498025277054236141802044785303093523603970837048823821731865547069393880755087662535335555424405302067836478523778482801837681272777644502571614849086049080369446573705259500740581000534149539088211067468084624053527168000760540990181514626099521936900534249629600378829345528053631476713854436776256795524342732080072399667125094125195978674904029191668177841142311396626866669142619982429595476623187483799787475344310838488484801493260794278764996181663539076838892176443934036625679433084734982308119652254497745223436708372830778330925170958072973239453663535123176118550892600944965919459!
 0513554787091495192412214807629358386057696857830121761726720609008086587563555459908902255943357501098137962558579750923348422006487705182742777623287602990805775912214191081675547436936905984632554776881389262585793270883060182314812749075268068120949061694520108866835239752651307705180091632263555161308647525491831711620593548580462096944188231291160367051998852078555761490646111094963716515443999192319934340861855208181187605430379197330884821518500791185940585681326556907916400363522715375044067787122706017719975619178148088612787393523448315527479083053991163475014836534393563172935520628835896640788033073452841187112977671173436390194728120688749193312311435479827180359795319597616220992776014825052811838723583783553057197330404897432234192538328107954618873442982658316153587659103556831519964097863857458275066013771805580671389107836406051881730169405234251730941624855307639828232273428865862910290355532536641522717351603192449195096545297961769626250503269175685424!
 2166600857877341821841910032977318157569240250630828072782703248385805
590
80186416230316393106426522184757350748757386438378891612557636787447151089898494961348968783285900223753820225193367354492382050327639619665419831243173203536353170255248206754479466996121409004016180379782381596439538946913235739355878939296381857134984259420692887063685070037228884526229121038027189681066182549985778025975036625347553207189849644093509007592511527286978054353288623081002225250294960904986598469054293215013225000210306772800123305569910399089742233246116303064030004826732346436260988305104786996999008190954792765430986086020290753254413989549604533239116995950677678916256648087330235161642102102967840360631854311983380914283879822782516889231118982556871460144375731234621151908371382891330523854950751977917771018672912434956439815343562511485142471074377608302282293454860718061011798612980445619116219103101326465101811675320596591606980831856851906406720446013613662153323107149981268007778986931206506321306522201281942469824323201689682918870823307858263605!
 0726714736435635153573862511299872281108764471579681162583347060146049078506509072812823375088304267399852223373719754149207868987236146325070108441258225416986483686347974828206629349227501489651527898219385546174977871488316566111302304965710116513309735553184880353866156566561965613194747642965712190309650152701905492725684516182300289393866514980343542405573904496783863871322644840567060155981673913403671396383148918346064423353763962311479041098846173691576148065928582134056252580154428502627451906755262354020438177512926405184681966659336967806958791162855593022545758070830763246421315489959253547184537387639852809818034555230788551606077563016113320249745235158237295975401388316215590628613329524248159287881637547336105561955568256412761594959379026995767319825734635282620448951834254366951898417009819610910356217417198511177499162968731243311432593072024572644777953332014909236338536949734142047516692881433201536288818936584248398416967638151568044990895569737572716!
 9656362710989155281214596566716013996846290525553649526030290657591403
18323173470305084671075184693982880983104088336542411600689713557689322265707840639845291166371200085540243611707155665225789932105731828587279863685393542995579115286170144252093818424342929847463089375837639246939576195451019403065432862977930456797065183842448195244173320212696573550899609648421959931149112418551159941715600164560166896039910689614801679721643320715636043533524103138521323028914529813219434533145394933994498425662046043717354979324038628235647896228510626015334180079034730487111802410889357078132536184519530584185389764028750491776880878184508460801964883329452308937801953863454892584392773261133762235851012039671644430179881371423051694975732487277022685836645841491321953483821222369935473575146921300953964826827923088356475461123228773744836722873675491294569301050650965605768068697498968477949147388212710861345536844019677017040103779915089242709868942895398036372445428866562838388857848132684367148953483846808262624872005126354634255341892446897257484!
 3769143400925883103227892135039950372760406556001431301062663610492405893567754324315383765843698139217478567399387097402800071429846717533399509490306927714648517801365515484810202852516030400580070273802277945482120728370337083907556375233997454014760278712765226220472614518269465658337597637081504038158243447267341939280577258220374162893646727603176738600044739024956704066438749277753200447721708659558282848390675632422340255534467558437884110136434441154421163728891034658381548275951280426839026175092322801977449632313147190454130146133951577404122156292530844123807293251134398826374006360108515038992680519369951451674316423391532093192611745463913730006994770303476652918275125541045491800713181252437763023899839537357084296064004810265653349014177119753957906437701301532607687393671303984666862077358836924898766042663464636055347105128114536065668377593759152717026409453669015621130213494201167518353672447443793011525897408301979162736097441396353609631708328101178317!
 1550638345501383964167948660041793061707419619604453384588052354738894
66861350675277152671625332948271545300831093307156087329699469822647307579270873012658437872327720868594921641078284996697671161298874939918194415588564142808572290329198744774148927965683938355440204651097178098624367199430741208144990223920747707644831008879690871446548773367940938994385266076115011795527696665924626479579112088205757465610007307505874090223387846083436513532354848734770847687319858890124199644331250879350114502948809429726606464645615322161200932983644343993320417838166682080704390998703051060062013043800176209985852827858808725463832636116963877576021768120571037006824774621649360426563691611700189255422784728942937304402081016516256093411231708029748812747462396309040980929043431050263918887257296192330888901699026088748498122447582849172768792605501876436179874549144387956761750572443561533088481904584224065594242841755407806281058959026090511213250815157984792374595695217211003603434781346309463652934221481602128657461614367736209120875721295698452347!
 1794111861017967896590004125828524607295661895041955221146040663750350301755442242255675746618828382480974931265987789498511469336501046034232937709196849740692477943482912670766547442527153308013892621404275613252657669948686218833711479616173060147793282851422912598224872330113634563928645286473231742616747051425909898726009991440930318707534111034143720979861895694786713999667144380863563172913082300145386022935100257916024766516207250557773807921193436746842408016920935585996939932347465195795888642897649882874818946469828431472380243853282144192579303750544172945330958471972273539942884372270134826648903651820001193415638476401305699130180949827009590395634500621234759458915731583850487446850987340733756977859728689707381263911467807571983573745710674834067668895534569751197716833404183834496084410085857802772913376557938998216460397066035338637595916497046775141829699253576978726734425750485308786517130015708994138196373056270095946891318863460758183399511956305567158!
 1692895264271775940211926547913156626023776521902322697461705377599712
57707599401821118410114770292846567589571489463866804942914663011159203484212964619932139302489834620930350948660517712953303290360205904576050492204707220795235096320713037239344667747887558025738906380271921820578406005764260406986140320898761399178387241141620305661501517256751833275507252374378534876330814225927518461579582025532738731424966772347299813023874062954213837499194332754954565816471774249572093187545517123438457176254981495140955274954137886799674781217655735026687516720402662472712329838780078299174622198532193313549935827228009856321740244322496198420837532753186560533138971008634945013728791775217753733209369664505407046597626993591953622685174451271260806517721767553185094426482937179889732861789333628940795004388467214796453730221989962048472402127735127609291966830371372599294464048454339467372941711085185474258266707216522594349000528422697494740090323859772292993623952641347711851611785140001717704478026799978936194318449162526431492398103085141019295!
 2453172407994957953172026031366114486994987703834443111530460021151779248481527696464941177017743269482287856975323728787096417834112787129787844648899730039194756969057325283022170385289029697001163204741805505745557074385569486119427622746570349420775235647223069821545075989174033921019164443859569208868743056737212419479654782278758111258862701530695396602920872663971100433682081160688279049330223019538197478926398030197975880473135120096819162606881353075689009089290408579529179927054791564554447591599987681976518024522666072372750995300863204088761287341251611082514048117049162139974555015025674489341575824359328625587489847006207552666342779218573170889431293852634483109392102614685209446461645346250265336169953850612021957626282049178236530640462545037982287150066841774656786900102216276991510684556310433830437456738903467983479001870125935541222059709876807533494732873863530880509485555700544230638718484661421904265903749417820496841832580945176247183596384268003347!
 6918896947712750364052124856073363174427971573275974457108204904495273
618
00263963900645920935029332674759429867986603057894436785543713183290597070840160047077622926524142000488720656966947292997576765678837563582730043779013429723759117087331573535271569943266813651017168891708884556052074938455756119871107535368181248853147005265492281581216143163959727272904428955666656646001765441002147717239807018408811530173038637860942445448691688976895495112886219316063684463412889711551303367944839998984512103247539705791875567653485267978116585335435772040546325100198490204746536785107597647907242732196142750370830076958641182055398164728570741682410463199662813318803995227696229404813479525332657448967480026183013015886957376661206080721088166989132633598005454328738531510838108471677561338521120145121303840065781357599113998554544113535371126713916814690531200601000940402106770657406689438216325854020768268737908554773551525974280510628338552044514004286147828648905660671660715327476466909326966269737488338624695777940857205235853696666303556732575703!
 7150957145056886542830821312228484116565711772002281490815451367808494728748492116474302906281688663319595591514269587679952733184688327651336808094536423477993537482971537567973202267058972668850883180563049061762312069862854699033301390148978904657333522559023017340264766502541787628309448025975877358889022228836955241620093501932877750389966193153906607133271620392945169321470817955216790698134251377898650236475161163567060756805209783809859752176187309499873633138950643838238001625178673837142756254802196189201067167842399900570137660966096531799254776135039307509943891416832884160558474146186568134127472962819838671638787723871192826593032553085006599493976237941106329589390886284681653711581085910953526462020561933386725745151640437440130850298528933060734413354278385106189980126496635802989331964514765027266787965760549066280105617778976617075705455859145775736514263410820338456307541875854985102929956045122556230476969395556605526273236088233706061584052081047837048!
 7876885238843062212218997089933412026748675198848285640955432536278756
06283789240783868802012024779617105442100750837418130974752617427852595523534684118283067523856879719206709538672824429824500783478401595318826809001558318001845870454956623175980350574115662250291867577307330009402927877066705297671149496981151499342074460517484624203312917312544268230139082726122896704845124910791028835366749952240778125271176006167061773111547531768046800737578213790161212026682733597102864045083922073362084700141033827116151997643402342831494802786725630083241692422803714104117424775312799868761108250444519157195723117570759357560705155455617378515655090954531510243002879560177765337363444721676644256075612745282430482269285562281168680872611892911673825638118034212904942051498506243084441200809675541124806140615977547412136114205555438109806156447664907820257493812943280428386128570942330955183417580426612295838142247436289153360233071677223703518218846477683824736523484758591677233516826956699693753018774556933465107865666367237485592063962619994581678!
 8029742406557861336244242270238969007581138899689314047535579372495334360992212481388521938930168076849421404176143117797707760790344871010565848520612768136656418834018786850733686131987285815544419753759162735206433111515788263582337760175714227561257926575956420825839933147034241724276375515280142799031396282246313304498420492927745970721892624719873554403657759617645380382836328293797784716715621207421321773370973339811236143120184594547987894476613191047040202920172885826023342245424618888741494357218195061761968112382047813981667635686066528034538796542733003467547974104939624007792047310880361478375296133409249385884629886246076042731829519817268836669311114787929206698295292757913610754988645246741102308882327442979323884793362959732117555155060512046271711935564363378315056609876589800073178462879943980809078012274712764969998313114330887638151900602349474712932392137376292249810648123014904873738182906538368292588251023236747832659315085905261063759039943518613979!
 8284630318503113132181520785051946218943347646195241633334432644836560
71253484397025203997101021949999292981368561334215197602987145835757006957468169988195185209028142123932188867286774623174676987874608808092307178927726436008870307156207418733121739712880641182184354446314818654809010000688759976922801448628846860286780229113966132615453307306947594540988323655657691075871900963814386605196826629545483208033337544101937069138531023638335103085128239949917132910238197334072085037309742462688120804959627809061758529370310955855849806870861945839764266553048177149921846219863642815308015743395086820833580236523771710272170937384949397706850096580470419818816525518824145827118749011580994191933377488028179216545111806331646189410997630639183929156369753737341642361989282716213001048670604480394540744015756825596470685763120432073043496140215882631649102431537284341050272746484585690764362741857076601755780339892285861664141008505634795910010984252454894736007460686464077243739838677952551683077681917825399231342082956609751647250868900175402743!
 5109741069926232837134602055794336378269329117458180602422207701642813424632639244515367611701811319289890344288643209730806826540103471251557062633913036537875678090557806423256176640295502399722199932177394622110178692599213625729796840206991567554034221908429017745183563645157235270711606931700092378187721924008023006107226197950135188953763710934316759571679785219698518772265141701304394907726974473501970961732435714764636873954099779293323024599983897702055490877570142660548905069926094640092899454336122195052841889306403740146269975052173450235119770186790365255315263471664367695951893053671296944178755066086572614658320387129825272795970239877523453522709508239743016263251768525648392242557136837411502281763811724007704748494018692844938199483032015959627260276157975824436908286944123777657561090847189545208919526403413044197607577240981667758001656813617403988675935725684873448769423657563299920746013614214978250157157844696480322522486928782711473600138940591975916!
 2464941817691813551066907324633580739980985911702461880713259773326583
36082132873645379400362708444670086288738896534668560502340493951936919853765679890526235278301049974045002878608177361773905487196962422589445671424655508385697269401700858713467365944190017560694144241266304001384122412949632762583863752974250247333221649480439560147773224432985822022573642320053102561069660515811204960348649660951106247817656947291479868486958122267367735242621690103728672849916261907953481168562743312479733570882559079607032581853444936533029412415588055981859952421528806227534850858331456407850940240853972605959413037420872901053237791982816126097678767151938532089303460361873851404856547608961244126788372654368830308447498917179289752441345742668624244409457985516370399510506184834210771469167506518709028710868418258072053286114255276854615192714608731939629465150973553859103718306317889024887215864294908520394799315458189585165116116925685038424226552763558851024541826513342686562739869668463063085436478112185259633677316592192142853948137672266088428!
 0839171635103666157225665923178610372648348159247322599488323448735404573662354005878285302912517897926183865248598709377818232547482224258353093459721890013123432622888581764283401121685677355890167932889104324241570902923661321762920575887665528835764767058396627197306586096675275014898858677817232566428846643267565452052090442216315094153639043581531603508151734293223504753770774125018357717960240638835888190216482601698549189092339495603506874301686006711212430371497043984749129981126290329275396702325714937933737515686395001645407630415522982238657469946540690421580619018217543757361144329148923012839491440277824192949990808005843420205905445766552350060655457415174930799365793145532857467206609667281426540573008146684980913707038947136836635623927615229503145617735522093887855455947686517370398323211782251737472020839349138908467938601988330520901074797932228915933142274716955097005230729182736492794713032229357366535194169372541993345727965741739379613100557833081123!
 7070024246488500540557969405576153864740320115523468310264946121704704
822
86100679576086994024299906114885252033890667076087886149697939984861275008276474898957332141942038040508279599369740240074964201675688569904215101988355468829136848848065734355164318882060920814125462532912453902158454500898435575387756384815579815989244226403269001472153283869326852521874333250415029374252739986920421804254522895840996530407107822291443108040736674206391841437925499771634442761379243514719143532465050054325774706797562455187652877737517740206883538950830828524108570058441887598091699504897931526346953142725962197793883027941224224587392009829572818009671728936986471413408506074161382302153551562204804487107233927202139400649680759584724918011764861706707021190423608016828645564728444079613774845231086817084422835113329223461181688674343428382967357824820498549371847709904574194779846668933913381275352472607468204508213311856164908751253853961646180445616357633213592269678763411664417732790663535959754184711044112390992678803992435100473331079079990267719348!
 1090832835884864289545523906043859308284567064122446721146119143522030272604291147194351924077369820585827103339185990419798893653917028255742404567543182038535309748098664900879801782877086832876369569720990590489891329967247632141940744415513123184614065377174000397252714522573419173789874759202111289492445364718730191199814405359057489521398432752493905562192042208722515301481839147253467721203367658523464064825233816439706074254672064576059615634847865714956963731661047562612775674945156180247459488422906689487653922536712164191721811047675174999529266476251634015340122533281765866915177452171629815790085010054569186788865754969766536325946026546999099866362752352779452544672722571810457575811018728209637395689504593775815657618557782276267737263764329859699641674747120388039271983304788805334003288758334785781755306793025264111525265155572361031247282516343814554725896726745838945608796094133985260467306191492723698729354527014385034516518389950726137102364626907678998!
 2973082176251553405130741409975049030656100087596266214496305154111222
08530133271364231271060638020285073090169289966602094743618356970425050796789987134514127126871047178434712185500796447066264589596144580245838768660848574756393373855031913646563781308061679274857084951672505584123389944713753704149565872705131956875200954809299438975493902086641534593198700904194576707516879753015618223514791734267399362161078713924460254416266239047740890801858952447031096761703799558306029354551694298153265635234682847378894166329787061836001473339962681382732709837718377898908320395328791322461741053725553692935351285826545591367523090541030567757562853715216334917722061951965441311009234662616528699365878400984681547020443104704497327481522525198508737978801465840205817628020097907835080771372689061613918228868596543305563034078022260751115220136955814172513175378712925367863262188952879213895024509447490627082062969888368013925662621861975060162895296201489098702823166697340782779774345828863113645648647438968122592119729692841702356018265097351376184!
 0223391965371688854253638766398271734903932265209827292005893364206632462828040807001496854439929094427218365284667019581564940588195650902740016380810732367248700481255036004925616765609298244885404864434912858292502481212647434694201222672350596109620968270217148868814333640280168378104156012015163873699361262620625405174789728561959844018885511430261758966450112898960014375770825793787686169187387620936914265973320146578749304044997788105004091820211359289999280046385984578240240357911840708548388461463766682458047055708191982002475904608019654403088511076353710240076202374343093156230339221061731914025580386338036236222156523646824617246241232357554695390548743257627873416929455063366410301002304802407858096510411051396441700132923348615897387229310724393020834401705460124787775948110199087466369842827684772752756665720475286835485777102871700563194489662442639132874788706589497301751285148353771400313014910942996148336951428998883911395883596409254531900508095154012314!
 3763182151038378513131440761712034722143120026602603749661954359227736
95039641778848832205940235697087274343284849361034852658484901876354312484823371059313784287653958659406508164763624101430195634364112686832503627420094101965728879322389064573449602896162654985145786646156450817970366816496657100814337027779430974882818846637245740875005526011267959019834933477338246562058318315152905461282432113137929136945334911429088904045703395912459777983237913585650842650521209450475992459272854014308231078886960332082963250886176125471751442032850941199487440979290487084225612336316320131109664559660569266383101919933577824243088407501340322857946229253787009814043947380174619928522859581005849448423989409370285561938896225915790381799456880918800172254270218183872576675517790299719832982276289603097312705428809136954536042477638532603454598235552493102845836614010295634513529253280041481231017606170962790614059306023917730457429471373062815085903917132038052509822295609974084970872785094964771251486724896840136203045122994045764934629274742303496930!
 9662943533310414055050838629981040377063301610194681200844201931049254275832379808846597160987556311006256545971717191205083735687093655876503286764019974703691307400286635136997074168523820991845349154584091508559710589303563248016031040561930484463437025450675243692500887970506022260621631325957274485148639428697070440425418638047990011358141196153392343200420136759341895095714539407398951776814941943671939850859908548568110072454592515035934004681740644776747125784463274139670295143053266592183609471393347310846609177180275431015333595480762107676512623877738854151813459324913643323704688638537008282290003260713921861597728996399463034662956011156537198272718817379677297890685321000894445927683040843448536220511588436252542108839539187020293656368694185014502231902127615524928149887510898750030533538525106371341913859368965297805857996548185769793293752703906538451233119551417082465913012325500337954059184251392964522380214111301160051093144924561111005208652884080113578!
 5094119010995862965540385709515727546083030866173436351381493987116362
67905339707215682369269635590487002125452316293995473428629036062131675908949504645054491222185853089113219502426671328837442839069361001472420711953703971426971710907406629766515291396127793029042959732145825839233834339680971017448397997836512404777567158469094565003039742911332904816404078122820938375565301157124126874520150969525620296645981501408684642681900251408843659951737702818327481444333063047548862482385490474486517908455831991010980879938020712061633624654231795196505057614931068490105135947567755264875021372022320970603503907480352308120431546094142474722389809271273718493633424411887395908769472530030211607515852257502098874310299982367283374278395939606517612118947502458866487487677570136810930745959448854015555330775343376103056612821345021966286356591424390200983656639653975459973360589880242520799419379803819498579627476604594190601289022550888319577901404465773786339394317298235276761780123379562018323348500621247996967174090406290348204881187031677747494!
 8485221720943662583492824332586584168250969419944278984039310297380391989202930757140010345561758654362618130240057578129178458945371955752439770992188650039963052022184853111128512633401008945453867946070196409542240452018854568607505387698517144665858574453022551076047083400943845774733818840225971702014480078733960491412912880919082571323587263365950851026937374521198354552326929933209699408768444268951575680393474906483468076177638051696199539874254193304930313760839361871802437965391435928673240281127972646521968824156932395596970874393191892642105230872151747607132272705254679858074849604389469033307174296728582223473429229931144513132399271299976991010173051060297308626470457307407039413872100767675257345228574748614571324568998027961612134743138807023900866353878063986474340167097390742677297147934288356942840646494857465635642700691945858398668710750808995429371114451513508184669349837306186270925554951153570574344186883521473394639369549324155783886934038454618118!
 8549975591248928714487977220050490182043992842194976447395093573314056
843
03358235089668701116373554428389920652013395470673874309700981651319255408988515186779563919245118516016925388230152313307825014080963628562263570004073375852642092921968440770342567082088287446223291478430096617220337300688796383202093299862835316415777713763575856002260240556131342039968484121608609703846379388694411334382193331159662232342269105695375483437325281774073944523900144947681878686071844817666221903641834876453416845858051142335833151182148560386723588676947648575828594409268023151633588874677953048235130286102061673882806852444346915043198481469015998087866479966835091844275888281394003824385109027731450044476250909570451804749490841354694012742373823687131748249505320071855509810411096424562051283639601495293300669700187242440035910271979552315498140425079907902114505795151213331255436003992022053004009219920888206188121079064464127785064237020677433235923426572936303644433193679407404589187501482868933564971147431236245679245487767036388480602344378729105915!
 8728330081664675301921395510829529311134293704756572966059275599567648821432809033838203471747683617855899454267457194012617485547927708184876006136723351718059088933960106074274844542574946306154604185554849258621400543027081103491362457424548902642088784629907807207855877816324219086642454899512526286299834068948698325251533377572130400405595627962159195660786443294353708784649524155163509181789096227975776276527079928551376140744727874149823643884419973070210944877894996483185322467110597859908282033628961967428957446017275474491304080339766251827145575146599305774452703826489086773229852733987883500865880230665640574426620524415627325725948630632108728595995410846751841786388804229240914955977888061636294947438143729219125704672760318577649176275870724522349066266447111610960198795651643273853993233957139710879403181054284786487512986715508937552862807066894324113064187795946879229473370818370753459815194312942480648316391519314152997258620167894042686390966926342034659!
 5971145663666870114923953451380261473141177542273537686901719961468782
36105852121546284199882433818742825062386552944506700249396046720511652021113287690258449114264688645849182087309627525235383700711291553049731574110434942048258189077325819381767405199372648294944351150816021183856472733029559052540052405426784289594107058549847582536091373284183004310999980537575880452993177338820178730761783673895797122058865718085645183141889782213090110596008738174092504543898498131372288478456877402126344779893462018876194233301633239589549886608578304286322536313276505078662337393118458937848916355045591056321631538543917271753441482842529341726047562095417857862801122085170463345118052879002656739267273218537329933841962971670390608428175299242124092452798493657939738502799746414778419525323708163461284316087149312648273175711690324621125414321959289121609542091286398169307363499208159761953945134418359638018086515542842838746669894481713016737849263200283385341794015948003527523473785389912110428420127457169314146050317750667209991559967529440237689!
 8973780030132019702601999408408141624127341211290702679228880105039889144014787438903513268009247963131292995183670118362166851741578394977095728886594141057122128961631668382346223564552752489229754283912132148089850506230881874171247377512278717664014107609700611731576889697397808247490882701166455158037270169130241436382714139143139581910307210725848531849600157858810552139793439957172453273882267721821826089011126424569417215509958639213499656284867656549345992627614280830591734337544276017217706954566196443919825632232804651803617046615861746821908404107365494651262359932948036787967674175024460939636433494992399698250044187701152607949262595499014934910058489510750368579064128129679209540505058643763529226279534408904327943122811564099771600948270925933201659033880063354605571620508603935443715276547371664006452767036394646857114997518244943508036155822005919639828917617590195993678832768775722067794689550235868141063261350692535579997969826104556072066557926453836358!
 7715290903244093789266722408945629892326660428670590830208650643073230
86092706940315510400908861737861146437390267910496422172869089645812014709196866719574075328257740031319303340797771240335729708328117608963235280906293147540013786149752170084018048924453871628629879437078850220649221918312985442171600440672238700679620877785773079667313652242397495629741373213886934312314126492889753704039143885309419482347257573575082131606978207304567512718195899225781473501564937985211599122011931363371883734326919038739408347408807808618933203340038541426204002170226306141063001923551993124425668778018414043893394439963983869167397268486193654181411810618819075167369748919184308267699618365672302685469377291549329809811897197039153878223287966118300280792512839331335634990940924556415093874622652543512748088893542130906487834135015640821037683523441090138270451286070156479218749102504734353381687721448426750745753871463284521458122212902353734240316902677533590972323876613760816274421282231500411773337020936800111679697990190022421858798813801841764435!
 0761529007258024803071704023650976871381813577466975515682076926854433890436487235458499432315670026367053013938262779334569318896185801814120127200531110912753143764316441627498244193079035151544114394212947869972343165844994372468298583112340891526606128575981096016536422398562162486026465449435036898797278359737367677720511255924142433282494663877515948249254444090165237051910869705980256791572089109415003546527651586810435383910409166538408969032747233653254559676949231462955491241056518652783127314549712863325916884736054320111630614931164750169187104455343210114753961201208960047733657801249327284898816064811834060289109446871456536589487185184094242085873474848354631719129086038143178607737567774530686440616050130957351927054720997409455631745106508378423202629259510271673285497274664959247904141485485532102174268226769714083772306196937165905373082776026245730573003640678566533844269943377623681056037248229778233542764125763361976204158438298288398524594050980199087!
 3576174275355942936181005755789124138641440177092280644521576074980456
90171274563549669522250009992878979702243747512373136216548404065770308687138106952388299840174073471880548564754530657139636842830222403546568985999306640609600912690393190367092809100830079806602403635660462697891253014446621534258190069078961865789953041146492589111239341081814597289879352060072770102750164195638945308662393856300864079274440286790300292895458117215454454239477051401777562476113552327882671639555348073884563129695427650551147926548304501867524481320928319785021811033057511255663546375578850635880147564460998310529271693156912992014854282377894972180827467722897460149517634778467447580636254563127497444008601521788496795258516809406810251627224472481218876181688583608918256837247807592239605732556960070089270696136209523577764005038517235502960095380899309314895661781399725910315851517094094247223956983919930357720881142204612955980697580386000108218817807262559692379544640055874870301749740329251835844503963082013701173567857447872489896937671738609308473!
 9271099669104855118744355764567097969102496563621292580216316869624570322780080980397419902674666718250869911879169706861385970108651684900600534297212761991921432332985300953365349105450398651568452837236071190047908559220509430023193762487433641980851675122831444483384181943948966825373122619889981057645644657323176598003431782061248141582698871309607073602301653958965684122970787938459532734140600345735663991736702241931148747787179295882424615426484402316608561418632575112017294528281891603381941091387241293345337840827502770470797239026052396353262340919259356645301321145894595824062423365300058944974041811002189158388573883227196596518937771394719292680280164462955171178966793234870133038241754630900941746171283920028328849677048438312680075400810863253368735214837984336396308966059021842633276049379880763493055195606400169205957052891847824871585488175825549532471459756366803107415113100715746768563589132253734036466091989738674767298427273129490197599918566481009295!
 3997773131562142326233365430149935894695566017278081002679048338756785
592
78667828064359201876241556100969678960042815971782394665947163404153482875664246218462902836910764995422945394627201497680557604124951577958450287162959550489479363353159674071172287564056634489837243954336954685486142990987484173719026501691038596414658416843125121800047606843277297271540804761751935942409856789429217230413093043414144824621536899776846472846693863560567918249482482652265865296015319130246066720423316989014308542319040420582108554840243882788045154919553408172204032886705360518897297336296682656428828359926804945768652663563462347768425975431397668895313354568998080750781225491613594958620707484150128546602009699271229820527710491326269052537316894235988458905597086595002308557620314622726019373339379337617670473160248282058586129929242565162355257544479201355627326509907827435975337844312518651891823056788744197263817456760355201208124631349104649576647028321218467615343216877331380395957026719409685840132669926325891914319705718414155848660302038452815111!
 7818225452225250695325812876729304252119146206807270897437711972199270467802674436145295844176708939152150257944770573166914526004100958693525746725685498931375214763614234831583737808389245722495137212634296092865111081185729695342506206465049858900797342417015068579089347641137099995044551733967113193610877058642021448523331341294347323738648814943666120388613391623981086798501539413974837452112209408894948790844889633348026589509638632776065225701403339271180317273019607900913068392036413868955390460409150888060204376245243528298906893073007189850389870068206823862226577676969161467227930069631542418397902172143687105842753834967262281736249206484930802122023684710685719409028572180864396282259792870863811924270206997679668611338861571623884951484656211736551812732387780201715298634020344354206858564415840127390045914111543746089088173042812111326296134325315392599285818908520157238831310331294644303243680880039799535520102912956704451175488446048671949182761450091875956!
 0402462780493604400128026929927263768145566822167801058122462233086279
52811769342967199733608812142917430346663017069380308960235608604360088161061742933982693526115847356486364317584679367865215373194360667217347832779375020070184261105641305058445642178142059872699760765517993381240206965604451235964693391348923764349585871721874057837018544518170986190922320552396195557820641663757921952995929028475072104450157526271810924069051242319017643675954683902113720044764221010918015740053293391429270010975952346408674871816119501838339820225027408303009788456142608047496400579851967987698504720243584984146400043584401976789855026550958985413886566323391719290458158178940811896817298169606302522480419470044936103901548073208755017453460340099286628755586238357537928334607793742194523449994415632632761288909480879081985925114738043577768733017831528304469280659633523276133404089449849492924836887828654712112862546713429585778070518530046056150108952479163208548865055965667388343381756290830256339378256095293628380134117308296514410110500954105844638!
 8790244772761688866880038929655197809089718472901642351341911087287991404913050223043607794967366298868950470866227848359354923104026973266439056290540845740624632690798355915624097903517966997095941951687568485046913528863173850106353764141167379358808952338907970626473368740308262528311469761172001704064784929063562359822302769154783327232764597997647704072744277210306788846839872043822923218566987144686887130180747603766611134804905479358278182958077329789951435569371569838825782271873427070410074451107330303483702675235243661275819691866086622078296349517613524887252666025376121553076324862272956230385240164941843788556303785020041063415478309647167143623119607212111892244582221431275431558743150411651035643258589873203287480330752093476246694163141897658580740153252052643678597848656684695815090327526754466719117097040548954230395222731547629676659914007732248566274143270933609713024191262781605248744716086009384297848697622616145743325080834653395201942985671132045827!
 1293033541885459735488411224515446809826937868314484668717854149336687
45042241536565691514550008277035240497018171336006165738696454453181309621537022896446253000309596786307122371430559385688253973077813730720140663494101498809675817101505079876291156885656996180801411437978346982865021399563597232542855018223155536948952872821378793346886962749114216181202507688231825829473533405571622792008728463669550621579593958131558749916260522276975499511292036985744654018523717792816540722993288896293335863995751188545901316915056719364001912663077942284914344544085048110968304858583858018439422784271537229135849905391341883874394489265987652544390510932050543721676268073632590003666813039250454029788105884714200747078376946105878137765061373354857595057933113132344603639879286346750913830015789143901074446427686491314163252847027740200319879381698245146536899852013283326443226018424901349288336611266270660003320987796641131805255769796677577830100975834337884158768903885586388884223306806485198369225639955903907295870795044309892075875908834425869646!
 0485905901736096550625944513887906711676598104891839144283569641858683105522072426560942732631505943013764032799251684175943259562280162391996098912191752766528002264060562869010737274954270975609623624216717608694189209272601680921041660472246138273390448895948579561911700593393299351961979414582121787528043843226443250682026419528209409499864727085104047036245891989710234092190611886232259408415304898476064130919270684853059072202012939089335109398742543775555092265172190659522549707232808006701172164819138417546681244908204775155959061373751348653416561856211639539892749627977000581550033056088792925455822438748600318069574964791844103565819226960643123348690571709646212989596022851546711693524823948580434504479848707998546028525082095902078758936423090387105224353587700732584260184381534974402901693935221255816846121060945271154682099839354893709290340732603648594887832177976688886769702993463543547241323404135985202410310228714006900482079795031901957285838892319441636!
 1527401306116083480054194882883146902628390341907312230635529856796011
47039012536378840859288480952640535132225212597354296234482007885503087609334535343452872041549794065154583299406416601831306487978568351403316047693085111963881058051096473426879121242194619373335256863960223011914434060732265600643553113073404275179927765490487508557814618934342974440724198389025583227645847261217016471029709003281507848297239946791908917639438823775910467705187073884922792795939502737134375260172877352951082780570730588353920330339639622673677635897993468675962993748286794013281909651160615892521988757446151400898795110823114840843713184618121889990524598715055294524566708111429603140338684344468199559906828024366534927036677708676149650793803912393489430202667428880146880187887140276202048582847976392016578150961753533300248302981617811971299555037562525200799443238064080800454580465538346068396962773731049082254043528161260963459198487265543093258538239154940205523829592097240270567417786597692991691792724486859515818352933665638485731407239772399541621!
 0509308562033225872819873916359358928466766044385450367995320263106129847895506170692155613366414224110371653335827007177970272898036892886737536002546799208070044570810864883093211324038378011295295853418623940698953227951069002404673228565710089077098748685655052629725394132682465613836479347491488446124179608984136211066019403890408092333087139130334842622494451374571671553741257186144683061204786660447538220980136563386121384748009912106592273810787316736730912348404079974469198219214234394160050401275042678556824395357751058412059086146731768259595835360798404921762584849860502228246828204965383067556618224991516440776681219426598335480307043367236190991220716566561195894212343490158122133807618329553662048205594079334613232376571313252115945951945434373686214278801265352017577858035268532667129383279474263223317815648139118912254489729193282418829387917191164654377987150818592923202659191179454349049734162313135140585787203488280836705158336030980349515831032336603190!
 8692861067132276164956215322662277267569449961389109419098036267546832
524
83627061809614272910254034831781378570055736855499673555459234329095545582730465670361829255399717993269211816350195621723279024782292536326327889149239791266934470106242132402602083680434333388117983619467579993356257988893472049922620771214705871228485876060305197624416752930899271120443264073932808598953425897451839476930262492394935204134866816004010564962081159871889690113844194314530260689248005903069518283731730410290505329651965480707906245649795473907229195676345969825644395127419752613248546093808856477655711737553026729080574034673127840774940292704531374161868135305407690421980681721054310079325102920558777898266826796385832458498016282245348428641152929448672640551310185411619701690680667099141349483498332311134321070522270110784095593342033437240970411662179051515130713150516122262043541394243556630205353640857382117244550621899071613245326140191516072922121784926400900491992045170365133817101355960576681575465158148628378020837389263991451657662465582249179588!
 8275485927026843906168095376937469307051411553929567353010157213377881255746450221274326449949434111234599394100594569992718705323359242258093191957488005866367889032705683628583477708807556789822201136847153381856611789112850946908848747075104547495762215073106318416435523683968015970901516711207744740858133283620905320742128991032991970843386926779962871459185557845548838603985043261842227408415626338870352011229441129357215759158830903624292907138365471981973214662322432093276447314835474717136998114513530978590747305046271732834220548413090494095992274473352224432392962902266205654338115297119075681222075351517220647167150391386613603196149745569288720804432354235300699435326408136172999362401728470212280304079714702013055112045309008581212995397383646167054078861191116534356628245112614110365059818389857522869665070367198168236766825686098826264406355481910742282997268218882904917838993206320613773300166803777044396140695206564659143043819636809471851658718513340144679!
 5898875805029563969888340600231015468325805225395181321721027558000483
80387398425690799917532544861374394459511475498890210741499209325375411045197164285010390254639195622481496629369912975464483683862448263947768860120534958982985302557971338230080039260201317481402338830498764455474974742834630053895634566681588490198829383859795147805090741261757795459267960134467898569318873857293472689544553922962650982452708535739882199239802214098033741417762673778437843021409119856464889643588573319752106990278970404630005686795352317821352640811108980280215394572507817697657405811341004820685279150652126853212627214849414792200812414854588905614920452455560887371514982796947168184737478018615048695125021775205093018992565160781210927539509732474821468623493257735870798741239001814618400345407359594362440608888252532754356623858171101269433097811053607623429869520495285825128994725498804036809581786972322071200564598316015510369748387075467126264771997491981874522529932643541228911571157762173738232776528013827260713693708420962463718603681218090892881!
 9908418754224550723188436275938463582233549691285840325674966847037440301211700853720560982928174354900240861271636854265596940686972146697976387625658740281086158381683540495559943741888479091854527977159921116691772638299655167588507362253795509307507817866299250398290136765243451150230966730745173945114359714963198932177633425561299198904860561411580492346321302727107272421346830261969105326578904041357902520493405202208744605307584470636099701184085733984559611284577708263650599016616280137388214174234815522074553705208146472155483426894580061509047713951943545620476480528477833643914303066754209159293305696974785279444666157313325878464689112485856485345848551304063840864503635507227801120114193039802503719297210038636729173414286926516897226808247147385021977286248857000930750230562807772892946414067117599178574567204377262513424656747382009495547299386685922903017038745221350184695292966363733313708931448207385337453954669261098843266074132412639252339052142546282687!
 3670960824048655413931118856850820125431156194253694360436518137695010
15443060721897600672854112507779934477224958431974286553050909985598600689556994497172026511865697177368246186222090013340784751632774089522982049636560692802247510941525579723292249087017374993869919297011748900926147455240950518897655285526631473667396939702259762500778834634694202393816971687375716303154943818652892269341863624239694818384602099204001638120874869955945667450653461541945586835456542399751560225810947394752045551114037774333242955001548533255126400067312125903659555854511342512828382275680472669007001862321135701795779327376110195759610188993388120406859301947873214097015067562908212262494725101033354287327763512097681693648778375151854499886363186951565963580624554483946867382214216864602851850491651072284584143553616979268775571613832500156626856513577820367901287748408503728557217888980210088179623633732414910161116493605821501002280489066763181232359320798510951530758077269686213291787490575782722504173754001366758431887652214487244274593245739451046935!
 2398353989811486206696200345667709360605844183685846872712949840720430977500589342521399875513201532178268066126737272769542684318107051745355685620116983058692171999688555160861040440460710070023692836409197595146994831501223719873894292045824689334814590242504722166645684562635245913235979257712504629578772468914676135105423416968466950196387367976318499935742922329248601540504869316290733585742062525632247188453273418743708754880726874495607909063890785178106188573384080602788618059503471517699813443369473751917884794486754031866423630345227433619422326671735513244229838471170058240127551551617771271658937147322721604487814905172979527522034312117622717789160614586850469887540077550730288662279660610313477541586053563917952390256835352495712680049551481901342723339256434606074427916740864379279332206536161316883916680412886964093622104321478552050823020952993101442433832978805985655077273509096953328535461700417571991131750331526216590233655413756657761569079785866508954!
 8333149517903184419895081777924164578028336670657518525347019641213800
70238249145036994672195824565241277050638019932091511085668805880170620910922682942703984434046459762128163565834993488394799256738505303587375002566309031136735554401957986829794137407661078257349604070013341955140872700469083782669004018534256629600941022987937859036646862483790744326600090284505643780855286424046188629070767629539130665547631278920716416030235305788287683007904864973336894441074740554967937249756768242942890521055571608749184663630010845014775529501844298536611537228701067009228298826858047336912793399527381408931898529856106061541759433897148934807918946159866494261731802074725964135874031636553636460405204019054329086871242487494223048427686030445929076451543759754570136612070802670671779238920552885678968615853634957849623821837325626130589353227159805473677274933105562750198207976614643726073539667252231222001119148893222316595956587984374612085477838015258807974725237906124425790275255654261906201516931669815787225280229995303902497990904168096026713!
 7631052213499245851594671131242128848280688511322781151707810836625061728794488673812697084944343947003940400403991129571152383306806776277425231376790668629068523620740361946232102491929525654126386556439633347457288761644570143073484695454815798955807517571571036980739072919613739798349682088956287695151647059089434219638118406838015356342050667301176324614559443334706864752462048520026812934579190660946557763023373160214659832113048211157645165234132342524231119234225730262475015083661013679791446675751700320648495964384132895035985142283022419114622874039152469784853954110355301200960063197896968211668896455904044804384433756330362126677538855091723073141008852472569145054636430353320742187025679967529104697839657861079093679954704312431846881909073704963529305549327548673118151991580674669751513408880586851138010200101865017791457917606249493916171727255165420937838375902886910035280020465003371366407846214963383422120797440975222961994701517902094001581482058527697964!
 8631685019280575828326349909983981134286076940004535442159220278521648
724
42629793284704194333056318303986144905984606113557134390098689152408115127652956360350428508394809199512283920629275034810779738452017887058585936550339221059641949395116622143739012828281196992781130321018074990262914889275395928154518346373527240254017255346064540078760062387575205851008015539976796743179348225202466070659999172080057068968634785786218877334552299810522054759742514274253432807818868792733801124316097813321500269292114501744079830774888211842179017131343473670982871093489619590670294114381688381691938893882659820437877447739214944511670313556755382457638480979660820657396125122231994640400020957373067375576428629636380814794293449017213941544184512723051418245939457164982083457646482012033255614672872231386966500102419225893135768495657306874421980008649380904828316172967457902282595667928359283583275062023246048806291206217501151592819368364178494231876635026809402401054873823824472291671581278217929304291405266539777112475334301520821812641380143810485671!
 4379416074865492288453741308048073814106824562370864131178132828536435989927710903249806426681234732470856021954487881681528349156222670920103411080603244936569759518787313629521589263641131775962635519534550483809889637481552022567732486813281849730508887373065654896446863016844194408301430156601282145709316888291770892924895436640427073538423706010468301344288227292342200518519326644684545614613610313436541036946216973388568068208027703825198739625701485106040906556060648250323195914950504526291105800639491674723522405867222946310119845251966692021073670549066432983596300716269725237423872453513435576883942260816342370949688497402068410603314342522861437806451672435557659638710209084529289734479499619330310870171297081009452061277406492667645072325002859207995446075198826077187327952275129348797790790663381020475764997028195041100561512072757598171213300323711031801195962760106697854902609134873565218313735710235459707628392638084184877696410596728311968376114727005493593!
 4984603905363141137237095258838257480794498674245663604070501226779162
60951157014208391517416740730749871689557194588868880702924502077779011777561278128987744221381413873659547230121831433050880878309860418960967273853890048311760255148695403249071375454736584856710594774386437239614835021103410973394616808009728345493027612981623897611828419011048564448529225755015090983236967040998134466342685251048144270717867800592421518399669025142165197596710332575451525508302035712104789493300847470558112357533362673934717802433450240939157414633079267718447631983040753930329001099326250898866503409206315388453498009885881187989598687419831101331922864938401450436999023317226680085454962185380793390104502168814293275717499874050733833551112924342471383326259473891528825389173778609938970771871021289703215903893375345041001688273988099560191197994749955547086567248824660626843250794521618593694512517235723314392555452042627608782193057033104921168379510765932381407915115315073458956002048674511462956388809861489820488207531712180795790448829477981141515!
 7738892372392300774528799740130870255342778393244392709343312827123681077475642127032598538490289259351160614447961245522219072277610307461721564669796559153265629038869662412267755306381175148656486034799449240338289606529923060153048124551830573300479676781568074338739770088332536997780678138273037561387412635671392448555991275573984944147253422310017115385703926867087952979396697550371171732531281408435323001667618412681269533393248506942898500723850796599038546488512613807285472842784167729076089450386891635135811077996349369260193437434789449398121950808080660914977620189169660006187183585137508961460595545132688904856609264406578562138574748882987523661999119447257148825522868607521420309289613078928155200686585470823149604493092461334501152145061515098936193427158287454136183830881426184420316169723233954008793763979349388784466551518457837934290337311615776386602205470803423262899427674664468707878238908128207742536423163248198032966896829549909234308183841389085854!
 7784722887705795442234592408889622692702345797249263455475851068848027
02176633379386432497049567151705840847609963408939184733084286114511301596432014033607106931722009985230287733514035959046549143631159498108777287388490763534631195830877434854446581166292336718416370593484258628068172677705587106312552309423290656894197545934987742927731558512168658272992121394609082176237667605271566029966648585334707640708705819751638207778243102711824818322291095976257974565984353274216309477627005227359760866764875412968151431224824116540351911043574490801510809278179413126481661504123391868752926699266620958823765199327911008042129247133388966370840260734917309844267276840344068682409600922092581229595152247306140979145671365614241131603407609094355231812294037450208962785209472083728780287793896898066628051609738038995329158810749169340420689831649391638482949802691251911359602330194887187490582045774054452818265100390957319663703102809370049795143899050468420869548594940688682413965631538681020285197420935365718424815124464292447610163288097876502476!
 7927211179149653131975622386194345446308781293049864255987716333914928835347758853337141692368272298428196991146336594752316836599342972581169995108891258565542572939905206609821527587584837961629396518659363441715474237729967452902190228665550649004895208196738150486587639532426443619118299280561274985688483597077511558036783438908262941399762302410240096879163512219195633327945618421842303538225714323095183116455632598545570579185852531953040282165732950769494998387600550771541656001580239960490267977486125256796969646904712918362266891708154805664346951272068985370288311740826800933947907707457589786382882299211315411157406546396932145528065059545304669263389119464594885159851645242639583776464983689834370697473145902945061385933645920323006415248553994803377918586490627696080376836768250581858547358483219374602535727548845804515062379370401768621499879449209670941958204651523073069384299334321404087314061745034750497697513521183539126331028720268733674106958471271636964!
 3053300873193057529778250345088018125522170413249672182159210997033134
90983224277230336659334906843692845220011295859471697388867573591673055923423690880519728517374322605500082974755040703304244282213402677746551820891682449371693900877390938804117795764714484330050414813276027302523739227538325233705927213178155538313596870389665917320475039864337891913792513428507901519592948265923427824514257268093581063944396911232606791363488112123706945432535642635691560215530193464314941816903523862705263514548543602591795108811972303383379950386726273812437249946924257419094000891265708652470654701159329274556748613223348640836508731808627820161255481185990667506766175140932160325350600287429117557248575085212240583463013567933880043463752412616027001849035393029202223669407979155912045814440099095937793142099099688058115641741112634406588798402519614197051833360110127747339747058372204022360298858767847182364756352531608113509719746857878978364925081423299165419299661978533897509240805144402568977269690966272913951764119987463482949855534113629857523!
 1392340092182055138468320944976285951923371428665269596733798775040527163557156075251380163375151792764718262966640672226975275814426844262664176423445537044745160023310966859666294391118026296955100335080561881179114133761473174681419856602671632069931444147805514474050124083893993660727580511245977565478444577492881531679085547320717128147868091222638852460366603875482790447831587105033168692148904816098870154058253398219452857091732903420204156798864425000253955397684252916220107006721703760936460441137650838937967466031178368941865675390737435572341190708022987375025754771105331803001153482859643098130930357610040533126313610105307668819244921207411436962699767553856268803032194656778197153220891026767761155192877381306626384701580907805403866050706734720592721359673022989735859620331276687677264866120676484882558313299925255331321152480104339512230928385705334550841219453080432967383267546463500948911406206887276443767761803030108582907983072704724960320648798805068436!
 4414948670638531002686911120704650153438253825543994939081521657093729
491
20375296040818937439195806158869661803308456510621656446679303856050627329089803871719903429844586120343579505364382318598505085986789918659012750781829890921155728295153750652195994731183476238915757046850737633655926258524446351817657631015858304113411738156066867572945481309651480965904506211484308719263742955629701401650634179675293569955830045884039078311799753190708309868565335623863706873677895795441368935933692312197133494189802061103914859713015396340544259283255633014603670184613936915235732795914393982351052152179294116575571913235222992996326197727596359618154934683130258783043401854928847778124687761989138838196214189415999064656528171291525592584401018766931799200900291519517974712568777852898687543877954337413456765214496168781840360162523370542572878431148629485041201843231681099045878079764223166139828957333924272479233414452293509690462510785277985705492497989754176888935228510993320531314939637897787954176383012888788952255795167658794101329139218754367880!
 0430593605270201513694338417725728431278223288946655380530697059954922439925108771223982894086358524147950361623007906691048750138740125496682228367072864809451590585845456910801544422043764044771935245381345858630218742994108943353694221837264071931225113963939104601504697325664436161915637716182214964662526513920541656829361999173968804830700855903409569524467803748219345962938666068657440689307043757445521937792240362364844621224388694557087639627176736728490656826801862021112209723640552437276492447985166557929330551501817963820413461275552715627772797619007762122786714811703267665741121233583431674384122957698072793844364904746925402118657263857735943920233743489858879925641096590410220983118456383908044121115650482856483083264251148758365145790170326291039926784494700833108085674214581749090436510292738102765375718653179127268624900797633972318054666485558061702746080813714301408736636570830538547085312381069205367582177957977444152108959343887001962238499368470222287!
 3832510866440299367384437555317374788476420411465238517127080319662852
60294348528213484996123606859210430015004579282346699660054641790672896738927170062257139162680261097576833763445144377879323128973586999314357934891068397704039798071252478626935879137022629950272111369156422078672627182689117546041485384867970735806147483533511536320110858995044537021741470146291073893902745758714523341879905316272390383722333420919490106729250413220062649735839310053010444719646815214814487264416858947163918391724200188594962046715722181707033306321399913230749652254077089580023202811680489455094968100971628090097850948337273794246577402614162962282883412885031213346712516073096138115081308975540157875329161665678265054320855627835060549422479352928405096163731947524713894243097849445017698014373596715062771479589068110365551801819337157989132249354614163784584312353375191650544593905755524748303922326138894588934713436579261725640141734638427501708503677181135237664203925263874547020233377656102827347256331845144939723111607207757701073854040559286606517!
 3870164578965765833343974081237427004750199791430810787141149054979728158926184889964880799626227746991033842689962188896981911692441162228725488193017916591510202865782573055321901812566921204294643971107256517910727235376716573389515591590161414181866607035370091787547922039228380889269814974254119084320114820186780163955482419250765316983719438734399999358447829181861877376884115337008346802673710172023359782803975481684911042907748039919600119171297728087390618239850223599747613307263751204297554096026079181164181024144244514302754917976642422960536146765502984401958863026501203272712149665895302572828902663718901384977838856407999849864870903585652741338307797131382530359518147439861526645023070336700479684671093935599869079103452796203485178373242134913284945527068785816907196344667742426000680686382242737136659310061011353338823343395400115748951884896121824917051932134087475654229185639065912954099616532913221671006768937135384994935978947359802929787011483635956996!
 0995740680076848425170809490565737880521562155407877161393836182683984
37529545713773126903380487769644378734843389315229666036707198434715879104674839983944056452272274804528965491924470066152362423041503259632738729476123738409221162069390150448530182145971414291916052554388233117045512203276759708593782587462400882690806037107739349987316011925209704184695365768038282401471080901523155836232699520200854389745525066332591945657835284435223015367582135648973627979440985848518539340498940066665281142687100569050491921004191785593151070868913468136182982556388080609745332100003675552607327763366343350144386449175870217344832616777324126969471610656586432263173821776193034458208434897927265871790857776046100591880223991242892881349315460064178527159724104988143976403414966983514995777125223946480725126686766961552618762249335471477474921911811948340701289960943443185039094432167739960160784465851430297961904988995779770292990011789034181909307806786422509865443742976469586202371919007367126608662203993234947394726411934036298844271778680516307762!
 4931986126303696597880379764525246890457610275821294185490346989053324090873009426759016391722622493212337402869706102079489879119982700331950978370519163564585445244187849097883266677861436374203469705858027145550403963351128154557490823919390292649593931208992230382996530033846083416095940757588429466302405113352910757405421184190105929946316454645363639690365659002449502533121009827266686791305497920301834289290252970529733753110773914558989694213816741162743080726312013049349917699479558230642979282634919659891748000925933852353832987442525956567326837088845157770003962615840562987036020841186519316324967675314569148457093424550834671961477629602236017191042228881120690121496865468170728812426123379519225680239870104826685329060755329332456768813945648472771793804548582066587432593654663848471524791444498598369201690471768099308509385531897333960155060873220296768909156012504168410287116482086045375500849825537106795302959701641911879106369987914137505850499516049231043!
 8912683433159304089177473676401011713853587649462514541903947755428185
83932709423560151352171411310183524784626171761574959665985112809921046084283389449558512385136736755575221634804591166312597111031260347838450249309063181993984655238035524987255129841271835427968240010501681680541852054790362860952707811735743731331388932028194028354132314516620081171705613731324441082551451479087122532326347494158716732187287205987782897171823122920157404122979309735927358024144252204884353011737404872474918100910684024833069824448264201621507307611860477258744363694593402130302924814511324200511313052248291413170083650547978206158973230618948796365102575615473294798486731864879534677634575006529553124598187358451092495653493949126004434224256576834380894328089110165850200942843689100599382522300877433451980828349685767120413813089647290976442738380980229573442010149117681706062726758038543407397618786372747042910022837288096323662922060463903700824078388173683126454574714403332391402430604616842556709255676406818951109563766719449912748714733982063147712!
 1376449180048047608795267717292643591408267110975085792111130564982447820920578010751105510149826724788984564983625232092114422645062444870807065294151313623439241943764784164224783408517503278218677775034879636747303349612125631796767966486250863906048805491330441925191699681840522369606593344037377427784903194851776173776578355308874042252599164766027560815345475056806318856988703934989227792555264285692555473270371549089534160768495284119511234681773147927783298083822378639805137010174838241753380769663528062291644534076708236853122173846991457187545471746084897174748714223255280494782459638906236389659800091789552825861358073041199535431496672856847924115710688092173824100660084947819680827990667185238591606211198253678144918584233594905824918880541428676781057041101667294158181148748548553821289060828577767518477391986485223953728420913170015812615842405548676763717999979490559355997936799752446531407813196222294995626718053964839727557259301151711000464653497370913481!
 3373205964411979906527955740846946880903961923027556983023774252200792
285
03208314681921081164179810632473355301300323491224502562313615087025565300341981025074576733088204520351372755446570025478084432218218829881916481020368415186981941750051864696406046384781957830497203004051642943892737281987444778843505159005073696590860426236328007396976193747844103900711750861504813985538590404960250521492470657547751508268734783917583796354789845109880142262088351468982009707107046839167479387926967067760134109671199820422228395124422508748491136862835625123898666483084794568290171622499488392034076145319839995581868637478147415322428734868501173940470924446338254036267827078073827094418679985541859278294215262427123806014111765958145672428539024046521540519462694758019682702705909982358558374990698285593188606946838068370793889739819732687132539917736577127858715494701630140245370538860142229613771962907781136600547441384488446172163664225214956559372090990809257474292456330378770174025083532989460331313505032043619409488573991046851234358208989386404284!
 8988157143719742264620821919116805217348138577787381737327466959862618200970804629665887402045785945454677369451242168041299886268130270705403381498451256578281693520033462531956223059671287589143371302920922408211916986730689760622500530015121059322238304077794780181654179115862354099798002347106415703510253048910276731259316831087156878765692641152472904948090143020482986774796213699710964226634362564033023631426565311759739035674691627762807857078383530327026471297786549177334048816184839047545507138837512143005325136475973548846718371614087214585193640646283709602244364906289557875766793291256611984796446825513335286341102213631869451587010931443314410095873548900636074627500561688888444169106928146031110516207997718499361837355982980663294477823070167131001389060661699495006570842897151051583457564330405709772791729645626274558650688753198353077786259475243652071443091777216258324163355345701370621080059559891667046666621055733653687937598138642974479627242465012931039!
 0702011548827127642503112260222160863989206095561619535421116917253892
11526753166487257602322071116903963482586086583198266476249047298851375827299938624890909791707692965030526591762268388733730958683385806202207147037189565324443810472708917670710415017844014588349436338678080121796519345172454889834422343503998422520617381097587002674062498435150596796045294736235396405305313332856752762265341101928302468111298042702431670655471056870618687441382242566625365271946334332733637951525036370054730756364905945547987750699802865637182359388214749532304455824594836982756332620404037002481868822983293440551986264058272358863916833146000598114871965704381913781152042004290398513313249983830590348814830745814685484369494119503123219937998275953193124299418553813003210800788853703161295888980566979333327771457480440893304688050952516484656700536729284479523696385503470723976135438407997795132951421516137724605755666422962704023111545624262027925174233392581141356821153758949977093893111278470353629798412894498222500636824014337748935871874045157119053!
 1674372273635637715561947245427384263628254884435962567778756053364783001227710149338056707870049234867709651578496669745294207636700833600005544608438928738171068091325738735491722418364530013108170630017288953575732401380741043141487883612244900291872625685947883546017283416279403121988787377152323279587884523888268413386775218419920403051391403583880245642662852774376944457162456849071521386212776971329072292283318861213232190505812629808254810582518961804293448191374453487364816738631891355250672573439623885808255777573731113596351693019766249133539592155428816656378320662637333805770595459090721769993216069362095286385916298597526629215708111212745892209742521943145416911118208916087169274054254311239517738531699297406691644835884031358135874916176034770802145190354434394566664598894240621857105851640612891120545551705252994587578747447129093271858472196423502892759410165779728504761673753643541633402143124309755763761483135573871845057842221610435921113007062063412289!
 1052289702202030330765288732139149654934498312391539066393987870375851
10604145434175421303749743273310596613758158511298901494227155400768659268351303320647880014960453234987317111584351130956332841506591447513536768860717421402720890398334651638859773348639290466551546897374438749029032669642223744376686197151883666574411661354042477498510284398073443225771515810745334482640808786362302367031734043529755988077083588911205664228418856662823876478945194335336266463118931307931205475983819535609439218942770806004355898698572710687345442802279469945220601848268834268897394057473572554738226282636866222012651662526409200169316024745016320791096740293534373379170743618487949927479302833372133792910928752563832968372818125156007300027356582007441816532169813128614085994499529505744306295302790361123029995059220739379058799863342324834441200946329209164837202702241455755426920489803286410562557289960076308390456767437756287107547558035367863172129804557186268851083434640890633899199457839443695917376630281164834182849521553777085650237351315795527910!
 6141778569262574653038093348518342763927357309131339158620287600714148536323398728842361106683278242225633332302236233547405721920564391879803286125606450483437884719988348211446852141998707557765431758764916322236785983087875280448069564657142103615348647960820078109069179953415369549256110583654299922775824433190141275198152708897147541512441804166114612566383311730551587580518101379012411381040224352713288849350959872420365877155379581870464416603418446453251240046364162893050273490603377853687259774238699733391168665408886503851460872640933391663846503515548573435319215634150231838826720257349642527221561894680129085354135946819731440013659259115522041719523438183073716577454930186453299511680503064310195024637624291132391536611211929013879041573648719179819913006763892476984644437537083654358826752857961404820876109903682537177944131279958556384358945931819444664514551112553696616785496163511374818877970077790572489919871220120650623645051894587110701375370835022906319!
 2948014018425065353031571270232879390180726516543653066570391480481409
30072482766032370012096675657929986066694733798853751871697204016011505046965424346425353019937995004827731714507477248709942719714726882069867844657600174726896694268088241251348531349240245629947216092462495880996747829009535749938347474412582949987603065178437924858359721438947104194003137038897510369964323397445390035593231046466132646182565586948840270506209260060720360920169789013140741416804726394031955733741366201284597788072308877428281682006986949734794774413578762030718013341329086693509760489240091186329827244499426954284678229068013334906331275544176977167159273491735666185982582785262758762250603867232325050337941719454591547944233398988795533808231530412711158333473726693408364678937877665475267322217578984288151244762200821704381406695106869187004554048546030428607337316347923673925665038329398646840417225402733283957692854153703102032918504792207854658132063657430661948960018386722058360987202232674299082891895158505150107542154678549589878557219911970399589!
 5938728947632746700605372874684680233264100124331570847251011518956200533740316810839340055060586484894851990400784205270434014134596211713483992765277295580843710479483085308858738157124784747876317656896215393224652166295949751749657362909628451465265392981254114018656915459117630749975404375741491609505676288378799825948125425833441315714142051831816176689357608777103351726655173059366964889780773060256170802725074389213221558011511902034655750402234588561936153544836742017700236064822498918625528360967739760060743346914605472712220787043011713799132874044965196287826888163697762732640216090348951146118272114658784862213552470934599274805604419455908587804316831414815717539367201321291124663843106425590449936552519130913919850475736264325515275821017492522188754640376938020306053379160145737793309126020094015649905996272378303829956756294483800133693717932815086281705331589458602113529835290599927744906618605955312099418242246069915307042195368050160547248035532925201094!
 0603457212421299503194956277722832364317431994124583048797214041973736
554
31817698297282969640629262696547407247729630711148249072144601579950457354441491590755155353273329156932898130706634642606005034851218880571205677450344814323106354407064648730240540282394976849457349745748799066810432413907695325136212486977587666571739444064469951390479642910707252283989645362824406884416090050633130181743374239958528988680835131068170466359510187204208659246890646412449501360736543837711418089342288049722942541876574220588452119776147338501321212950815685516644558276796772924749333220277862207349589711356757317630659727697236213706885944988526007428604444283372532892103705031965655085567035685957062794437686519642509720021002701234853107272822685008372213480427535429886916732203119290657241871739147358894811885913455887693488874128474470420489440201629610848398724275345766469007473567892541760900878500288385850856265782972530583292908694161480023911141653231592038672500829296489271670839257182247908305345715608102713124383872226815017589572534511980986414!
 9622144585113079356240421032211795389299994428175090674835304019451647937428405916699476624286625592307437498737489933878807807423350216584433342119398983375967920783269248025888860283141546420836931284386612408708695282500437239386816407431699411522074945056358836642722963646501808692028300155009043574286669854757750406917298060604318514316483010483050265861448908633457659802093125839382059998537097510747806687133784333561718455591453443851070319856446748132438950880340924858044419506816567487779164469972211412120172097881367163603406882457817826828700799657043761680754859331958414355522422400531060870480453471666453652834563589184659456715312692010504628307654847385012329842942582060638247793419747290284141892541827211969494323332778252622112070176270628570350561044133183389661486670799817616011737892412999998347629413654422649146369808785155502024397852999036813861169797213888527209587217827986996712513769155364723384667688600285569896957764536535106226983784750385707183!
 5429491864261546651364039027298278522111834959883983588511066511851924
02247476150017245001883210628925672712199923658934145203206459126742549888882342102027210509508257925285059157999433667192242598112671315861527007374133342414349610730102550352922498626195792123459847626700073269976855894211991224204809465432664921591507165465863628777372090248372327842230869879733570606395341638941220473346888410654658784970685647956618652393077988213219200599754932219369100171779986615168709459750951403148749406349025670108794714522728373174909573994464077407350322728705826000874520465945224568650317594335236770373170239007677609423432189160911819398852229137340205661404718399079784304733725668535765086053190503308417893762634546286373686740622075630987612374566753495524516697992285243381159981305126528196387695496071609351849800712320055048433039639343165746590275792234002134490155453637552883837142900205923409285020790353180381121817777608895291076703094463163541084360803494955961488950847119833899833424578374916630084794155952736675209727317979478155933!
 4308091676118445771128772796025270300005897332148186650171004950673579040303130845009016463925388709277128242238004233576787303348945722979236471972235571147872210543285843568450815356764155771843552871579796120133138760227442551158057183426074479090509231947795130635904070134321693435378698757986185234038895712253621683162324697714385025240070385982866031439534300413805458757580495840845272120790787138201686592926229071773605097672980028378152133208077859442431690341271764166579825840948381281713900163599655161403886464989284867869447455501967329202184989568074245013289688524817734526006242086266780057076307263126818942668329646764282605531070773707909143197104713172177610867493225632251192145044442460743720125823717330391708468496954330317651625529657914099066445199944616366828118725938061727315151081367232941715603085141832201694126435351221940874258023419170175575183202552586282444966418690911491731563370946891575240527774011305772088830808237862238405628864290368453533!
 6298104559927629804355181982337633845644456250034180737507926257986819
62803364858375317635394162943678386447265001697254162349872291227587839002674749393620626278026904780265043503773538754374435347520871909430375083153452434221046925856865455815068506146137582037250401802670659983811444005361866607659334110609908797639549369630015709169751932667182043620652438548483890268781246508508729290782589056582758263390728402685587158760667522709457324382909975385052886197306589138838674269582187154448166076733054263048529022061552982695240130862681756294493190304959943327030959227535664288401824629568022018015992418104400467103150276242360103834466745637307241068860175362881811315803390470711753438222339862249994983288710301359894637314576694158648304090449463175250449667615735518379921334823397269336628100428730677957652021236840846018862968318026653591924883199618385825977246000242461731476813155836530195817670395042955112849406499809522004229137674228965395254678303115978358299108593761903369140505474845374609247780886870192599026997611514004586704!
 7480999136854994252071955840400423041749415943672905096362274384873745783318704977656810626079030515598373319739516204075295425786918627624427214592912199854662061931885663645111289396628518256050677547928472659802906255889075728389285163762260868706977207359415199943284978613213358060119532040203408638596374827836135188307712336923907364915728148178904147799564135222533122217015720313109622024538894971337061951359516702930081136070055039574056062046116877949370195201409173370763925608976051565213272852091147513811450591965435019185794625736108550392477248184355299328241975343093939545471179991097920109251010931457415824611673065269976556739076827679990639622040601598329856590239220784762481748358566964955627692537661039606675299677509543383252381965299249428895085533442374420027468454944095142640045518518182503705807313806609058254836062661886914560476902601510621548698106508700487291999088411560509248795503851582220945493915548080211546637787846993575095337475393231432092!
 3832438845264008565031843715503998944395391374774967077083626794102238
23484282623564503617358718159984424301094721001274475010989490703866005833732710555268573219245373826207498948617068762804935200457311014376339344646796162044299782215661476612862211110830332667874175883403310623957701768008988227654967927060694711638595708185234284583280508985322557738541001730081517521156587774237254650113229420889399897487592209636507964890559571895713468259933051336785768892943064788340273741493820913964104768907667201320906722632117142475787900655484736528679342990884988725516327729551733846791574691948080715194609938350741670746279152807366876990975491816871821226438091145483928334744979011856085105426004919323817014703329744491835944167095100692785772443767500886903963697079886074263374859265658797993085808871746618964684901016887204037508494182139186394734062174666484924670114710430799945404878275918259771174092266395797679875296513992914897253629845280197388675383904916123109504467715712798717653151083037837687308424175949611930083645924590786288705!
 1733142035560613170078186007790008125360167148483501500398469353619465425746092114463049911767683363008781823109036090453447857500488438630687025681157921117902073200321039525024433631782958835980871192984121250595589134191826960964583188851295606874093974182540158465197722410893963586127771018879019033142239922399784823882728355725240423868803608980505255705468290154093177934684815482502525656369217381662912090269400416301213299692585898480796242593638744733451679888922791018284522115673063468359604267454943883136452868111427969561534318965108687780134281097682210191803144614069707079173365109663596163835661289938128066804939972770834187572762941301754586494069327226174391149368226534725629852615189239074832236859061967123708532571973699334386315901572309331719463452190544754651558591585795459598660873105918904554483944378534300089193362042048438679315603415741802472141482189808013668671116919635729158832316027832666862089381357597656588029058966586794218260145393575925759!
 5514922530587571481034410466990273337307119265545173148908194318250946
436
74591005663510085195196315432802143460642389795159451097036681250297048466212881931395273408081061759558343105070761290667614367083683102075013899041014629059427180488963439785543117610945782905083625027491034093485160779548984851810006776734601228130621998848070291342698456947681460710964297708630997646669037618464955107852863096903178513144029692094359561074011816740080320866712976003022526513933930369845666739593525856194698626188115051091873391481692527025658656581321940330440980934543699200288239739319846721945134730813001319437321732011698063803156187288084890046415517627744334530714310494395230681795236993069600836103902644426329270584426853361201702568792839305941632804548645866147675458253751776674538962158112072966277469435402475755091708814167064779783936959096349145681044226300340988678076729767422041662920754223457813172255951436487493699150051176681344518963686054045664966456631744831419125445437226900206758867045020868343029912358897112038660056553844897865682!
 1675395699060691999755561055078447368845098284242823245084914039148740636437250366898092318714262560421400854644104414912220257193323137468930964026177563042241581807251545592898036064330334959432561078084530955780648047995284540493075584569297255231656772550388985878475615112654000362307430748498970428387486408702825503749682178434129583160816578137573487229275204135231726138725270306837965177061476206834658326977821679342140986629449653874602281554635805792197657581929444493400913884070166124432301185769683198685195096782449251973699749771489990104417715929459525627795064586590259686141470496662161439142967898001269236971385238886880881928907316902248184815779539284336543686093652521877001767815758022461323561859716337049129023993659376990046794039782869210219966485747674276563872584211496650711855463405122037384082598090088267752965134051172155680895012493279448746332952276698294838675123506149230592589420084973641854871977039146200320946542758451472480904848555349555773!
 7316173369739978155125817319668175605993333705209774486306678609658011
54412496334522700418387601335637377358579387927164110452226580187185551444750748276940133391052821754316831535873143639578682674550063195732557389831002102175940291948291625280199203994839226004035244278822498756722241929848799916095881679860264352536577601609091429930853772731684477154514611427568579772546854208962240095605847609156734628800655605502964415997171318756261416330211037981934078265164694096466151957029265422621874797069000583274637795247685460457101351624124847967609554521243090039144338676280935755464929880967033960335401985095759447312718191316825429931813613282070738417931024159378675968693881448432515443622019411770054496798931572518198207007631681403967369560519645241638545948851546113998017137027242242428417091782172704468339892713117690950408946633752412778964325515515492957245108953069411076904871546106289987609593265059713516984580661296623069606546694171532669398580022368753643128215700630826902355104634332555184005882667798294749454883633488661890238!
 6409870862696876205225547586096430105336382341230793374131785223067176902231598446057327420999154364684610673022014031506993790216275713013033742327119880060760736872845885664876275232063979107183620783498156486781931429987784123569561761020777286110669628525877863403142383219876678623454068483050606429715512700321915934599496865065940553856025987455786860567443501140739903962593246155293629925648450182498023827208197023731713353075897260964558969933958038718029731457447523943036271992934371811287308411514456321914800072074154869931259617386349792898479163344879650709704873644564250889438224132943979899559510734983097761447543957972367279836441140274831614020076150791531695771362285655825782909827993268026933670480435819500775742633074763614001252336627658548449348458681065817792684990392453835872159172960621586253587637623239078204320576095969741813693764522362134120957233551885276705642688093456670661853613976120382471507644805939007925252909719793006184807480598918218422!
 6825517173486523293978762115759370687983613317729863454475204725364866
65496260953705492644185575185205486775383709216706355796748310045709604892038358189618574999056405107029341880416524138793918549277737313118335838397496457525991429876844326291728457688736016894106460060451475253395021897377149352022706485659011970745425701179705065096119138128136170795508926788373242116120632897860085873305368792724155965281164147674254462374228571586769599504624382977058038239998255279656009694088475057027668754593711620268076206919027709821388789688929180068178983304057058358836432157833270114241380424938748508837089628334562025448898762959276718645054269112244950218291166277485292130871355325609813790831516815973157669439724632803584815612040082122827273374904231254862622891244788050351336236223930464644364848800166711339341695877254148652760511659093153325042465050845418696472326285101521260258731149715783477472532870119359890005266705000385906543411922669264897189933006906505271392237360238418721183310418587826102784673405870947520360502103344686882520!
 4105407772721142040362102348625676270826616902841950622362174615752976964515069946205794886982772626651351184075810613170340574971180224189184404556044716766052841463189868009082260137979647830840893406668920061533838554879439789329130185269672285880509553776496993614565024256004291403789407283347867557800278353537386007570115284418791729892036212542664377290323847887476761834515220463598202818271243937569976932904566565108564459540068400077789332715670701539049967473452055135719592138345248596564484852567793208495067864161379787240429911777187466124309634040755742029559286956922431199783705575117050573516823884229221341514758623322960669062573312966905906437292892557093148395878763470134109611035475056531361331246419412937157792667847647023000912976265578410404047751746727281494268406239109810882912497771471792049908439015206024602440129907160480938021877069747808745367483643535217712702777865555054059657216247574958182377588609627241842172388374941499126673933974144811261!
 1446862544274808916260341319358453670284676777452213691395638626271115
60899806092991401166644039837361415264973336113047249942258630599445269733041118550499251869852678718913248031053939558632569979972631877261728668027278756338689663069414763451160473084657608056910039142773115813466719424206660459027771144618799017749283726357254772840673045024770050025748210784813299943809813139378365962880841738489107883635911299153427477494546137695967273171581518826859165540602427948439969826858460094754437363653229701735988209420909704482937916224698605649523749538521592636147687314759575480180715543730498069826587184292278284051725303917289044639886850835819057799588305088452834453591336143774746550071499084581333023285561555506261026684660968247410566460214806097833614010249435967285082146941415990826207969184175997853910602940075676551310247803695541700041285738669335215011874403464794050032125702067578590603069657070351195383833491854091561845349383105498179490823840458791769473524977220121935420008810818354812368046639456990774932173811293950883331!
 5350524782381916268042493854598332026450026740636696995768787148689937934182567498386335236540915821941665000762267168012682213464924362248327042178484455040118960059594707221714476128408954636523040467936364489660896018079114476046208704162078401496173655507750965384447748078953627551111199173634493849182279943796024268909730612650850395540400427422036033909258555807365419173102043512439884062649291664567427970516605920756564909559782261451555584715034983941515319669223792150550971214453222057718078491699393914445449367885491588754393169112893925476077208797153759834981810278095648756987064340423901128742175860924015002528992958578997937023129606018565173832907329212464867044337987442163603229695337218788433235379128411249831603434824341796608622258394675638412952753480289286579202866054927639516012075688961483023962512462331557117993523226310108282525869491429296268857610618656503018357232973174804750100955145369853255767806862720837881621657102504461905215511178731457720!
 5496609038467203011141484441775700359464407287194561212037554807624261
671
34105613827812645063313457855894883116504526073393689617787038035491190481715409591413230778292242410884747347682941326385916078263421757957870732054500337401997298881748195133085716857353604750744323381400470650522185875195955207260963120363751775019677321527517246918047374521572983781727586565100329188565448810140495206845575579910274895430696379768244396927393378424930136169703233050044740798984312593569584911544637651726477652215436345488225822977682149714884789526896612072346160591673770000261490743757503439605838470919600006279312235959054591662403052207165460513436978792886203772782729484792823389128742901591233323191362913654405268000602624123448475757291749480940599806187967901454105957120303175992240255200892866435823424609369289220995192129914019982933375180579456452761369288413339219377494577128937290866725008741418458995454169833989314432990304208534348032905297425746808194282381047069578530902469458178399497890275824899510518040695455205419196655338009799067884!
 2870044951532137921996471358463866881080708498710561843637662961947365747855850916691369906128329070151731786619710798032175959465235144114559188947835567786955044630412263894001281007171216809171912882758122780447632507254780479354275287139662285258152250719431594078870371137522466869966787817139405739377590103950022807805758830449319066446593082320501398182457395856283878268000116957195740988711190153254391525963653377641588776331231409678602016481969701687991052149876363880679041593041967800732987780549577918572181724740541931113671699827979369231830061803899885435170728696127021892876825682738259817080625878690337673863530868718813364612058056285428593958020819006009053099958241614689862151742984906682610815270663965331512977054837031374346916464755817098105268672471532034978181584510209227684923587134439560900980536739100014763851780607628930116491669109102421308145034473560318894569046824479432490776146507054616031384087274100850670994557392521589960445726638760989430!
 2342790399875438191222929637464749446008601488221758022716764459004827
86925818416944252716401650919568485651643133872934771955383072724759574464383983509686988428385607604720496167484251334584759476645084393686886157544122539710817193944243156650961397149905814043775489160872526521838449703247225332152753902984710119222388059909328579601854393435327876842445542257988632303730037672398089657832835133926732185093092625647511631863991381146741229181570505444440286938167100809966766508093208519841655753356366467495972908882088259452862810855718478250235975343599779569045716786243938562176126462966538028779800319646464313593637673822719843385512446557239868433024040355846467313063178359814966889460111594614005719054492533487358753014634317954675559490012594177984801310497856297974524612927817286949140907892551292051542383815112997928191169555778200588352584187449384796073727909298098313199824069449313838247489528041745121906979461091032492409372196758611724943798194620527245448160846448553468132410166554774862568619331797866059584808240742374567768!
 9101945036770958960512467728127139168955286371201390048344320594507399239171329422122071246969560472361497635888000851634823835530122821866163981768395378405496717986427873001952680944577774956386519204872318581552912655727319362387036906435165732816487686835906498284836619906372125281246976905850241811556976223561871195758564653354125781310498436311908193857822006530985749750043856048082526603806605459304275091938447443182354292238800250449914594052090482855426509926360535234155730545154254284800605111168284838073723797394014094039305521534756792476230817725719427410703771214402143653379690955655500967328498197128891175395310784038998571670885977443903639136096644299636082029600992564677470471883800675057906933486261193526109548099933697340723150078299576721953966604588868968334157875882644765692954862109243834001705093351693594731123401732917120787466462493008195023981469478928936673375970271208842865810464460009126242658315931629326787385657708987040288214993213733865301!
 1294439789626757276989374325788329130238215783484222068630214539093332
47353997706064403338727949140020539373315784338290398926792376693447754944962901758209144814996663530371336056200907722216258645978054417593184448909711235509929572765144116604912360194910122009866162316801087159637292534987912334733226501315750761138777331953405865080741510031643596286095850293577316156223383236815260012044049148207663218372345168721212493203481199262414333839357862811673588889790273106631026163697937070921812520638552278239444128290431855291290790679390786502339019353345566855333996305147897854447730143352492846818643423854800761935073046375749247137737251304494153787922978291006508613674270466768692150328100564491207069606829839360269133280510518680483791169484492474756962848261932679108234204471793834799141087020046889325617267133224938989514525828661188578198557423453135156370154166697690492414588559957084801505129733748588505060178216291423997040171477478391628478054335571091743167507362673745516041190292359516221983504680235862369802747925240744842543!
 9777349490969279161133765647739733348555238745095023714819962298416137194673573377123894031557081992878607084438509013870688071969426705428423291825192707660899348672692854755284704730624984831947108977231346218256846370300527592196472592799229946727666374455745051819288088007297439427096598378656288720870595072997198425922982926555290512530816686742605084395387449286532041690388067948324539519202912070630768145546462756528291932740697449079358589659571004681133909040723981098153076986152005120280415095641148930971994261692337711466428935317096790430835660492759720042872208383196269362075076920347117726276278555664047738669241044736855249349577468321645271815324532588374855911215395296714351241809571507985344334625225939194403468572449869022809337870229497253433327719317781160737620695293055432578253988343958545880914814387135691232177699822484110350427846145223021856053582561830169310011666673326474959121309053754758896188894842300962416062624748049171118768113938588110018!
 6761328936534906211687613225027032774308255535942010327483997494182211
18003305470326796350084797897163778213371343982041531295869983725271845922956757146761901146227059150108363038342713581092764375722576853118012404189042023320602721280478452982418232327475374888341695375670445250878901340556574841841476063983843102091688327626234818236566864693384022205223741453130932381201677419155190635245429417575800050324769320354073627283461945764869034894327679462953074537253380333785924385620198218543555175322142340226450971859720476618527665830670851826652990939022007752622201625243281875485660257725324496150201827816074519193411393255745488940099596368250232616262583958016781010966326722282293502295962771010459276901819281778314117896417936893953809960468895410009164163487225589697718298909744554537799139012916249456626877730816772192421457419151973695982980573393616623913718790942950710449862064051156510824185366261247546065215953792887377869632380102629360242836738261539685451512412119565454872882894595955998937259197036268010874444318799259510695!
 3304554220779343441047670808327473022933675805651236418257577447509674254866361062606980676207939919559171178542187560357781786128208725199262033377208167486410653250159157476905387489931302360342965734031048807399582997815860678959068812215002785117233518285817226543340763687479165649273119840498148881851052945660189519708500200921814462792538246818025527930466215929284581982754357554591470493801427536972198963020692603876187882831858973491193335234812359103525858475528182129189746706715469497767570091725638279758059780172092083937325263803924269968613912160187099321656703344920480767440477847211569538536621338350737115523374443724570032985055321747387673126138206505800308106435675984860982552990261507294504515726646617212890358836880025192665148258837015330944223344085168353244983787279435625128051041729105023820211185426533249116245691236910948112644351240894997447427586994169251770018163752010716397394784433079690174076622689437208576934277478673034825224830225015294539!
 3971133412588626902972811676771450766981057939620292138285474943616215
102
64750765743176220143606749940762640229006846480739430920344452642059011553778531426474936593987824516056703856764496107496376904666718852007288820175700151513360163281930973360434779486295782413694089508697955276186450061935015127841765952472532245871909956429133999747197921117396767797699726285177582048798614005725228232256923140050415639505747814841388905881251990064941765535079866844020578615853937708292531460498752460136876921826101107009603329837337450645915007454101464880179558288910006221000303054756569648937282370525347631822303067737280023491110168280619155150486563528471139841116282962724940686679623159475294302686565308203451908399106197921000655912092498542803250099850843875930609369653889589314469212312443966001395664701830089425589456295862524840046685840736743981930581082392432073786956167150419375625629930655604731775341887998913224128399331378953556065635123023820048627088244682325987489129426904781914597593501460046635340531508363457092676608815801032667473!
 7891606989453239337307416360336995065881363061440636009286066243943043313196954450204035700028240100435531704030305960502455580557373815302112041259892404425435316726403730052554398183483620581852341013082368751660577124829620888441341500900970122013945615578036345405698091595288200310000196029708493607712614907444561759002370712560868296661208098412244328705823986953181754774344479379883778138979310413526528422755106682047010989982512670033556934333314244370360242977365728157092560381496198364924170813007676503316709445884043781109488698114007183803049353921925135203496487966109091074094599548272190269522598805760990824198733770434167107881773452680549983372848692190661806282070636572820174791911977832302706207402712250139129704531692261820024159678756914215311214895854814818283272621613218152692470649464779968482618755530851545976525854637842173501537847702098904884189061376849307774282975372493916630955632560450177257828420740933661212251685456382734223235272147031899944!
 8998040048907595650828925961735987641089699567694042894199822590030091
86012476689918084543457503562662708923029130824232799030552853496268820162423979924794291719612342603868680931019584593014060932628211254610596969661756062284900499469874914389945989728911993341472596007906795713342678286803738208344815556887352095726972902072184177203704936849301708921047022905698079030969408928380075611517484683109338229278677512155875474683487691957420875011065411043524995257378486771984025964154248064888471776174611149924291771946068288234346423768700446706861282583814361858086978832293910282529986652084398216039075881097072494993757748815252405002330046872232584234661147023959917929593423227251524805379840478867700736152439224890374226976901653318835714463864160542753874963311430241686854866886821115805087684775959984114698078348377275725626410325843426906803681300033210547135141212842887549015943399269920888021706697251754859371153838330590887003138523755632164051048607974798367292518521041004169431842726401342253794253389665516890176565539994961118916!
 0503986637411159943576313670272138759698560646555071322807233323686567307715716669016929937034242365790600174307923103033117230154220287507189988106461217143575225905041897702736210613342232714623284483790686015126674782311984617969547675605794410102910925460782177774633499096846577306520792268172280269803801728946335666447756550460264787124512534388177546456634248024232603210845677198832971780586097099213612782697201616626682277075261295892344348124133520368432080502075538496282847019947355377117515772479732090485077034934658752444694760479141118209846626604814072345856935184263692710978816867255918976030163662650688901596908754000552880837649874419160795107149322689432933736981404781903148189909609936109750778824954833981143804716235537381867523716030407431360505444347273229920250455248112489740477193381947531204169945037423962966789221527748403419496404951158797584842092538953731635818955020484859407278662713516577070568676703967021730258674279542216731410267285603603047!
 0844015431260356259459801266208387661641830850545021483219942631473269
49001048894577298162415895939258374124742404598408189646903871318657944852959572901143986224614345302177724341054995065026905042486696856551300993759240348348212217460402544295204757660700794023291176058361122571333671627125651009384958744852989209021222793833875383739458462452136227211290556203063578296042540356404510742087246282023548689174276662219292179065518131394200313863894067824576426634833615385383355316870115674739239630305180532684990294374273030267531296809070812697848654209079453650927291056405615179235103369902586324411041241699762894438361993760440478870529128607479122396259470581301304955094165489532380445765194673433298995179998858247285141809801386164835630958393621970304049542652161289052609103561139147739464307646337824086411781767873573993341698708129339079637183169176437423939588159749351514706885051560557261555117703564670212487114896219620639732390991502804827027347250481031051164201692187489522004047500274509368189538135144135113582471427138957632826!
 4545239732289746792916177189975422017056156386145073747837095100955296634395004027775619509586045024585189671910258195307227183508469784531025479501109953150688793616672126580749811974208054632405885092532394869962976098769365142463724717189909212081778764115354970064531359052911667784797377662991976961300380819197993152015665994044124202641702014467802291560347272552944467960515708575987461260197483328256582163754325219724196541627003628331507081280967798207618374149766781206044377530366361046981932388019534955450545153141292936119675584018363642711739692781554322676635931375207343000626950331697802069718654532523340102424600713011573705386701001682421637476935226250773936223464755866815246386318306739475296920011889175069540177270551599021295496240470861914174431251205652998563583720092092173271571406963870238461958253731938133555171267358286500906623059462907719471910228762297108839787903935315406719949930911017312566892508846001395234219440862356663094634757508520522638!
 6263328847017573369600920349490360031816860666530022979839482602225851
71577528793520974942069100166077668938867684136703556225817171434895961475120793701962679484593458651524810994908694495036675578872562202785067274269087850978098883603029560189455692450517370076363244516054233586704687700561413480569673291822458685817476633783966417605192362404367612999810451867763464266976106822224601853219535932444544063678793793873549724302023822036022462915523477079847890872930978054892295800610477246278424249780111407511450627023688196203989765766477709562397963561415530861332036129961470085040706205776049258030831982010128564693831467958192008367940816616179742934480430181369308333628745136419990591637994961445925632138116426234855508065281581787046032089462371123810022163677967773948061770615966680203311405769645429942190546464112649565175908465003099456056936687443068298374188065531640642255655630575881869484957311049741361571114806157872401478942785393492645156730500598639521061841396222611950241119952422457734813451143539122921661378405818224266212!
 3849659662393400749581817223999307054808770560714993223659929049603005112228272131353191641385637172614734211911068415354417122607027899341986450249691434464917777505118648916784782968435029862707017935592801658977677079085846705459640458902361877048360593448719932835767303900674466531769034711156901395191644883487175026375483762952331692807991638871788986140756964375384894575016885032327393281903524570923574664719762347330276912114766979770741325578760507236229789672319649331720606398405002746530894932740074408121400022538125193962209967446103552450387447089685906870170759386485239770638173550422288150865780304222287579127537214551578219020378130695504570019076168484497640049415375975135684522219137789221602122415847177246045659176729846819229601176240634089477806279369170362261859764656719581510572935321057934898589937919785437118971906225726335458144385180535113915417157192486579680621807652558002552004486298819776729802097986230080773722780590519972283360758295112350160!
 3932383983837698851458113946864704216055634430605811421758917550294156
728
09528895360505930519744301723662238229706332233365385197432038298033400674457844451854165788723139188513677900717582653885756329544710726685971505376196862741225474884021921038480269646954676315878172671498165859197471139753371906729174271031401298709513735118625551766081805339506947264883258524037331449805668894361545690007739301680472376280097196407599152713794286612858619193120102462081753176489472856116038350699224974901684776356355038849850841999014126549959529428038075800556999949091154158757717349217229298248497012330874248207324698711284156117190435608884340835049099714900108804999193530721571789066027840774162951258941336619129182142123772247944225891910301373616375175358162349996751353335489440517319153829042224723048984346073001720949659068970818912250024348104745811001789612652345631231984849096642446606939030037734730694903539463871760026702252249210342527657883812018627674415926695393685134040835213910762917652334696200713470147931912582339184039499185961335302!
 3458805715404939716141546987140149345131131391929934084305746964337046544424618499196677099682531264441696090497175472679353880863894283486425040765228113422723448245262867672357965191972461121871787320450251702380160583173125907750446873643781023285147618896466889016343804612455041120783129768761618013208890307586658896671867923232053775121277745385955828059953031341307760728348705450808580049999417107405838466624056133109031068326180662584932388007539266624887617241632148371611475599559148929682788293198411139784263420760618471981721563942347913455430559911207396608763989650657249808818371391572347093296547092749610821034170391296742210023999799767025729853124563341626911780246341243063245693203144000675075237902504277645375195079102007005645680017172636243670710830548010309882386437649935036885719842545633421344758991056380781168853149987253330207567976050078782212499895781783893854572433432135484917017182636070160201907333847768750620418347843832261660221838691357302825!
 3236041989768252691547261023633897152608774960418203323462079307969614
93249580403095682229686820993798510841724844132556699890049925779539716660303711573338748719725985898229508371494821678187079789527616830768221035251720889966812793929533534399993910321460595120406128944785391894288061341986682462984319417705350194711303091291188244518451120596762268075113561387846018328565811212320967862789980609366365716707328849571579195351565809612926909970674848596174284874223476452469772768565262452594619010114395208029425850978902595972475866199223401140054274135306577583858469639961126889371226433825147216286898516197677863355275082958280403293156522512574357581646156184671477341278217631122282336824899987706427082617105445686238912743424525072421793116567423039737970708964636765826992578641796104298567595717704790150361939090345551677199814551473017797262570247428778390205702763834412853652177103219851283951315700394397324859305852307851719098994612631680195634902705700726141480427277064917025046123387012413608787681620242902748176591649779890319878!
 6812162100568684586200558090590250667878109679605138448954957926925445201016714416256286364894036695754767866764787157509130933025003850485826941068937497322969768168030877987001901534233651823361558733023754903219866248118577165328263829078284109047777874210965145100095513205379872368280391126677254492757918941024204369149685076981601595520619062552427975348558089595283415043026010188113391233802742983888358906222248906770761673589828819437480275476709254585173786698881357941724525935488555973291458008434970360013966482886747167812159389852496457872993787540012830619092642368399217633534157011320771413915701577834261040888594105979642947412701728096997304450476880823872431975017036234808008732879598651410909544027269451276924450658207613904331052934458060048684359714581171026242436031501866522241813997957453947537522856584148702503404529710030122137350423111687875355096942764156496035915891027011449406606467169760038230675286926218108370149164723513005511929593153577483211!
 9663097585051151628560224543429873955295126899078873496382604885811823
33504739728999687998485181007362673378284670643764387520595476837707471294207511192856975432811108218003492967499715500085806251466241203972579216113912293917528005580456705292500759315720359942992819531901082269001664204736552397519309266847229195134779655855191604514563678456350921674780907004995889829576632522178991026843352598462879357101210794929575132671154004562061306014317133911925075138548620450658424400719915866367314773156020227815098528079056434624499248341878367427519757867515875766588076146253231156501285453627525919457938757684623645398576859831713392804011603987439575349497786603295995251797584562541460502671893790043576784505198134869687999340696464966902765392359635119412918026568330906087932811380046975728969568984507216018421676989138463495524312630550900023185291330627188930031161158025147248914348551187096340976703748991622351681857546278129628983499840243327405554154858736226613202790834331027029365290188754067789358723225341694010682612345119967420582!
 9353094615504419036637289079961642739613581098940796358209921077171029005378756065842637894720448830795764605614519651888889566792597010171990011351735327270285281615919017107003401749031596150596902668271951682222294364589584528912493458309143942231337418127307246496671553363211174935960314970867750457368208286153258946593926164531739073771834241847151474511323504613245070119311657361025239220545021936926958533734248338612637990415478120621480130211306723922769887798509501967850693495965543487897482722442475103429389749376729122892862425801342308596783605273968363150165388778409840764658345405862252523822537648084742751219407346952277994500581258648276036695005182156592082939702699874117909963723801718841116623027401777218899439335064658167056215200292049935916776597513639257443191790465310919693641725933301223548289248794755553094911801384415183388776741323449860778032747640562493566239729164997347917680702605150814226978352817951213231396689491969297757626897619219267716!
 8109390040471725098965102704006949709731355838412743288068188144476856
33753774899982469778209786822108921555150774675120822671035759006539502349849450161129348754195714458187851264527084790990477226512512965323955831919255768242734450131041299445105883812338029677343494562317482550243860119751873092828105578293244747426686596622218316028339895109732817638364270846927754689158907497147209900002168529003409969077898508382127948212882834257881384617964269982652541378173411401272027657563681456691786871629551020358312118010575562245179969810532343686337403874682427941992330660126101474932355675128671698880476757340345240379261589757206538276644140243591448375966570055514946711001939830628054237669426184182781590311224909178436154615498910364840469574822053279252692750963181058145383901013531721214826795013968836851300139512246310245330374826811566598251188399870134643669880791628474253228426947080441379705970495270390986176932161838900096239363450336480728358121660736783390153601970535572464564299058806864333796686387332594469073153994385095844700!
 2087821839176320332187232790612651180037420458623852557844662012486795680495960729703971931370789858832461283007020528855255947807464215645850956096879899938344582902863410026572519488251448267476903497195804425187787801471764929199297056705418765578661608802786507812946039710347431621194497008286560871386978129588623410607641755617288754619873924120277709549082822677557192332946426358311393646167886210005331900694392129082529994530789056377777059529869241686743127043397446696188284648049714330534229409882149037518754300233827396231580576317320366745901205467301489093080811143053953152072122249104933848204513849916536594489782257704736863674529162585343842913373519791649584242064268177925374700682298554934972413766790048237198239869888197473689924798300165215411425699540067920766558348540757343804527853934165910182330767398558599514101190200574416604089264892402488587442340522350153126895366452940661404323715388707762005299138627640927028217054792331595757094172925119380520!
 9028153883890415371990591109164731576680073552385724899843427950768126
040
88908642679840548576801186187930554553156222059110773135546784762472141825623534123665168215514485386988011787415591092175983811119057276283850725069086091941015242190043187919832859193280119455341940821778154453753204902671071252058298872320132235548993356997703720848574304059752618124088717808369016249646699136012058543905357185387318406362135071225262102910267051004552070907997619163037376110954987180153832736955393674490053833890172189143788914035684326705643780385855236788695246923662234492933499690013764395037800592133956171455995076737388866538850840022872064361168283693845530660320734034929723119770646505246398913784256292533321596388930418130329348819521323994679762456685436237809315428571706149561642645016518556828137688553462868540947204432512394374039506471058432690227211372951573867383557584544061340779100017014034229767948859544730274611662205878413978405011666895755319115973178058081025911508075537570405748904312248369869620406457759945814047283951687393440906!
 6138068445045366877756851872390013363594234546880823031593554132610087241211240218421064484278444141904364933610969046731682915259195407274249264162614964650520226884720200352247294416314343456637133718705651974904844312803249876723001473832536810532868572255105600690426808138373171063551771465560958904539374685231026865779487987703007260976252677767690658741362699630042668664470962338641812659851244535069837376478099352951415679369292356387608699359933497252148392171638248037123619524854750411657371925412273484211332486302542970066377480823257599418177289864990360570083974395098285245784584094965108076490382220865978004210645211763910540405691764899596918569342414921855742639307663798999197763510619651251763557559789405433247732021310410343490170635002539930658724896691266816136518274889241048971655725837109900733581640957605076952721437232736665068311515038021441841947359408765099646040473669157532422376089203713846341869882231036374553298511512052582961607201273003706385!
 2115816874271910572148573238849052653845898094176380708957491955586066
22927102124948367163520183015553292471463234343426476698502425338700186967006104191616313040100428832865703474407307344359108619902508963266386228416778127011726434451294112341978727760833126886029176887696291367065750953210964925996340045466646395417572954758461375994541901193795467988433114762994039727397327277774694701452013435171183866323791900513992904331325878950121948952301769762551212677452776203079401532854757038319595551276637391728314547861876319032505864294122014512160034347874263610965089288170507901310652827199469162245785519956591064217330168206797900153807860174388463816247440307786036562247399648349738636522438607170860590473499485638686370160334700754011483873565491408029570351635659499428082409630929532814816149613375892179796684217792983931385734379369277095601231874872580382593389731864586140313327104284993317525640306869691012941012128916442427213739918268212708560378373378710996810409837739418284063976753969693530681883742259949098545283177106598668673!
 8358604386454238631747695032298720117807558586836496994869080140906750689191320601472460383561033928714866291770324818162367404839338290964384174539185327365830116669403274602998870633572721375528987937765337424751817575585993548538943792777456762803173152597416118486521903994634406542092022457035412512089719716903824362547244173041598255466739687140017907316522651270207628911428971597712163138567355789457003975691661427469923898261541344493118161499559424251945323748478521863105555729254589082706004989495031833931009839094663432828454105993443429528683609346283307972199412413650577304009357170229908626694729479571707279191962098569410788797387116537722426293005159315130462205454026604104774505979406917257443362308390831984482310200498705622840153669147994576203906824808691140793863550209843773242675462273964723207251333113707234133332158794380914462429209698058958269620360012301137494270458041541971107414062230538825504454778148955842913357348229414247554335374950847816529!
 2294799646516778278524661624723236583365969927931444984111699639538871
39331712871767095344058995510829285740308536098447786655685608142231763572727444034305745793313100331751927390467770902125435180485204471628295520373761051359351373576732945520764899520308085433009439366585174313415414678262614222167278950795738515173225106150789170881856853266107791657747021373415176273082784198023069741752299143287874627154467770244598386700184535105719834780931429162049330485497260599639961703761037119953035090240627628758270352790550124118926894974107653845024624222721268087689364866458556714246955179465271394840458310202672069358605556074069439312509801020169066054625060259521584221534102551029045794300306609814099988776870029833320436067962016173668301076460456103590502575792073826138460399618135384726627291160105821179995304097970752963419994258938206770225490498311907561432641961426603949477307884778265277003119369464287892374809424852137291290539834684590936011126006017998162459296028952201489720114896325655803890428837773405518972948714583045517236!
 1599900107158634663326700769497815620002419273447669172654535506724650066690295872544940565766858266686085953184225587905041082523536391152981381507570106893800051069331009009411166663673194083534021472459382361703998691426878299339860677229361767712585872430174298094823497947076847035137969696778376268070487127597262932966818353596773586321344401666882931857681515679228755698100387919653061482618814044481385357964533846294557632364789777172945987307420675091475785888085263698851641507418131127997700112011459529603925122726533094394597962928089456908586897232389645925422751509928089259060417004257521426169385878764953970565397113723817676987748942571675854807607370163816204205441239969496921223888074095367587293801953448617723237206859438263132425801859630123640304101391863434446732224291436786224322822856291826478700005585505672803222186708059106542025397346036748973137212014603258237161448858385741919467101355027061282281467956350751131869585802093963017767854773221419776!
 7903391274718314361103885792704879384255289497027081545661182103112164
30928389721473697566120829766090810261640615229713285556108212401026657560650790776410862611290053761439297586861481092640127675199857974838259280143819560339212185054365535391653004640483022154961721209363200135292335046635373876827760482314732710573161858884260885046413454504296687833399827587843276115125380888065204736875540937227345025121864057207132802752695512755679335168824265306341889559156265311986369400943616437066531815989915169732963504547594554673680699673849563968103027567735042527392951406449358577926435303371668107876125080419070359464174583034395536609872258053065953698499315110164310029924621117988648130176853091082923367102269795999040862560702134305851881291843288194635616083879002557057543122621835378699233593775784483249551466130066447542283548880930974784700096901596520405611659260162683798708573508754300010195452911559302680719642110518103747849654812036081348316069639378722942123396766969425372299162255390013887740503286012050066103886009236343438283!
 5666878552701021487496922801502327413270251875966916370884048527071034528436507170826117903876033407650131440702439346265503829997085881941039002666029969837709730877139655260070407457810316668024263166103362250256475378501085728437425618053263399301914297764602736160817587321641847544665630063430425215311088826470779220175575213570415895283301680905458540553710150628742335655280525295167607653677374039960945479444744122283900093007780087362804125649521517621755328557825704550062499742474083593957985949242709637549962427267448034644745728134658306584746982619329376386932686079630406141334397824887534607873432702564357274791159859841303257392670394187349326685584464908240100351385139334019330042925640091612496857442715819285335868648352804529201495065090265910025659730203990894754274133681092372099664734143004839891227657716100795044287328340361094983394716150375213955028526797806448105110898533913786831735353303417060083957544107024264779343228437273078372708146309595857595!
 9409433378954845926547066593510856285469005187621559625687945434179114
627
27873218579869815188364989146005004867250169673058825491890586533674488123220564743476773680526725327322435891126492001132132986466647392462680934701445269991281101888325375818077457322816202040476232141277039977019301287544948496425080398408622667862183904951052452710194187969285746337182837988068627156860481678140630438504023005887852352420037984390101375203162538228106169328739189764535780947999529448962311643146562634548432779012946864586342239704152194303962990862587966294218898893984591785769178990029267497658105906502260210396259935857943404995660900731355575417183760046548169506915594436325210139012263894018297405825843994594200105340695363613675374893952879311776134316194004014717434379684902460212203164740741286972474396097109748879720817277491518863938999681024888931760696879945353242313144572786372815167016843082168145116713967592601524272499907232179115770066873134266383569461303404568219693801353887605530705419645221769889098101602332579904896247326543101000567!
 2491362316565185141379789843013296343572798901994703888408466444512725119912918021093301396632530085435061144504335772430168315671267411425061194528243599412831177828378845488098083158047085270558637867636559380303356323723110924898672694814838206572292896208956919448297453449692980929101312521925946794111826758966627100619368949628556034324334874303523635980151235258001347669394761965528718327037892558430203434268469433786724421964745945588909919019517307600086807379855836786824409835771036887691682555394450752974666595258956062598701392658812635233418070621617152120650719475136518009492921434547802775088869046554591933464454201306403771786004626793633188182084101609714153236194991860656281057879287659174003241149951057544499892948461861863270479390097980157450389654992367155329311132415802344132886833345091455023061630710111210799961440288001696221856427410042219054069226307126839405782445827054138505033356644322183546344755978404054973603311839580591287046582496390478623!
 2582388874931624855777067258944880999787962633531446029792036974852495
99375307728620657269127567885423315439419169010038861400598433215476136548038220022578557115029882315306839220632268155825663943186451940466557458795574275285759899739008903412677041554544528291829998475587713132453228065238815656175553770008891710507862849103418861921307457332375334207112660853532746605918466141631563472355489843430000467850766261078647541497126686376856178464026136208968517884937962708476509578488730693627158138367365829423942457260190823003237708947257506071809590710028893052581858321892125298526413834089200586805471096416595137536774492797152460165796782634521908196256527542274886897829479581426345740347771183754562125232263379581667368458459093524637544556746046119550802293726431264571706059481882144681285643551241949217442373523047528333027693220388701190737726207175049560547308099873165295905226815581801613835706611104645335053943422964138272985651683714867053022016300041600924545521759944725761997550917545637953775335022141241012792765088780918535807!
 4728147897737493747492627261502944569857819101005872755883703309906341777646356713382102978444867871715823766208339168702485688767439883420057514627618381413377059884874790051582753138804942344515405699145327822491226716261160308811019502450215514898543776722897750914697200945324357063993251358462172898826660587162044216824865812164606819448514881805497349562347856119496335075538083956373029141797093860155363341034481961528780024195165867064701616826319424152727637910071264405762323517503994629218798343776343947507907736525833794217950963330728109123973330063885662799985291713311043271275191352830220968017301375207235950832996135063908970304656982722576400313055137493480221239122972092599649182442284214885107881375482859849561235761720360404180105447245282772517224885313667944656466766720521612565347083193287293987455949803758050138092936576787789977037427913225864311859470689780468238128755010181077753977324582131873229187854299523291037379568903104963925264677544322150787!
 8872857056284210635332657231686744550617539975034833171093135042293299
10430006394456915228775994288423489072167712845245814203384268950466720235633011618765872533125946733453070100177608836982161126719413798657668528544597439649568185296620432385911702394358286211346354242667686969735464014204536313136556000508436692428554811620679177832379846985019060168286446803837194126394269436172861524540036841264715516926591218613591838618677218892711966397807513629511266839122773932727790731299347169275075181331862062273941912017077449935132829787165028729798538338666338724492420190527492977299399284042819997953651384966882621782410626108064057318875782920571713647193318489156959952444405437210232095644080117010811386657692404977631563860219724295539396468232162942861103618093952199745843005849979757303663869910060801032811320391417745880229367651852381118244766776912305263527516525211493047290151775731974621410146387444503399397469278557184592581228859925389470727616548097125408147930607175966049578599964802889995303310286863600510915146424522919731350!
 5055638359185034211102490293897831692607041485088243359011816475296101047868482213975521997300720153535812051054553378717062081768173472375897344244244973157315824758942030893126791255670970456307369027692964714706190856285168744094066768331037018147975519138301937384120857923267072178190970055367369435034199722737974714965542461100249336835789801232647848834470112028837337881789154800988073100664225943909240463659387085728853037121459327673853416953097324669455228506120321010092101561708270399699430824994553293138270480871534918629771513282236723562221469681028198275739573840424810599144769008901670832371244460127386005668662248214689328885962456508736516060723708768724732720567544962058630734943409234770850243907020886334362378675809281246903154337321219031414487336800235891420369025610645151400276773295245798264729259884450809710702925352584104435388073012661373645767153883045124337478163611415314306990921848570821621278022907460892141566709508045301331069213032331425704!
 6231316472698258703281923940841319451304089482962974870023780229136052
39598064332615284093830683372870418337594189248942307284503818923459521835226128223144836128936607054746608914762573003925203500175974727554572827926811892565354029781662293634823447046795504869478029830045213076308025569757885353969947974167819626062627765318712670382827225469567387287689069826633453305868414864743890895418062367767095185360547952180740334182834459753667470105683452194943991057496387330112275565925085438496926383307520266957744142352520692929634000979056363876753292276909460041643872234397176544871447726506216395701672364188661818721530871232667805276599349928490126715722996565341600259783768830222467976087271632942483264229944227356733105654179294743684256980663940430278110087022029753509954381870151417132556050950473254917671266969578221513187208510857682833727374653359934631944917263402302546193866864659745556845485632086417857319428003285303586971328879881629977950308635709066994579488189999950106895653800110864509240504868495526525163380594970575996317!
 9316838662022349406981100956438933866429965780712279906148501701152597469053894337827589622261816554143033808762874414749423958174112709961823679752867262692717631206270308642496303570724319232891927721150647924973473358377046562130300755078065906508261666420615756367935747574840809607239097869563368066305129853174526113549898435540652522403815650758443641578138694893929309096536028297873399684727832524827008969547933518860163703725106179868261604767070869529292702712956541780218136128913365164404737999622125152730180780493919749168115345014548835809182806698618231030425541410550420435236286703101433532789750859040039641658651393401556966117601749235199929152286937432352630948862104691153493298952469013124559130038810752780513352112649673573893098559285771298324511130142563923205934896491645273255501254486975362905470110040057659930497602535445800289893334646685601679083398322425775657500098503242005703287289256735915889426349741561850705867132747936050183882753835058324657!
 3649174729731203143189015481482250294925582412803196496772298655220174
463
48418130382534712311437850681011603863983177143233300157543876167437448482940966621642283881034977701560907592971266621589757056968830776440109166979420664855614179364922516854142426419043979362302486324944544686940450508822429991474688559744166167606772156601018927613855157593280619765995487415796261373538605201292313064282287739586920189936905121991870464192508518832255739891865067652208374214290331217390295682352912468680083514750698061728131004020838260002470206711796600230374202434180202823391580508707550268915047645794203794245797645090884247071623397846292399220956477177575802059642549980940975456478012653396638579800011301548490905507044156565905080817928444520160273353500426368021412111328828903674760121267275316730918349715888667489743062521872988568783699077543427792750625930973601742613046609026570541751752935966211182574230806210555058017417107924990494781569204017309623228935163222160077561102399525773046559277012944622678206365119336468700793320094825365693819!
 1093114823803617081449521029731257950052844449783701502718765051961722554632771771596038157611702343276883901949510690566663399109575904265449191757315006203644587727492980505795305887087595964435238453878816680332219217063811508375260794922060322608776756596849661438189716617263709379519909867405918715621863098605238695741400579112091101103439385961649146413934740925344795203585800448308563945727869483263167424513970007589912037513824105367999873350599381831534872290994083182963831968932754502728818980361569286367277706131487010954706836219525797007883055423985938234623163365972960491047509581291959961214621837394416927847000174384185176690827868221443942944203695559516821643178654822354712724093247528175487020152932787352702892934578264838675103872359248591356571771279148541644011607656935075380128074408830697432040639019209363343315265743844934668295462722690999635792797581555201885000053885846324478365017388070101031960001983992232127566711297082679967192917558540024248!
 6048612919275082458992158370288538478904086302871412784550424150177687
53155732428152123230437852189787035384216310109461507688890578431570306226301097771796982065089236310367454513005600618449190083744711149775520014938124239041295291665389773116648871952553850354917548411225097209609856042298570548466942158592425319936294340654587956684118890672898589667745931796608380284611359873944761322544881172264294870542995550391114425219729332874231483490408895052189019337254324026517501828803214724924217191474385203104854831364569185283277042676278817832643679569381333996698223480133519870595974570770923339805469665681214649171020469449205164169332279087547597412242965499291598349068043108753362964409939326633610043390241758652140555534815273561688891643333494855464691339106252319892687444987128478044289831263658592769521217848570455126481969874940820862789602571805016723213385789104550880579045997560292000961694551796563209190661103361506599142480349925387772001386573010619238872398950961329695959633994532836247632442205328577274763215312557934391903!
 6491438937993395065246134990634380556969508519782969431002818113017802055621413040716735867405261719596910845683377248714950065967596773514122342043704836578180575914255425915937392272749532578527796435068212233476664059947345088543412044141840446508875474829809083911665903425497232072608605359508930319445556382930536001824198840594198640435843156565133324130286878667411089235408664099125379223923827639819114864750065992683043389421013641315165314590974070659190722825767591352573193746586828860835378119687810743013891747941663483251973415044829777372210682127399483200405839541773198739521139041175148781457574657783394398454420889611799799596494708567371638529237678056963873274514085747227046073552077138065427528120673229930749656474518965838557497341922946226820978974777109467181815741109664851003828296830369634776488265563299467666939211685957987434242340535409996911650943809328844200150447681284704678089911812226420288704437224678736151654836195779403281072197710698209020!
 5888969672611967731980148632105652777668315383739263593868805514849043
81794557042651034144929834469363343495244454074549949472539969069339432179732286231461580365274089624736113025400600273466221836329575858760605289636386932127989858170352215315969385618347582528613628687135056589202424583516579964041363193132670419221179032018874203735951922917552207686030683356511071116770796022842208972619722903870841669690750444732247652105558505876593669575838583350373481319826707367137936847439216729372850500613317102666726901652689312812979835076809583966399684360078361219496817555106106567794192827519586751116078736737514193082929714431254865476159098395639479587410616576050777569500423651284627326134157604550957922696237986320483050702182960673549929595461474351863338722003168767320786519214300122011309630481936009581637762480047338398446470360071569923488412664905543336012895567062280381132378960291036971443150165006112447601459342209502044983196825573222045979363387340309546450030681585866125500524888685365123719397721019698681423609263950564152643!
 2094708157155845449968584557327016626772106801944282823269822858322305496180973217210941870871396352975136751887814929347270128950455728435390892071244524047797592498494270987799858793448221120565956183811561552156307093894738424460723063520931022986158429539283617153019248581084272944320397577398787892115535773150872958071598272276993191964792782094040750238206728342571388962109354679633353037469875912808602866271009895048034555943335041175488845009509096562219085365591113732761058729461700593751189327112774224814574536612479433588790444529153426222574665118337011716469592696046900704872801502521375062440939693268210001718905040924049221053147362656173487838755680134490355592704861484330615730970347829756715982991850007635678839289834784831932814019036882303502790593596675307019839645215232118178928166296772749059305328621528388965290693966444537726506518382268799511578581561729122510408763772035580236393121403522234652686048350542963461905091466384704631689356789583088272!
 6164675909346108894385258052314247192380377011910054533884639102847058
26165765754465935328632680428817477976606722173103124109492819348865170764750386398057544725727991898755536089700339398700264964444193074532490449737855299216129208274397096435726829610195151125188355898375645334700625735948166929884589560175447988573313842739643661131723664842911011676220114843575932035468159061138438513037561760084612929377703079716894319233106452053262025000356368951477121566733322687317640742758259939267270899519781877722643812035607217798922498056073451511524307763486023258188896231895992539715529688570743752553249112238437949483928885402802280291748888912263345835516912693710294369004993586354865844404160014756450682014288322924069145144826730834249459185280304103892685234867647058782815608748018459327480845610321706756137335654940349139354518681493454322708683128414560389687481615740198647533899578503436526069582646058787629967083213720769787177765789050161582081105493850004440256195351049840339454788726724150033422059805797078203311062400071547667258!
 7566712662989944819796982660611086508734046599651526448588185931149290857685858419756471574892814296089499734575890062897544355168235275407183806653047899300598639445115210790848229562208607799619836034101929987221090407665062535060931625772810244427481939615945132610703214425393065086177990115372277455627539726071584943989947062393078118924159702312332377485009644630867790680169419900116299726935001260884040839500473123529317547977264605774801573762150507097821291199323910568455925699180355634564309413291381807493616926196576414238099119935655500043441388755912727245355391606528986041639363059375670159456038880347585043694760969445746209679787080003034281840639626467738036893530612427686529084802624846607789737595314587716415362083637411215158338774799712873567070061525226205321207296839671439584305001615253238350375683307247237087369116332805509496451078685288283601517021525866531552463680387291541278985907363229620006796564878780656444217824563623353685401193217610554475!
 1350866200384489391435416698137397569467435671641588097806818665895119
706
32180316631927819641861136236451673655119862321138364528925170595762669887986662771750210391271442736989239215273389588334091022432244474346074094389668975530772352128149075616178566755163770478315682177757705412017585815266457232531495290058225702119025548047922733767442255473219596371415295500034953748581289208130048427117743513896017355411263411960615864945007609907789155978299342233547910894899214402966070047479864255432074678822521208771875687053250806841512038882160583702467165411767444789727551855320719950481098579683716857666797129273116581409301238848992019441840729220948065764889717391292812786973766067973827365807323778216309636409694150379453118040350821839412969323831161954392207288695361995957751551756096129224549955444603601158027178617591601288648839226971754892968681435942687439875879450890118541121956878336736640471846204533120142711129341159632227856028104103923363172900151055206175863965840686648391139674452086959556112279099281511859734040126620910175056!
 4644973849406953288021370169259834877887482169169268700362719451517175576837407155126086355420967116734851598712075354483027817146786079799666155418639188922314114074316467277726146743685336630827290300284501670850306073806563339211738951880146025783669282790411746978321706697936630583365743349419885820897789831705131740846752344475637931236315772056656571498179556824058266183502234172955698913784592574122209109719055143972057172801257423497579018608080624819447819825581000478812656573314416386139653655209084630363311287781272718908135340230729237761836673642724737624633565603669242350120999321863565333462811414990602099759619172837448230716616179734678840209948629209987600360919563302152722650786772255657568924871690858288402427105281559849143894818529980951471994182085809771452055767991305612182934045609962977985416847924431457079729307885852842585497158904942612887074022970342261478104910411504215285066087008621621406474962724523532792657933909697804905840449793029803365!
 5835409732009650986973976696814738708547987049748635843903471395534991
61007014748443990293011772555978411532618107544223320445320722094664168536073830208766441542771050092338809808769055710216240138283737305136068551404705544842029110592041680278748569362364148153662760342266502426146905724906775412713934643028480056702184590899074297264061396853176451453736006074371988920787209394685988220952939069480724123866537776849698658817837568659748780404555600747916157088312687859524121861781438630901092479204791529662786228873351154443365645878180239608816498758721461620367525751971069623072414133913048821995602026276920106845005804121719626647710563494396700679985584502931054536856536880251197047185381045667511696262228483666675165297256502869123933182452940231653746079211521389837118211851092283817881816674965485014397828469202087127395911503103881760002672948383615260364111556070581207886976055055156196993990146026503232938917089614544143286035538694819902934413018185034738125308940950582553372699679317670826445298003761797924380226878107766971190!
 7278728215064419404726706069645940259919716835922472019866138809493660913957972367473455488475079018877415787972579997578795923109995032347905916232904114970676096007417565066800486165859268722963345641527726022869739085345130541027000827091814369638649603804156561208903030251965759337667878640885840240858150506836162804302080088363054350269860874844434704979890340415319035561036911422035889777876927842252629339705934066099567868791906518915044911725217879644174098547551304057925656365292015569514862216731158929892491501702672759830067575481202086415376888830676947316517147714869350604664124835821091507423156059616379612888292958666269397072086895413706581432104961808731161517067768919440112378192495155559468864016373113042188747932312896447894501407654415912804520550350147742836677409698147115866308155110347433813524243334415763583004531124878562678621233263534878173878827870925881947654613281544653121876976091741859474326733143296219831593954108951326891559794963840001611!
 8983098885278981853302488542191042128072812177432549619687959625876719
44338668518415909507073499785106760229771154994656084855917423566459805443355191110522180388308154086353048238886788690516519358806050622641522746190501378161994542157074768354041975253244894245641594593832432886331573242787317592656887059019907652795321398455213827947516307302464104363842354652104554852277054827671223982679351114848383320610470864559697723328728022822987010651857019289970794463036149423621809643966283759147001312588598224693499019920187300374014185960113128662578241189544062443576881020017612842111720169362573763990876109892450129082667670694127868050361079377604027621272040251537682785073851653926043958984942235182580230985613148499235920206397715234748606620754139585118129589955229337372332087207250780597216138185231864063405148806304184706968773313332885164890813426190591764067344113028992169500008592669994543881449094179434577627631949015334619630885682389554050375545884922123795614777182540558930054629015194297766898057453244329635133445090436063767383!
 1693378905277148695135664320863564375413574884929853494264946645774092042772439200081011370813067744314123248202072865137970885405222315276642596342847038675215982476124269919928248913145750168266306003592322004182444933143209237504034275191194501235139875299745878570543064708230476911436133976275437174784452425184519364012045091960217856670127482391855660639900483850178891899708619745421114465264379717406791298307263945754069549902927524578668482871759807843103793819771370895894135136575658856285426436372764433887735343021286494779389937723170973526344618925607597119585452784382115061869622460738359011898314749393951253149128820747529330595985333218746571961872719186652935829005260147691784227164375476079804564288722840541482371012045853036863980878733607883765390135306009455782580678287145725059445725974201481728945527763568384465587607545321450297530359584862192180920351006069389082699610969981114676757947732967462273814664755078922246272406353323879602025524104532812416!
 2044255636113856137293708322202781056123843865990215024663243417177992
43059448782446779927978413258407678376488486299398314478598111327061056802244476277885702328037204427995209290213257375627035601924978186187076067491581573108211516714938811986593021033764012837589542417989803488469508251241494473134584814931362156647362618541626419102969471660746554348691817460682178315848968065912663112588895779282407482715018841276857528167080069812862862474427108535973416103505921797289672119604022128191803386299645835511239349403883218363879985272484753078789366446556200351800104988089155533223228417360328096068660588076885908476686927890723179911648433273819936187145250160829671807226687950398268378073637414964023024708552375679110254867854312648652466110351215891333483903779288346710080012572884529792550270074729742002416745075385515994501565835406102658108833370782598904371799259127733022587060989838620628769932148889276953582925959318708844195942248778530197637026598905469625600356023945904772347492955205861208091666299030116706574780450517526964202!
 0344231831947539930469603629598175903748497998328585773782571480250746950834698265585031464026603511847903045852143365470315158549571347887194191261110286621734489637711418300444464266843522227230980890683136522045309603330465362800280154563057575430108447943287903769928958584146554196030165106360312513696725106255501237051390980535717918849488151986644349955741480318409436691852733317659642937812136216138558440316501603791450851345988685443028755389742136936500369533725395131166921266785903519437635856929710826189521560686502135892263717698426711594720470469834311406849955701925403460576098863119213211679766248827102242720496394425805318022896984128162258440775269789956446936737169110422528599394109038660299134537991109954404423745726837002180452770025178096224257758730924540427126876973354681560011983005598168855387678498491774931922213715390015839628604594165411804061061315189267436898230730312898677770781818863809543914262515404011128788345268800285148813745048613339893!
 5655872948254120527039695647644214312169459928665007613701975734578890
448
74367996415304638915506989898662468171420702247183366207896252313458561025888528436482524360640790766387715092447989068061328259335860135950690218874296893892925647322570729229756120336271926509138070623513953670205662972686641943995468378731639912916851155262881218443913939271199915942390969942056861676594544583585116323884650318132873640456892596435269323895241414599576855009358737954111174884337910282200983204193847318125647894515148072045987281518709214369570893888640394449983757728354719998838716399625397292215101402772198814845289217643251624746851783142352786576666628829373344087863187413932074977781595497911909588550388169029456280363818088845745550529073168308432820425527941305826830216581083376436679952051845111544206559688510882823297979007875168608841416097007672804550187365563152204604210744635500268316236906850369460930688804829451664707020540341771619321057090722178293225915758167098836830352168523442422426596987163972713599568801366354396452308619741549406280!
 3603265623257088469107580889239739377072297088266878359383640423930900263852275273282735909411884556487344538333058695743094003521567953743702549317940738115622715050467526044992774771766317613428510157735547105171316812476938679598776100007616845543712722773228277992445507277570318314320288523072629963466026764068400447972902359264409697371563579109044290959239591299699458056955966218408600465489641094748158172484940399817773286274269230712633565758571963936047362978748138502972162962332944850989070047837873531677443475171370674514417094356521695083996493422649794152719125994183794488620635139739496620416378545181613192935386359066135829342405299946369094766581254173285705113439585511646922320160289261113161258125742325584048024644790470480637764594490265771566315070496021000383930486571749530190627176354677327481961126294095844567114593212144181321354771426321711235556906542524853791692136649699052937241336377417196389066488851141486454809337716168446018172366669960857956!
 7194091850902855993451882325524413773756770943568350708501864813335707
58557645323191259581632169269641149190792357438969017538825382210896223718152338303661223888088733881450742832443689914395565932921605262812961347480724461169331245251316511690580270609482298481707220699342410810472848444343039534861174343850606619716218789603164343371969909243816914841317784149771927543038329667555426163071894037590344152316903800918306595164669617295433335555508107986437406051072564030442907327962051149921284557305110866364344060673165702412528964392644039236789444406178644630720808269462908940753728928926239442752590750777351973708846536991136729186132242541775629984516417323364166181292651623030400551146874928416408675249120457053366020242813794428928698501189093122776668408535184287763299871087533306913271689962758358830233488028593837949640762344347590198832194517489892174747637654412747509825405378035997603648003289696609691649725930497979578925559890692938221273696126239819799744152213313924820079881938504157948000773240323641780238444953088273069434!
 1620374767827134758134203710971521461391191802095954637755477610758725566655622046331636154334652613809636652957231417854176606902827320396387277065927130691879870359420556296954905965788281849122799680680632932945342022828758789015011890046680669066489359986273385483744438630248787583541221126553706601601160538084853670690318076474064806551016322461436695168466861278818549532417104465980455382603393720203462688822794204869380403753414670486604805016154602048849709945851589539929746499765294479318182663446877727078440577313068148000291556953924947114729764863843489802443167299833262783735467400799184725728347921917277475619295354323698688055432809346443642421865914112321024450518596965439233555211301660107775179593506875582576788193322428048483014090883319244463910580959940659302295079733785488950889591646099945751028513254365625048363902671696684933476712727090954355873315517124600035364453941422033303016663277041572074705412914667681229005303031765739309456700105898368351!
 4405852040139274634193385280490426803762452886100713176259076356180786
44560257853094981890256632078633237306612649640560332331117813424634576852187765366196862594040215696768638358316185359588148067050957074720036280572541251891681846387691192471238900035489623682951750077144962620899609533301449454595985889704327062945077686137230002119846919759546932483820402819630021403051081961336132334110954263739934577321780883515905151271389193559018859098082281817502440634069571849928873347613915287199711263183766842157532105787045318023718724789483462917756899930352352022301319366937254040652584306283159329353845920906278397069139319116717735844509753254570705565477754193821739593928744045021043195884445346703953898771076498723797200294517942277451703470938928765789568624508938181774557269301048383763590532119235903045376779561267248224770099475897215528828156503197654314410097801622978862463936950356658886275628026516231826381603210279987643188162767767931221893324896671174848498364025290300001930171351205159400585703152063799252266986257125972207209!
 7549103897435873575607899107840899727271209777703656654015486348015045352618245236627335431721652185367096109252278972452822511896208387108053413282536825542505263057612236114945817869015806141784933259876603063596997656461673584677627319373956487673416555478493861068505524405625649409127358072710714118015798195756259599354083644026589483998824109930623830264056154327563450750858020525426742089922732889002235433233453050210267724934139484577244341679459266229997205427761231542968811089264545465207911855729719670815620806777455917427356834878592733371155178932543998134530246495513000101813976672505970815902435623865592559306474605897654642578141152586360391905474874292270182988690979638182516360353269843083112774104075730580599263052680103954450333480232518597873519755165090378601701393864907312474362988118886044303696125562756700548429903203229254674269005295434730875062942143911228818404245650736726484591461658472007908943400516368852128550161789784376480090429449748831251!
 7864680191856870661669307852001769230922727920671293955958511515035207
18588090939207168098461439627447272989557018372466159233545530494418776853123829215894891797182167956259415250168406824701237741559945249385920451347300451366972967353812721485885822290251265423406231019833835669948029197648277806621584510962942023667237496121339318485610793094289978109908199209166899731624797717366090570651306826971952663342983749281227828061074651579674075901294732277652451502222988081509189003830543325489902465436637553583265650600143815530912555219419337970977745006488649396199968393248384005367955889339009489896132564415743622825624329424160693107634719393031794776756638400878716426064448642474358491044735301398532913773731628796025899652121104699604871701999408701479404026194320238938767926041237092987060154312861031225327488683700098335618924920395993596471411766043349501749857369048550150608980823328985496802967630978210131785738033326753601295140924853708609483304164791408631421438607599825195119217028468606727894667808786437507572066720589570344555!
 0705191109957151078331369347583120358661217820668013438349094989871776449342981644869344092195859523198177668433165444794532678740477218895658443572277431557765776850671261390703455214738609054552600324744698534197113022367879570649220944665587657925517427053295922165471032688045943684268766688569350414643874561276079558517960925377920773464566305888764250119902203062907221229397408712917160213041686342340498996111158866012920955602118347159161221640006046109860138928452452567992561636966682115586843133557870029540183145811622783845265060698209427758130774381304985207695114321253762543025795338275630064037995593260504074834911685186310020075174035000352757513648966796914525945917157813611335417564265866788225730996845191693683218781756497871639273968799573521315226390690207024613050846326820895412046261296678042195709393202021689744123750544690534399608370306466515961563254071874374608011828096013149415990705696074256266575291915893907507849227923402260804544798914876001616!
 4153392834563775577229945530807182969090177402372998156670435826132235
025
95530573023222040448532966766837274832458114126491857278876662436320624318282822094312428614984099424865779545090324907990780163621931069048036917837730444148650706688141901513478437130952161200554826874493188260562135800334184204808227309508552268351328036289475634488509627627919607097454446024220154129800375098220507579681422995758922517747626531999640953453205080530439729601121984627003244189310059811487706585161622814210649165968820295134480685084570505743672789574648328083691443085337570983407628735011725261746699291618546537265841754844979529201283098835669659947124798630757519227243502988362860017638560784711713951729863592766283038430583365132359092156021314788549471264201636797168941943346622152221273979653897825649492631200099319649241518089386394632789580717862374567414881584468244516002165093141488751961678883311284980625108615152934144500693653667562910441805012276049521085181183836783394859517083499404955034482070864209966624595245621493456309838044222784336090!
 3709559935170057760154177930734092304987240605740502816298934027898418118039177259963189934577687860437416961828667345724111272347798726306952782971206891938936693043318975816580087896701656575222794068608634680831449446808489627603219697118348004674528633563154351597174716411356035906589857130551454832333118859963147233684553309625911569307244338870436465653414293402937026163510431160296679778022813645282981682738833163929864892650016320464170091067424089958489673855775999916085770234474773436348162644990470406049813810575005110039337557559477536016040868852542103568006076917709935781932472596862295133847583393511448836063497866618294786193627199616059699148965944118707024199751912126187818763169912507684765804465234878708451517667049608533197183963107960023432587120246763636514700347088476046688152046578665514677540080038386780881573623254930360756285953094614295040781376265997567539188722867055123837536666557928669607696765346837560929399041839454437805470432275506835017!
 5164879382930525362090670941244704189566487318042089736512332145655113
52336885886141869379977889910832768197748979413321246423624380270006149861288896346675922151966439136225169489973046329753109825712967304872762132656288841672694140797663991180937250054757748219125083500926686404296795212256200168971290641339037790659678993157299262213390738638117084628200074048737019270320242500361778939348287983926124307174734064260079055340166567115068784549090394210027320067708659284092329797064604654455913155781499143770155268013359658653967722278011500313319207462934819486192992295817014808874194204198625833175978982631094154066373008608411527926696351209831913944162577520294387494397329258160329468039875597383473656852933239960916503582574051007625210792504268986773766678513954724032259806588297859674697473349203390408456089461069630415462084440229990474266351279717220975274011477677640421488629004850244881899534482092019968213724575364602891100476302288488027301967082174163277484690271925328122945528532822328132912786355471222606063464661247840670848!
 2938703957311915568581021330730892311390936691993142681842907768963834955294174254876163946245896628802165171221282690203309853336252998645864492195745290178728689886171492559361055970632397269444226575355779085490357420243450641068154606720491772455291454704982658314621737992914819118911065613724333096431223201561021758695500645387732430024655810124609671470964086150909721904859172230565657065613540729731677736777105391525122001229150114166527471651795471886621673464181108553090742242732963503199405085438669706594652811531097053920740458616017426568549643392891274715210946625504342245803771117013688007886672970672055042252538422775148884353389338844913869024530787258420487133356951184839974804451159155180217686625110071201219457351907243271286474407381890674214666419071133943962459567352190050175353598265575780639348180431804227211426485365513922485783234795924767872495162101608010776854022452191614263326979833680173840613884765011676029198078981759604315598396524838260613!
 0930856995708477349531973130666330164325817137797568027363967995709553
88379826561294790023865394114784899821030258993315441140945792270585007592124031443034213665145121038562446549623875013255848548088601329191245359264337804070631237581248816420316027250459479597755734959539090626904490545195857616799911892451528570552594196511679016543922702954705434623781624398095193093935594342364704254689346517980549372735877942271893295735876349447429222882583938934745993961919388322727730932979793063222443713987692683002363699260707904306249333268517365934105790597300765954734312144288905359181354025565967959199738145568367769066827173056332036484473832107476429848055025454949846425194786897158156951224885808878824383604102685357966584861398622737954976703164425339950071748988754013066380021091518167649360351796364596455509890857356604354019618448626626086061772434154850424701925785196084325589003050531924730325649786024817645477104620269782939517540278593531326723440343077736824648261518832328089518545099025497681681000255740602117603218712918527411279!
 1290667496751295609470066562077637636146732145341195114368012403188670776913210739399464679031585551764762633315118900301570366436376559918942558966299369552227655327242216946834138834084529517575140225535665164139631500425304743999958324069088005199604833986428828913868197178321588164277195157558046232595830489544307469327889808808206148444874739129899001872145734691219711088688238846369851956919326551783370622492257727057462652869763927666942380514551348489372427822767620680312911427280502880580296096614693631549881725488547130960408239579928817109835315720279989601430179006243783732273138188044323057055982263821488750246432123428497308008402765802952701847413898576329897247855711948934758192589466374207473041616566654603927131432864470410320244324095444237619256136140378679800855786164213635869480885715335355709997663393445999334758961833791720888956477040388935653817186250205201076616976603944894383370541287523831208855544197329726312773064133911470844761855849559418344!
 0026768063697720501047176843104274940714898235160285193788453954014144
02076047690633170294841268999431069671430342491423281001537389550153488596037782990799459291322251977665574427587077133556317827459720538614813564771089693539845824158600881188454557991994230910288241596115637289295812146812896486419768378699734341543602699231555875431384579470323334420216629170813103056009929473730549444375343756631652310897646873722521332892717839583053444876467024760399214806106830982293291826276063450723812467305382199543732726036568042630389140439715258096250132602123168190489092422175196075270657910398744168746305730791818565339785734936293321760509018182057286257997534323340854804398476944503824288237286722042817374932020228176883238764630283267393317774229615191627150577744190055266178309721957467424988351426827305637877524077287150772937066299615601483852176825357772407560523571098428490686913309477397428877086338722766698238219051794617520810376652038420015162063549342523089121220087875754212011958030565698034292036188146591410696066838439599486221!
 8443440052958494898129148113460922481084447524825737627330509985538998434142439594724876854684180320457828091033986785850672862886037520741450006298370137098279492842781669109722120087257819669212120039169888309208197814771275922189529721577170963268406002004797446140022951882589734315101704396525439813856562995582484082265236567383885755720714374986420475337376066320308712314314988345281946107779551688905143835629909374180469294983555596651079213046247143005843872852488240804938284312627797663305059343418227507550725141540749581605979667296363253455543680803772890228694763054601592292526596727373674027912767227912886823478888076646275780217537517391379604191677090113069760334551909083297317879981336241309010122567909188447858550635498733796664773380662810106648028147229952235268840919585266834750615426940267406899983137306833881508455463584911354995271722629250239312625927314013960334786382332264340803240771495843381508513694511663600305288357239784768766407080975797577235!
 5496968125632929731718122920155507442338002280446125404328033755537007
302
43245322510811850920499031409180690509040199726903886643660358544485115571852474928410052840382855462042920967630294739334629028851111871257412391396854620762692466456042903472493741382609897268165378148145361121664506196730172112842874205853401965520117126380598935272844374322479477234663121405577368521994723431051961322490022601934167385580147946455241297656428633445632476420049501427635899929832352945317146250846398591298923007110971280767486547777312170003154986331645691399926259244657968915861014037685388159735738821408227082402781455481786427918874383141210751615385752923630220595981134821003792458314916702410416614335344639913149180944604023404547165300886190989413069748881330154390419261807675287522678646132696816082383308476011887494324778987561099296601692106420004350307223321407398855096787056323787856444829298305580784299975778081407717458072693583323518006563892455066252599064565108081066763792683123948397807060153209792419321635745080609982652395084713253316383!
 0901228106517427262589743473669808487810454536332559295921450619384206754296062326992411881398169427424920654600589477923783410508433532457534769492611400366050318779962718237318370936677975056553004866351580859245854697863531288316083772369066041259780831353563545061075130963496321315932316008889209095843805366715425299347182708562923817350953911689066020129624814416082280290106267450642633244509445792145272195570121542910674141627916440216688915499956345054197721464236978318196631717168912970222775670105461142495627653030347803379399175484083833960791616131626814775599361142439212626608556001525613531241895144305650026207797643611313257353169352752556628859327834913062970624319263418528499321995421804693478376534126785581275335515655362593204126476591851352935049500118055103329197574262996451992006896519188863971220149144287183871932351076516319673995269296317416238100182639705808560969138679550187984935037328121046109526719402378836343995845484112283814223683953619901181!
 2016170476341322493356356988753197612142210023257756782144087671100214
59503145966762432621087257165216925098499479609088087485286082674895483897669276344740399166457162027070741773570162704704281974915420005288423049746642723189297254466605447251105065645891797422929840043719066778176793633653213167898700524148885288130690988400664214741931984295968518690135633701019165622696809764933739934410338758610097103160261237432482622058377931571962927273199427230522966179192104627196539394709625004941832186990598750440239002441262456700041654939842845737027483567582583531200236644308586037549607469579393253535260420745726707249994679477404657869922908593084494248493638923191378722270578509628355713054757949087451445685014364335662289995647331040290038222836299618034239721736277351089980114675530178092710280271604438798679510169966189355374285928450029114002251413408780255396779242822357693649650294273620112221565617777135914494874757394928847374331909151871609663028098510583918124233955173904125727075597212314305473387185002215492834864862525585968016!
 1432278782115736921366809860317434236527870097916200328232687188998142379370076005938374632852954251746708936193243591636692748518004119293678237047056518282913553303699702846674145768226217490846220042466455933076563119945212579986690897237435400265170008337865454236357228132650481507403874601573078084957785454106261604370078851677151806568050578634690873508587064383082756060033825704838993030893497395538415443884352078330479192922758548296746886534980900597329234712231892428308435593172341208231734710857323841049570501098236779272885182371762202697590350666159304092779311620203781204375574923194247876275351766480591203369410046701723784312948957314561566112549788823910695543637982466950147922416352497557834835224292300835865312693974510849493926142784606595188249752096508073941670728074413851987334795384579740539152712276415220284324147090315683416404935483291300177576485056404259741799353856824151937367103144678198326701278180040700182617268032375648846751101622769651168!
 3577737629257787524208621579798045507662500070470788570637879757822925
22235807676228777199396866220801263183243174690708661899268597034242437312096414135704781755476055614942700635050335319987597981734049011688366672987276735250176425059144010868788465783963523579827986129520222840826298484083754481978148900909713677411287533759649311807865686153464890035466802078112382088266447703127218459302630937726885375980785618915439526114795272112659246047758951867605168696453214897242776058101952036474250728046684514385983866738757238365281738558244069394900583817476587167316453270974880218563596334116148970222294530771391491868117976904781779868104466174838038219999343650953996674987775294008184355209386351472189865749196149140861850369001415627460188597702920398933813367074906100038605852778886943284918281014638148949425435146062781342805116844567251404874533647089988749448227004880556961885772642156538757827504028512789282952110575929715599640239046984941503066442492448784714817981594467026939589465800557319614921240457292510852773588130998286505658!
 8393169803411967954710619076315500352452871418248660859874903658050529875338676934898121238525479157691759841534572263698158719915315460298976493966198296987005175051696758604443169980985035486216486973728369850049901838530975311165184143355712154667557243999601573278686963471222179033058128729682549098006780166997996644164924648160652509804222114251028413149994559241148419225369023190157611902317228673573662989001046851381001405016209120806388597775796886240053993125819093795489591629285838158865461565250118240601271626650492292137267782480788788825510528438362363051993892471719575320890970612074412814199600949124885902860983589031591411951671688322436300573166314586973403839648759691133905947563425397491271349675907030022485978030430608275878877791351624080301397399254539606380231695442043435484398822841518865814839510830724549977925284224459386419632926163381372000423336323038097374717177339526006810116435237482457902523746391170877865571195298647550032465023246370388047!
 7589052670411579442598950585299559319912046481565941569843274954805059
91416076653407010584664517398242257536285263177560576908394760050440778636605859693072954817900747065121797609811645752511622330020192624666907311056392511836601137639039448440864383685025639861907602186760308476487995930070789548296024945581943504007343964146372262075812814399991959660908815264789003796701252601080138112928042804048316833486912178175822644953598646077321485408399133635987345007417795739203336715404359565468602853114680980241211377769885701300629778835847153148667193647833689469792362901964238014937883993176016103395129059493907686760815951068236296859336295886161343674076341545485479914191438903394750126265996940235672642547773088029113585510224437499033280446915689691728874630012228689784103578188143252765586274130613825000133594973580346251576920998310791123889271139593092607487761534666124489437609189290061809020394527767973709478546645442659996525883991330539680147576121791308170122671621390481211179520062138777637665202004585675374500451082391685886766!
 9053936395695888851807805434626929011147383113139801518638989705970836653569702162211733313366063155192072154144192105821570374517700993660400096259118881954856466887486576548617838207416034249538597098171125185782803822532126501819347084827252045322349671796336415114857666425937781480748803421684797087823973045767240679900399414869522895632189412791504200091176477731675038064168593498095872049996825618063844261546691256160728977664080478213757844155537333881897592383580770441552810324072586790070517861944393074290212780584623562750412569129060487099923031489323984692982898889448058796954221340763450745549291091230525677122642129531541102364545805343522013202988832767721702373164661731306439473873166714289577458888750828719416522883860913972220623256921112724912795222426266812835233564098604173994419282473543810093702255981946824708300036643636652212199645482213588481158912135932758659553175068717424712030898182251346254589023522382499572716288861601448381482457510597080125!
 2485450145504259414312658447938069629984357118720442573740743310437533
812
68969836627995972508263577061584949374338119122277192981880240411688427015674301574804656772175208518341273842577351424077668691997049831813214480943093829954099541326440726868472091794268574397222529785394523662564979426649092596511136746581931480043194047293291834385196241688587908195075877100184552687173865963820679804766084251472522447864428462048551212683178188196207029332304671840968246442151495983640427853270568205968922232609216455962217047004526284472481808056377910441754695552014988666348057613170031106632374943768642067637495123309360556891661163223285579262658555266822038469535136600822348831127821334951798012923397745519256781530612354546490919128415295821279468479140872664073695238733268905743014895055220906007754080558736407439068938847549976859670690561434649539063799348994102783227701172145175023988731663160415590146450700776763286790729850370155874223860446674681746212473685809410679029158378480178354564532472310206452030965119751980039916707521103233756302!
 7463023602611471879070454154884915535234433179884162681183985028255188280806962733492426728529672350074396051533943930895294782178286098525513326090312707740433165263779680356153275479591647472531469856071370962464765547967548209481517432853876502473425708116596666784593868241890198586588150674728992250358266816183858746760505786835523911166803083665437621526426444210882982312596390728861988911028753654176352760711532288719759122652390643959314992910336949545374441360846374536039632191603054555874767123290441014409641106856063355349329620989190015810980840489219774102925487805856434457870298318908663675818232062232685681920507504644356162053104295101517902052991724169150348808489249404745747703061110110059076435475446805286679173409198375145984620514470026746470551004168751430115912640271046393057589801081778158921440042644707789253451705880303816219857656135417428502937561681454889710104624958428718117938376658291443442974570887441644405137351237336914503270380111226509884!
 7069304292168839857329916275899259818511057353680006254580071397628993
24479888287131725392532451197419071777913286829972456917576271104163368906182281563705714035910260668161978507242474065455496795587334086683167078196526153337068169861475568569301370955520466850082052363633265886610107282912378673228994755893341637839900471149335291396200255744107742361349417806784849085451294199495698560331809796112128949018209925617034148205164916172971097685217135144389393716320718489696780709193963136320037012603383532480409040033924068502751426138104161136132594090493537431239274343495268628077253534670984474491973928874393318130705174629815986163841307334286809790569991699389399988718138776651511957395237991646500871026842575022500541315547187439973200378961691974505702837990979823683447643574225572602657235742519923894230492273472981917492937238669184754414208090984577757662819441987917671900903350463803303356463397649325078063068289417617790314544157483516276573340586229369644169196601377300868334497970475455490211605260908442570150035477693985654845!
 3861538522436878799320115799059546627459077135383961562963520854262028040757083931652029026013257482777396529732579120274748680689595694566128317742367829575297434651441038838431355672691244441981535914684003784089851551920520065907278690423440204463607807911050933868661097816561670116788683655002908307229394281227228218557112318825295244294837984041879423492412766430473583525093987520254193060990592540817591347509041915911133031285171277945227813590700780735320400478581031326873358511344394180948559139527307755389527616570548859786132357401258821984927723531201041808420369583207919578011670997059669496141173172061553298408692335061140860007062035889271959464285560130094167510874725466673760775251701224558914177503430444367278633883898663089450688248625230451848978176182914950522818731241774206279350918383397726681077108705896681807165446912562597205392089613103067337241086538345015305766476692888770013881502775530654926599428047763647125177997847588452866933672439743164885!
 7171140307169545615118684587040462293633306305717748871274454471339266
60149676801799529908603264666310437289255675744703179403801503042729310606312239820810685542552174541480883079098944014239020295957235222852970122207680153051175563707695661806698918546031331573161730668361064614753031037544024926506995867738180273719962658951757195750742629477722216959539120135591487976265914621328434838201494414793350920832206193665007015522787103586452024145628437162360338775458140351975339492232482672903273726725737131506046914943326610673515058667936450691703901962298051947466033438181640740797953618562108425257164851982380685960123361726736069688946340288542400365319277691250546404104149524601732898459650234977818441949945288563803533666651034470268449101886720554990711100769491853363884781095114961859724502027494711333686646549997466926650183428232670604714607893318220835226241471703470819217495020543206976665187314379118875861595424544818603033138981374599299102689521838484308782361438079026605696921716772277034177203690358157256467213573924097830542!
 6026019404207505182927362146549729810476081617135004591171531103958775216828284854403935547895955531798886324369423856630303957571139742227924913384949836405073394284923655252937048924106159929809920264562498043888221461512016503721846695380910221194912765182985621738043457987465544984312095995341608494878546058624850133553204147133379483693321747977740928864617380475283425714956075293467864429209562744775450633250416260428026050662358277776890117492129569055773167097924463907851950949123824838207004399037447274923338562110487849042452842818407811801398412625301011261201364161782005879825712855047072883181472269768026812297798969493462959465585995767414064401884743055181962851890128990556831515776149655089363239515311815883337948981096018737910896657079470757503493822640767520284911838700931355670554068378967674736369278099059272847992298489022845653068879174329183154951393073735489353354852237927693706600584017946235386571064535046788162731629877057029230472364010347636856!
 7651174631881032366194171194340078755585321076124967612393441552925909
33040313565243267683853434867256440214117710500961340851728933655278968492897625498784386608165273920836568520936109109486915820048781039823929045444949055097305591699564218925549018102123169264149241936591639020971449105297155400507987803577724060787208060483389624669345262790468413362908709417857444600258703742876464496214592718941118508687816639020478335349695896844227479756192837910054302491019845657775072524890979058550121334305877885155913498440820348044113241872642048053383458068072398869427750668713588259942405385563654349209604899856176860881155752804135359879876843337844095773397087290753977071088986064807624714611936184802130028021917068962220250102458267861979454052983926876903800141236762785126962530816341269216745255462417439208280286152492988670819476463100921822623851212196098983146191502289960559493027036955494260853099924223582675778149078095421596137690507780939866800584716429148615083313548023270178530227308129684575653677642878034591702638245835069440567!
 2558475104368531747495065498735379549933826148570401771761178673005864341579618137655351039188870485101584191685475715251055446010615104370713954740031293346299794251949410286929915931935094424944560578261244556016950689857526427107112823511722980079053781563224705866243284508973545896270483580833884523283264780545697028448647253553039492925248531202558347657532971259398659990619829899065275943949212790463594350236762682421520364880052422633259275525980239927254293352961012928901887019731657984835250313626535527974604718261327874466046166907996911401305786603173922662019790959279744200182647839702789889185736760183569175262762035641543442031046155670338169591817890518538065765029131356636301536061763337105929351118460100704877988735601059826845429350276841806088970731339999339480651880791976961358510461381109252414695662284198488128989520043310150620922781225595459115183855019207851876135484354748805319760359487637618929126348735326986907237113402646517456003969876168282293!
 4447420440853734205188756288274775897223672301108909000487637873075895
658
53619620030377333749707539198536635284213047742877949635137952416681685099463590001273323690708142765133435263698076802926330663912598222746764406649739046194278237245664273691316624975871182143973249883638898565710064013143256827737089503541333415197656352393256701729539234676349539814476778088059584684235074247382528994088706127335289345234782773310433991076132856459331553653750820615963605448068458492150887039217121538954980143245103295008739279081952714340619949934055373503801612220651331326664429927893569184508173177870114837899632018766068730704954321557172105883077613971810844465516540554169930520496673622257556355022161159120419506160611955329485697879527644870985995000720535955275300619265660805950965743238931861047982731049476885608971974091736443456605170874132105925590966472354648370200904121653645721280967440622928581481416056845058008148361440076659842591895116383011181434315922397354263171844668352379174301440328096644154025710998944538360624051626274828230090!
 6346987460613058878135630276169089306064118606414609859782845758569924558247252026256888026440436873350675731267316396999994281372039081957383259951248277931494175246952390040993403826798711461697662576652383691375617082385260403632389686716148616395196355102648778489495844707500507917107549390069040411702638110361703359132065807367149424092291147269369266547677107096082101221493505320177957781744751594798674415142189799882008373879479536011468487102332811753730757249845937210036288422462022979177103347143347635437589959573307712300382483273167464583492540518163441317048641588804006804190297245602005253167386496140966505064348845095936373884676001936977269835229687503190044899957032721386955293359773044625050738598748577837401661059891769468279627700400218211052231003503410060590737149115739761465764895270580641051595007033468655337657519817787458440363901794370783341174620591753561948661600685712568142082406419695857809222693399737948600647244545570348378683663726365948887!
 2673837351704153938230698540031230589630434997077130882819350408529974
74985698520695725755871370208865615713256414347562390053401406576633054954726360085760307303333070782864747431559087221528035166934407906849639115077036953267300821807420390914545065684728814086302401346787564329536475797965809414323097395700382822913054375361802741199934638555702593747017911656236215747407924118422901599102811640339674970202738384715407088130665144823339554480330390977551053768195986366336452836612068945504217118491695110553599531051509045398674042041012688780642454658705679423827318987566042714139989569487863734243557852823032489177383482514846024359071266054517144231009776431436307151946445724893874656832429725957556635202429453034758513370788948341474904077816735104865320124298696203958414319682720256503446182633408018168094371169637368978780051624955529682713410035927170918820403635392054312696740896823865094255777297106479480765687018256902814750506623033577898743451705040543143534320802076870835213500079759979299647918646229634678083684358981467197255!
 0283837285794374129812630125078974794373698031489729747740783260710372399618186617498516560949384516140251921216084798919539007774395066127336687292873242127616863902107047194827094687202366734796519629737440266082449760383488832575861647784997972984963931183076160113605147900059289914690986485226439091121040852787066680299523218462173592053584293092744537751443050843883246771338533822655142509817283826474713910822442240107046466703158695782484534384876549840312223160281076384161581331815715880439657068264877700689438490127548330903771697712296507438337944003591486629875707435252630791081908372681299699388685137663553402946083769445431617911849704620857058700307265393716763161632468946408252707978772554241547986660983176315445309682320592197058298395375413896971933779740644604607915739811534446225048738496163151931233703734380150603852542396366697426869671182731362353867711211282432915275734655232808100811261932260639625367184816173230996825451138731481382921689220527298872!
 1244046626991547992689635101869673914241584154863224454136132759048727
68073771019472470173130620427620745312200460046157577176133913056063023442784142766252583898769038047881988418992020404060752440146990541409535100972390429663519406688732880396299719258255438061263071439483987163823800640886605552995300290271081753696986504659874867992662093215034412770626717472465256968789808542838994610671891718479112173401375814839025970240159384299166633814971984340972054179068378588268959186822202811603021773382886852687111698352202932564194463464453650317479562626074653723388754429073294538173056040996176802334255980066904240482317223700410235004628310138284878134910569815480501241885434797555701148727525414576381827016397003707686923561293464418621615446424901083866606633900726173203635544655555680509323608873079933849712809909915513321739049578806582786875270319363520514492799399964065355653998055014132891676216750230347890269547043890213400483886488254916164355293636357820782182796187966625035014697609731970572357126465312294744231937193651373204775!
 3339112331713806096699473222041990838269826335469575067400523752632637195778327395397224567181921456426104524656935328148101749217732517479158024741245159827706546643670633910005494478470602818768759952279526896781333125917563411477126402435587611481197955919252304240744636787986835200054566435498511167365572735945366294368752337874541731890090759495780452746257028472031589699432863026580008353416779822540385189795070308793986840152289169379748133902153951842472587406809648559408096208512897573002649285974399872972276263053378654345916389668157489126993479544921465694484736120705496592541589998612799302270563931178200846614903733061282462162674701255206119144898440765105993928778598181587992299861388609363220200309354377959894545331832235168355199812819911046558683143124150393749261379280522087936624758534546055370687336712322044613396352668711108126417745672566839639098815281910721159789872886939886911590784463403825902898428399930280515655824170699031250956201661406936329!
 8781981671966209475022905783773376391217283086198588998122320259068638
75396638691851415467493946503093378456173599746638091640119835921577293504399110374155908234613407941683874751524593481116295270757925979408176428205133144787416154291825227826431317569784322147652956031470267108566303818813175378413573352337163576746824425461084427863667555986813639080723478798544109710331676872363461236102657229143316258095024308486366776946520244719426991207977205974868655018655479187403763905639045912792501459640568508467536700333548190400135433265084105465002189842131155798810248327897830412450609101637615419000105831743213689374733393010400381814290010696619620397442660397321929465514408079750294976535296469481348910972988125241524256942906702552521876346333945096549512967202167730809262954860272752691405208741293048027595877926145594368080201779425159168545349027921538301452312613767582615004108404882038420032436841503531380871549768724747929995372526611716093537562131806827295380509916253219251778096124505692899958555720723262949523007283599223965416!
 5654940535120684670495718165592041255075052156155292842883103419482568030753414012330749653304406864604904423664983931583846894099188287298133718877000470572664648074691697372383570682831583331270017401840042092000498656151635076563829604135787791317428421449914170029592506252886432347779625838593640953165441032464258383934887165935625164020007864478167382678326902174299176718913779845012393851791756234821251746016054031495369076668610019850477320504328111348439418946477435382020194165441745641849784308895730692386051145310374512296842562566654900783942148683137316861307493879190216137765739480282623201120521489637155828323213943441886749922403959126807713621869582136976990657025710865380614723370215596099298517558650040762424611446617772220494782827520604828743180056207429024401855723056279605696049466285221880413166032213580925102121457543179968915631959318976516019592758385065130781671200743849390443443535339324526000364751870865385650521645013705651420934082718260962216!
 8399617532105385361177698503757393364891516589586836570829115692180706
057
16320478190746089614006703634850605539602569238282270277184486040860059590347283820084677818975775714690465604875363647223950935089369978927585026999947392814408240331014605246887525223426934735336131053603366141860324236124359570878350969551594770888400269653150697772945936789525960184963845406264859407014889943968460678614322007143804203655478625869427549968128466876565812045346482504266827898605361652739307575421291786634189342824208131216571336674075606715558222140671659296595637137939185472421200027007550358340504697193441795573918444176924113106587718417715056563872534425290543703945099233243635141194831843676360453474280415108415048656628238775028990606297234582252943172623760130640655777472174939177365943603357677670781778474175716946740209061622345125257433962227176442352698953628727395793252780314885294512859464974076017241804166157199999069567352437801687594428953880922003128969766970631788275260692177080871501725835551936695032362805203498320169998598189955406032!
 6645317108876446342203225433718462456439028784634349170225597004852157040524153615065470737396741539729108950466025411859275781167511684339303541433534253195604912579961153699474250410340728194745482241155965845456246088273817062153906739747366876633489034210409133463984106331924439270442884227801299020595009602449642702016994491442539699802323164075536699628624277002842161379921916223159757867133032526461462798550186128373606221847139806066657106822525212368848751289406175549351310494226168463509993520947593020762272032347779442570415915189738270477646087414514986494464758248108257497158195778195207250238837055244890632861589320070101294714095613370720552235087132008899715670897116808946599820413122728538297534963450275212588130037316024261450000481015673787849183930307371327708838038323282193639346751108557430610692779185105814991833124128447564505129181148023121023360973603192950236990066115775492507997536610863952275175622564731752184818115910836560082276951051481826422!
 8187517500683022672887983683613143592527270869505670118780018010424545
49126299730537877396860246694410337845067050862272067865980411271983028384814361315465278006095926118001189832501793631978183126848870929168998003640833250286095946296947494551361710721566888979326974771586946511575222042451890463460528776592387330002780956853019922794632285596555764794575085964382732112974161623878378386106383112244891355963982314956338081616200621418725584353568514852678602118202350264141211215790813684427563541909548698158661508211940986408195275604223404616739234079588770938520033743952253935037234793481196336505105655129646770923248057391617145443475095539744412725014118886737871309714594908262054478708941428474548506781974664684708984285477760469483129202684137584880146729874252713104528205724664891200012770054118451493695962249897131264314639895434606729098846074672273775862988692145041396031353320704420685445689427777238790688842532229056248450836468138377668722054103998024404077087525585767413868363754255729684250417445933629582749165310689590475421!
 7223124213612191938413096499616669191128810580775493024396060820556726217922460065052721643810281885836371504695712725549008617698020768289399788472831650229629301536212244473157281091859872561287610754719988939146883444407625135934445040758508107686821598920633259187746517956273757575209364482190935780564942057320210478212168775835520684374756183476320643979362103052159001937758099524009802779066409576335424518086444633098896228704983598532521893270834410924361211142272713978053117651430810864153324039244392156796814109962959752214064020175892817158362237658710570841507670840290640440757567695071719923248258333660928677678409349714231906795123157302479087513856030704816181434265651239291414222450978962800574335512526621031750738383900648191437672738886664361126579794541232727328380569290265401132273797029523363388858289598889850168581345887856626869776562071501459646437353026909763604463716787115118637102518641058145210496381391907333947310627088570712982008736244328809574!
 5501590430630972385401782471819991901457243692713934779331087816173168
90326198334187929738708188609287615750784911821864410174357791013205201071311322897088451237868759669848708951449050111973592672122311098772352946627593550520809608356279792304522748931957226768203601792124533941304353626411953775236895165143839317668355113443699236835235462642657889809925863592158694310155403319342816242552761620092992902812084675053465375631828624126259874830824676704113540862502726251106460356516905957352019328310601068292528187477251225446049778460681128656149576017780030308235736744617831218699801319717531054008347284986246596991859649713405021325607002091831715927524079176036729792012949037973027406902736984890066159153458651030968917126656134372183191727773708592182266339653396480399799400203051066407111844262119120088820387994218877560851438920554150745109035585459459193991971122620589613168839356730223270499176295784292465563282970998337625049559193882819195955840682073407995987305405654381608583877778749145230020774029554059095396507209515244629219!
 6273468944353066126889884273993093583844831224324416202916559131797500100518540967906638761882330917875525889658397688197873681279781493105930939568140178471498560990784370735900963490043762171373999652688431730757057853514631499855220120541868164691073515837361588549756857651761943092347684536893039188355122177424855128929923762566813447359922080828314237467626385225949987980015364611542414353064696926764112993731776892075615696479281053421347237613768843083439926017329261784497326071557892744400053876170916544972636066169048898118645985995252836869620770266215429775709761953429058879582146823492686575482954703698739530054083251551328465652687541604474470189126461026744203891178451382487074996519237012910629654880482097214776317196110955957445847723875870215286871501510922629841114310094607361413586938878396816975280649663659718145749086067704984376182327277887475688804767981239518779081028576520779703899765939127169641638158840332765028272545635003863778421558873488932990!
 6023323225303619024813721607787590798062441905395928251843106860887042
28237452079358021886514223073329689926925506081681446195529006880387533149853352241683863229395297481560084357152882073930813152997296276292551436308102400505728885143192705077268394728488298355528098013081317565046907419116126864193057303746133997264367219570842133684891965752548149260832648564255728204379254410447805430481437715285831042254298274353215966440344609655462337224845836748548786094251785686236008901600440043947569859541299571807518362106178533392828599559139929396014382134879008801381894819090383388720513174276814007379509149562197495838987203116379810301347913011786060451108785502751058160109750802209171035894308639727134764894838566661962624918226953451601493838289472694882329491624539295386968860475426641595164611215350247841884167367040624229018032353253748953531069010997385313894091391654686392041483155530501362125111288314930539825518256526650532472406394558232033192838519869912564691796453637889500226116807171343591212342833720777308940142181288389570039!
 9528055602566854659448707382016812185639198833086903538362252154255605496900359573650511826739137531847487714907976353231938451881963837870716284490385068130608535423374683975628714348382990298601390545242606302843463583618207540790338068682588869643023200199559747085435527381028993149709133783315364917610135226177841152824636159552952920527521441214194339875854566450624576053721263824192109326328200525503327502056995943859092578877150286563087843671050267037676479022288480684512769226783613331714455177831804159319417120441236921818128001309871871572418718918001076560992668876989900936744751414911610860797168264568755901586091505717527701873926439285820139536282381129471338783400414066259047729823555461186300191863210269153817426120101961138977077994430366185349111995810774025727947556007869784033591142037263926827763960218109951726815067808620113822175606526749354570838043468094442562592020859579947744902044135819874597952270349966494933176256274260000292546649530860450579!
 0664416446841354980532463706528602582926758856706377930861958954681352
790
15337927630168477299820316472730836526623846859680957572320803281165076701506280519294850853990465571379233490673806787972336586911709554716812009356443060177342398191323810120423091629435952551811450701971166782633575177535831929230927220502731283054689536640309598430595484828279359398693045298595029502315753952342555468100301397046947471697518825817143539175329361027387824989097131856830548749119149057241992769550202928257659452006850763819700646156859062333918137768703640405607983448145208575908997194503653996443731654260853969474321223118406689372934452496292764755895272843491917558972813459092463772727852891500430589084382709553958132885286412296640921446099149021612260275109235220242898205610395771535746238915245519292745758201533356349357999737263749173361858924766304154358634055476787830860405917480466697214448804301902889284476885112657071731361391251033621653593766324570698178250033493309631843336663458355599278818019025467268190574459059674006790198003959119870479!
 3746298130691890382966539218323447076814979186337784174821477109885629484532752205789654453166938549006852665408177950381481142939019385184871801013537327529894177210286607800429661817491006625106051405212773979844907186436466182656236261805104069912757873370678901126945835639380098872557202248351567313186120285223226532195592503456716393978000534662336039948437042013764147152899867096721593785200193917613164799828546809271856406596074399781830905947489090625007762719105076175955604941202958082790292004398366494659677290087165656992894772780594270593579002867866436849938644001349227533729707606428609405959444813025562631271273287180996458470936405778439999812085519112998273901419224883910220910749332980131336294333547448737069565217053856657730182198309488974126765770566126320466904670435468638207864799220653368795148682105126650051593434679855982232913752994916422984260912768228748019132304203398150455815199504789657915052017596219489749521742599952772742924989063266775854!
 3834789275332647544854034231355444149392605183605533981881246203053838
42991920425790459599456654631726171950721568198068252551283857744332177408170278108829272064819399635123600953867486769126691415271634509946382748810272066914117588237687584643153294005394915745698515880429885232664926266598757630205472843547920542876717364002865307058701119032916269593160409087010078029376048288142644123366723818587292032435071314308241414887841495164082606508527107442115335177859829371034979365761625577722022675914501751559249127740633443662676829051941422305034202935439425481294597888887900569288215142572756704840353389947034035080166227580956812434858210089986314815655155549951334927829772103977633889833031676931032656431493509095869050853826287580767198279287763347496733590116377742009340355221234234328580375206685061567870935566558830543118037996720977290240310192441820774374190497427943750561083926918067202951864730943786127241120018913442475983560756214891761485348773568319297954413775341404627545126724138212065297036669917804336690411806400237085583!
 7902546935051034040106244130003880691958395493971403011452074503630699015860334602455935714794618989761486318145568657194712965338484448679587309893888726156908343125617663890375801619502241222606504194329275228916080421082276557752059383389106690138815055455901719072320106841575555684221497572694597095210972035430659326866232017552798819990112024142510098124379623835304268097326319293364294171229181849993915262965153336186056834461332457589297580314772017846788233392936667105931029187204857019142225883893129608393344511596263315856971075174841560580727926090548289355667755244167068370857646495485307527000574283354081580668499923389311804903375297181033225266171274380753567982303627495114692587465272793332278174302421756293536916548631813249130878026828901069996947145059982194459291479144574571878107231157915485325002723877016205253368054578823748251299013713472324467007569329123769511677681445294433736068484801021865345390809221729548302308614175070785518061115237823641661!
 7043914734962050684766884525239381206251353050008037844002821560919161
81905400665543946926033656374846744583006325218662472190313388650831875111250515381148360066796025122229052903083125419255914944058161447196052542190058176634579695892851208432634048004048792034185939688374134821052046838264461463800373493491082145439147675990188579712757546364989316490993582576590399486639960173335519977329910887255783158240894767274580549071942031608128337018871093715934218781988318911492114879909355422116377385800057278817525306048267989024530483233120774253035860316757942226426561045027794704033395277729087944196421728806830888977223449133921515233157617321133170786490818546572679482840094249277393804153496094779003427635411203206244908427323819301599408109094138960400165364740973273951292749999161334272401470888837657412676666039118073670493074034849113031051133901748285603052917511526890017829601268247647048400214856466599099290144611405390993817296193897115694452100970774161369279413122801641526449010077680021197465262419120722735911717901420361356363!
 5550678367597454814063436811746111382210129242270349224856227345761396424594679999057945653288451092739629637334569997372116727082178658842643970345192138517940975013809470769563007147649217370316717417092034151279711901043462088534009062555635416112124591926138169475480442547531761218339472147987305335471338347672355705605397653987237500005749557116655559124678423816481091789179466350217132794205732180259925406060582209800600164887140188337366102883750426599021483730996447817524912497090677117110794997433468376800057969407042660023652588788852815692884011300090288795651876857758561409468137466895512134045728266892690164824643644394989847127109933000095039383507547106576338115219604661490389963779952132791151765264573796157451545625248252892067251238880170215688764348109243171053943212199258511469302756386004356013241382802604889166029189893537085281146799270990423790899006828421531037450457290030727338107250387464278347839946060246549891579358226595922466764234859024692966!
 1628607455516487882532007996182512900670289845482532588356963484651377
10844683352516422693298718306113690052546708157557207938517331549751052334423396068235422307281576850480115889085198831185502054024760065237008735530950311000006056101727740793931753207145077148598478635674672474222002077026405705982920076262678332733792194488801228878747614905068569038628413760712490127511471372290938213539727915590136144229322439774550560505715430765896531302326041690499095584929122224345449514218977688255140616160691258703828120047860693351554385783277304576599153634546929892886951955489734244625004163391139425552410370149121720969603590765474729159238065217447984333186305533880317620825228581156969976615678268235549318191025196835812783532978202260784288006133586462296612181837427760842829682034576348231281240504132101881382146234890590354151375901546939237316146270213152656274254051253348040071629733368442101841373433429704325688112224405304802077185669043457106355071878644003644301750072045457371419424106705307006678165863899793746470867497482973500484!
 8738178381298585365028127313206663282984203894579045066317335929524765701237442414171719572231082915785572762593885781611827893988315654395780452564864740236481260420970728753872758521649121070537570006221357245988082774824756758230412955562261515437583490862162217940169189756200839137037576519108775218273119336426077390472505780703154736135882005063080588033272406729032523320661696271770554529815974453474645877721284777402549619599859372687108784701247268632507493640788562168254353771710208312482224354482582399241198430412783892755965553657273299618736510516346741306830858737774465336176188958475511512409647558246696153181237577846237601993615525412196429075138389981912306378178329402579710987089484925201081359536123063973715097074494379447682542843559214347403058906634876474950352262779260212682465648917505458680126802142413691423560948882420283431424276096331828745121228276187336376165670817601612082559359779886079274604227885930607847243483597371865570948882165028728057!
 8175518134318731412993660243714946220071068205656108818540707229032231
674
78462914404266099558469034782984453875990738789759902504935882516902073139945870240877804509275942859177447585337638730414813714062851024915754521329032079405604321164638352585923585100685308626166155403058127551072676619366411965708242083466939557769550214689149612149656214291590368568809086754886274407049469295261679329772086976463953782175790929735717458958148812383121618419307395609185726744192232701156818240167481157403357763076078759054559196758850565884101671462582106718847899456839316390331268506122295230206438570160830714617498428186520414363310796307587439803742344414419381446675011798436972520750130349178995586395727067124590733521029013759371095913050046901943535272645711799243680652054745991727147187010564707049657854718068580308220745054666844387789128548310701256412166421425017223842095634718309117010789109911048130460228036877407806674965903592251916333275641704975944430109336304808599701960411896627092787764409263280818667844855241619125812041477010538388923!
 0110877899723570913455494343489367229206898492631784055585134943462984881688421202733519193295583218045145300526887763963149827581605030063306171404678265672571784569079279926920913594414932911192434701500451459234887976753585424053198643101022322172029537437236633066503587487540637449469932252617358913806403233032416848466188629039075798512714453706532172383922569906393607228442860210075928132513152496611005853054071847294505939705527637185201004536569518320214542146571108118551502944203516108402641340920376059392949975767652539377852141940677311550651541241886137800782241567278627197184452057143258701481336026961030022209688091671974375646982012822199309166970398540243116923930229669965678285691401744791184787764645411843889413323060066263642748308651200364224022980673857304419811024165927650211163167004442222192558152439881122375866339568566937736605543821494131691980807951441482379167885564206161995858929966984158866604076024370706124177851031151406112462048809002086705!
 3385642505617528910760721594921574286875303446508438104232841212485137
54749584225771479701218283131279859948757359005806969542751818466574818548308470149065856949862036709017733963492290138502431125017246416301957222008530796684208366441589371869154622576781152652612173037671052378048499200209153749615108278467894739597301695423131406267408638463512814984010752642126049231815350950721009455990068359369859620258890974518070830095018592939515868013882585719249423444708200839403391169332791339060895159508362911759918413908077515709296410446857369606101875767606070424244152626782346813745386837408119268912264222635336179117230814997225866860939086698078304070697079821852556446747020037863060393061700645360881502588557804718217950884900916537522592657901997206667762391359946094446654554951605096651072795663801406544281692569968166732765980409711664840709369581407654268638995821366905694192373065025686623700108769780044062903851205118768141502009722741584319800002523932726231687422975079715724391753761889181005325394607915723005438271631087803616616!
 2582031094146224481511639965830837554727056424809463940718436938365033303756087666913741941293704931356425320067311756566897467491851763595207100590090566214760635528701570544766083282574310602267678854935755818228399011826900711850258176079461087035737477834354672653678961645678203294739368858881287155992096794752103388002756672323950277001573428011569402506106870691110021936846611392678951971687850134938520057505701892761959462219748065439220701659320381912469303330596779231018401995602797023896722737309420349110647132320221645132339672795683471791345115775322725378369738780251893218872758421667701645079704209814432037868972013600822880176180077415517409747742598809190999811359961923918891872538870383794123588935075730203299125529622138565919075531938816783567066524123861766680253509421883226052680577234358200627146290705416521594419465473200158182987313666970828063084040275678286902599166946713743605887814524072810779080756314835366482024621964053796515147290341277885207!
 3984406575558530268144679855936119591487011191460473332778015233813210
16054090554930668002372836316346517929965873501071613683528706070241913089205087533407448003268128196539125544953970275138493121895639111322373325015202881846332651760613978169475907526561369929006410530240155040577372133346559857495047054308097008229772614153609501715739558944096411106534244869756496765499601617620142365184010280412474811526547315343652289750049328074704560844470437797779394634582410823090716325325681201924461209894620447288882463191070856193426553684730347610464904319445239471119564918070534018081014329351756197674263827034076216923536513279500211025156663428616525525360389617092672198487595984895383968146516473955105362887427216434982857871963745038019716038745057947679140039285374318150771866067023309143662404231198955349466039546871083944489405071079497988088206499654566170887433325631276312141239152834935688048867750171706294214772687289861031056433308809117943635132762100302480854339391461836101441261112603976959590955587131093413754547202862753956856!
 5057905937031827251342953679047247248183650456584041177890930285172690316005646388818761419918250841079992685456155605083790107078692711766620746154421210862330551500900815832899625085812275336111169221824387326959333308492849389711684174718939633593597915311078739378538495051320434726561983528996633086761103971600606127729796551624408065143849175224939979808394317000323292530275333078499691592124188833770343519811458502851658232387619943643496211413976814755996528576249646689069079389764631465056876535630953638467085351702306883951563250716767235218609110684946025950650656654292286786413409445477058376684507075801535150661731492363475520574190133937107167523314797133622217040187893008341765597107995666583315134723851518712793087575489371234985413820987203847413305474726125701025385426278878296996866682849766974238239199264290600682816432959931438109680902212496235291319289006439264243210216491615345785774208133694593150594891383899332032073403242465619047758892145011788301!
 9880339158408834921682561848816357572957284099248826117848008018949442
21020653223165846780887956933619488113138184269647358396358858350681607328519566834461975683834137118336305375684716942020042792984224430360646429076116838176724528330628813722024407630196397697372958594324832661074256076224610105810033965472550225760982833313351360167668646744080765764428657467323393462073214924189780059465036192460753435929562176563640873259595679274271140012138539553111235057754811640059262800772552013948060222903589761785152736743038021879624216012342983091957430137008985115172711669375842368052542984165496211184228528547856371341223518629208719464812895618224482115872138851801394976579022564568502284306604695783784967307842864869135710333886834173399361026828094314642578252444491247766925028689897522133768169244828247675980596055087668109452068264547262392715648832608097053191453527564803887295537241856862798854762927931636917741675085303621806853383746406787651264654154775981238693721465309524972997028263423028174025789866762974700516935561848775777424!
 3911939991849727668551547023752207694864598609505688970863740481022141120429663779710850506120565479239967621684172022793002171074773893362271106116628370305244517090723303584668716390220642269599238611656516955020978405994392715313164540984934165512492750331507062572602072242328040015131905478581146623570145951859626497169517043694620084500309940562953116826073774342174612315652979957904169810312577187104288554392481629144267557837550140400811413712490822558524927500103822741500817178953823990543596067999849415283634600429230290036648742638888400062399010001839104405999714911530109546908573141375667630849190400613937854959423678933731771287498492101112099301971604158725971720178165683917130547948082869849709188846120689002995356137531885114207227950678609938647323024475935476634163061902144043643500064691937523075417320902399424408519229830339526020762343892278177228000534580886903255378730517523066169381352291218940371194468694315886892533137671388365472633340335285525859!
 9034545768073086380112179509660778555132510408500553753994397116182368
718
11721834820336411117328425234299379318295057035800784950842556686738184455279853068904961815637034409715337259463351625986643478535473192394123657703600258038637353994484946843160042487123695456231425412775846747558965537946271326136729996842358084238280533349553873487300328646566910818640324678791929893556163163970845673380771660999984840561944087711847530409226604959638506379141847456812252961553272691457820422629723408732481900715594316291777980167792134872568211315006469833246665225053463954394240699036498702431848366962090616891097067207073514819828448127959699195210950777751005115784338507443926940504245283321576717075798708631882461314156152821710017173485143751135862027565937156500534744356651017851549797311777986718597585164524349702120917802196533228505183985624293617796834626687398592660590018058826906640188297157857794836849838023493325596225965664687267908842533059352030033938472316197632150531472271949243715557329383175884153724527977195887673739964843017128887!
 4858360541975190932607377371242550817206530512447360765263417065911282757629597908568347486914153205837810233358919478765218185755601621276093491451435582506296931921274797355764402888064635907152301215094500371397915843755348253997228678127768541786714710132367926966598613216466496103652954457695129520145271372619657772919252456907269463306458946194402249861085455984442912117557636857066506220094159216221681980304919770974833257073054353015873352950935239062269585071462151067594655818317755778871280650595505545155931963424135086841799499693620695116643758383446359455142471023215791963984824002132823616707515539789762442984981171637318532735904154073968821329806634538982518515254700296581359639487275543855532174509220746879777613581061306520228997286792426021351331046097664446289640018923370039002926581199516067038178509735278260797820237755318154274582432512070540520860645728384061895707974458480897899018607992966340796209836371271586867760995396799648033938288831140222968!
 3815484903444089847857722229121231857680196308344765978478503525218653
34190127147139878397957666836105959707287310447221363452375864664277491199789659100414175944257376919142866211420272320400539249810229370705484666336203322906268526169523122282188167408947705992142830404088468189156299676063121727978369676977211448583654304101543008804831507919729055278705140409048073244629527368345562974832227782819369010329793258508526059230547804405746108736356504891830127320598452026659645076817513193049799792915941063213776123915413465267413216681999163220568868746267465547283211907375228421747776113397171004243816794391554170034823913088879764744702956825224501027661885175331649961813977122834337475978070142213535851638324250267259721294450661679293956830880674250917794901888261930487682415225822486635754728206273644501736780701395345132141311488601327727195851249357701234116045234488791937663145978261470890536479861817849828332292122102245664741910442423509246053479834648654902312105502830504078047526939083713136614994719901540983279079140929087531721!
 8826922789271384540806245978516386891048360293493027884919135259007345190915434591372519029790847274227469825229765289196973602699267854025385077896195776418781858733211837992624155281926399894983665366075710043714880254627175215718836181607966355877019331712698001379448281043410836020966532091439885194898744772873530224305893462537784481252741574801324893089138620698969170578326112315758774415977846834644514777942570862923962670591887543683915946319383812375729080620959226177169788161778270292122366555933431741676182780345016849723976192020909929646259086933085878360148453641266336409792134128200592706323712947898918876363349191440593889008340259303082217632324101042876384814747551024119178734483589381208872265466179356886868603101232639081316209663759694655053540923788748101976836698722715958516857028154156863881600427482499152912203808239878973957330949183642021905277144324362771490906169354009804421250481385022705099028120595783867203362532005029435501554183835865767529!
 8254858436285667692322216368919250846251243514986787409636450142171046
14566411211071835711677041291618786628338201261625458859304721204103913269946761728343632698269321626549655392897126833443571808567801863396508597916003707762691359949142674771459277872646736238936380574095192779174544851207187680801655329693741301398138434469287501164706545097970405353759163812244166641162621791510599322070946010315163954858015461122338857917276918548979720960520141261049028253151841159788163506485823270994286220943278756103595163918263568252635177740550047115288012637815349763879502214807739033702546406119766942171745487446543192022288827733883141879876118514367936298977561371942693000519460022347847300852850568154680275741307661809750745955831180653721446372068919072241000442531444064573729286466607406395233405906847047736501043017537055342859846600449165596745162153092349082694846793149642351478785425741903888603343610162897792499531356104682272989803701838073191644509078530125642358348630484512500361288180360173069545987535578192049950457871979827832909!
 6442196168444456925586032451195131261437390157486869493099878606117991622085781548633022058454697539835591045793588106212219112908557424497983258811760994243305507653351809157560238754151758015131555894251787502143435143229891608609685307922679490074421896950786578399599560101633240858752668036336712496936729481800639887472362920345168319920269297093107178301187274535805702412429988056731331345758355891173079844762788403428995606712675100041140371363615187918982685096739597202311834065138078473364193807058498224492144912352389351342447652872796327407913263692148434836815703600844829581232752188135100825321870758912598016329550011015130744534707025679049508331566298875954062265528260389389428842360246248685216505079617530613112629044232592186564644765046573206816526305091264198678949528059386608715714414074779191954430999838419541957013937230402181456700852376380507007351183899139155638053434529235570056013554840702924404454174177092730978183743485298267585937284700851759763!
 7201153969727784858241336121331475640768845427437858937527142242018929
53952757274451275277493252202831256207686971169977952722270717982577937049575159653092919969372549502896318918419366007157225971826845381661649687427302600918725107570329462180968363546295257872300353188166159923815920810641573541840554058930242873425600689723789139138347848057225372183756294503556514841117916609538479103044719580050695136922133978185760158243081789018823000415028785335460767193406113953865819240951186958027895754723105142133470084106118091390225695246071642479671981174807308871208338459232943830740257756819140521114233585863972085310927577100038714009354585416229852567550557307167021384029872329260492308178770925105877389146298277373171246261082242362637672631151248369267246706433951350856041090295372046596013504114286180170582378006513253646394084376164019749905813931347755785635127745750349533239947585827271892600029396395687393605623590211919017085843658968821675194275485292479218937734547668807663166075613307733004098631725331884818503040753737358676764!
 8332783846128861478527908909125304904519724998183703490936551785328408819985105391702165821714231405971829244418390075134985124098309033160026033528575975119710167163699634673760513223135669631501845592081233340155547088479694775371140879828599413237929313264111897581334473496117907712311466943791819279962390652264435059336190175949100051814191405856580629000031947826451467099257285298054398290111273012658952531239513666525373861447704380368960081934185291526245568221257497875706032631157805555207874761736995936229357115679736965639185300706132589730624349829982249548043807545556106035220427097640659968526889160813011656295548922103890014229239965726001368976508422823742538692911096694140419124995631205836643006408628196507322615282095428014908316332303041561837114898961478523455387852857124983916178338879488119590351602505202286238780759346621075033892246907024606802114409450787319936138345094669092300216368139888872030524429856607207420731399846818557891427112061526713510!
 2722936759661155334560027800257454666031540760833178880675009246252242
827
63736000521715617827959832280568520590215824244608765716401609750346820737269692872293234142856431068187926510755448770248461753201824404915967604363398913171559101163875164463685526752424025310839091720591795647381497546068614301441318422147321479474564587304163998533442240110402791539207966303007298579203650537500797415787941908163095971904276564425924255291799138394225566596959544805109898015679308833908623032779634699298282404077363720661576089749813102694611943218286102078809592473421643466616776639052723545136670750725864262964823053753563228910993941264601828263136492512373488057185542583544913547333413225134846960955084325265646558174984280732114308948531345024026698923324094194352680115181677334753740741299880394148886428488203851212257335060802022957861675866162769807660714878111910360793058928956176416544784456180184880907774625509664853384813216972244552739957894680342325406993002793007656001047269671046229577934171905626822246406965270413218359719289370518931499!
 1234406522885401935620723351122805313329466950225699443621959590529517034345168637540489373132828936271951753695218321445146845860927079646804714691047748471174141807847445543285794868974806612670012079676647227450778911620328438210033223809023497765407600039478342073232780773841286712611799552864272395419538879715217639550648639674829570611242009456604077130477510861633456184608636152057314033602903281505687771242690495831886532554803999068652614260341380820490427389502415661842862581964982183559010469539372878334147446790856534364410412226096275632243472239297840536176192012441478740638519184350365687125961728461612375007495253231019520724816552677328503553532086866226180233523874875629560366639409731332931961466523056242564748541050506811749127255356596899768716247623828657066149498094569165292053571202560118078776640893029786326633931304338367637824739499448531225909964968544879749626554355499277153286893888033624133969702412314169692930812529500659074005098518939148857!
 0232037976743184571473921656271930340822800267264115851826198050211809
72022961084243204556861648516890877023909397833189469929628405643052229755572719528406242104533669666299530244608360437040868496117786117374397234803690028195722800225422109773687178913422264842315354971897490599904770207904396404845915027944810851600769364010787161531147554375104404364998140119374072472122211633955369403205277963910618774226206538169877477167585548021422524996367854555740252169694313498925688457349943241566192126119454520479351420625448038620413135572981791461592513703267026719970590994306837496438005626166020454536855016827188088333515443293553119043585937724441603469379824784563149115275471044321184860012056334946458713185641364314703901235304646527521686203823075175447400924594346261205790424794820426211163943202086210632998145758585181026692834397444815921743003611863849976245133098044711648398993793085975119218040771197769533148991100482508756091957904198958882177558733210862023491250150775055005648579465906534379189769926992076265495806246764466529633!
 5910480324268582585508160787546560390571996360025209929646265808995571111349525898426509597118544022765451689794155442118446478980159937452006985861843508909308468766480771647360367501435338328170001291909889350220778031594957408662173160749604575078984677857884156339269193431384718606038145898038307558228285458517273320999437973979578791365424552613685440895206243148191994529545181230607323812759846517177463957763356162857409574198829530258435568135620119190115754081657668312824035406169114561502830351999848568034390123273200799149428253399325396620913523634095499697239082640146868348143640050511544778777224328194946702444015939395512797946832522452358658738079291356381685023902169511561789690365640528701916053932279162269054000298548964162848871146838611564904861862248733031191225896018948126202136653080549198882943469179617151796195409626850634739305170638588229403795973409882263468820914979339612183978010479622786179976523523506946112931354389392064711661978516935830489!
 2622023204178373150055728868018152406495733197890316334751005949016950
82267648905899650891962906649814996361796533852929478565643667511433579907858433165981827134867130497403167718195622891230135813967559186770211226569822482920619664443842392097716010655559025581617823885844078174063834219923990749030410120093184825274405247695190275721734213818522630683765862058125252842126076582724858493073932219599796493321964976713978773278664670099444747890939491009320316424766659463589144157280142788846366382951914412130810808915599996333210495077511176654402369188626750357833075765583790728833628447447529934399545632503016141720326323033740792114003236264540455391277998813271038640712720660118617120005485142772132484853565986033501877596879502577971013668422935145877264241009474163947265170832499856047860203175350370633337611562398160047095124207046865341540778888784356040839658731475666325400646528750082240749613823902814671482498040468258358298536685431805164671170402110735266653014871526182417947117898952568861181002149837742552223655212730444679385!
 0137303783469545208739624999694819017039695248457856636147285187062400839475112260988381004870769763918539707832606956832291317260011513473089426710999908635384468361132266283126841459057481317982282636569778410379984490338669755898263623559544532476535518986752640349911801802564910380027581930450950378753933430167833792931002668998960922675641818677136255843208552647705076907746930700158803385968776913752243042324948598490686399782828271912299754227650620426639398662905546518888994030056935377548628719916718638377249977060910878012027229673220085708301958928276270732138504561493780258288905282095535068675612655826166028733446035903918607439344312351918211008126728129191860656730319887931931127771486404270194838618178665998781198598423299918791282462654338192500454308775542589878113993914372380349875625750102645152916739386369219495069939911792715820441003688730309557969601854573695589144028980178564223742315187003743839826511383318090528651126316423532889100122383199976248!
 8010385132213414154790508284614000748785125640231611314734120347710622
43480072131006919341302172105302000890735147580656835230317041059309565775741706999482222349102217008739970721758141434251668057057781262245310879021887153295614525283450002217801530235857412565378998014903882423558308563518093117151693742014091285624097146894760503414478971099634219039695247637129901405956493207409994778129661523832119799350546250091458357847867643051044572171804629566972701987223933623961115847057483868216990966747659633917813438684698797071629622370264460952834766646968581800397344025277904855232499422053447632589024533724412289496649715455321183523109818166470077698268487322714873308316101595991722843188148111210410919263679275244836060798522584393657953240110287682288229904214401623812956710599526200112804666506350479704772608289897641344386238825347356748311876563330558926692828650595736994752488002876933362497213806557882324280432131166429944985051985430867431538646634103832697699213495083307826957233125995773968872525054764243029991995279240201586588!
 1466653925061510917324355732254246703544960591094242891343038337365340194482233821945248648735056864756859700210615519292545630737047669076629867000547604134928809869852879393207304689662106665009208836086540802358541584486708309021589291593474743952391134425843212536389682087331228228029431275572134348693746026361506122362370516547603489181174300931129293129631247805427725025965532756287266689355496407895204765505903051950967248361679388244987850172246723348805494664903394174038825222409681197490804050206583951183106777291488079351466199216244009997679110781083681316005212448829048071361413289965266421991540174721416020645724251599674194853294044705174000132642588956078341210071943907721579688320488651801906416337539847463241796644730477485410677687836464797717852566199190322084410593890141685348825329564018039547204435516523508672257157926661543959234980864441341715772592649836685187263403158417665245844048291670996942938053149146975887220676723248273281559730752860112682!
 3215755830681622103207319044448287931932652715618777801118826109301418
343
93845577290024435771787115572691848055364840282208599557769758046490582329063942870954720532959290934830097124550051708520981299145168525310110867931413059157157661948899684467510093780681674632141820090585793445973868505510342660754197435330046509385321227035818330952652672342099529551150728605313823888438724801190422277928892667807716948901370356735235964215305295933015588133977683906406518294354221645978164655265545214433692861870548848524968467451882830444849122863335552614387001994068386520175070472217673591165647958092316444723895573000663067412121507107064930440351384474293411638925449540232818622980947742491351209155527524351486902962985167440941956710026184977215431805081178961197919486853102100307460985805142665952217278616025318618160553554539785426596832014505222964119298238287000597173993085319473051027709912811590116042388797726949279007160898289134837212131699656221787069937767339960560736121835377857206791521949417561753705662919872401105021243845800802352745!
 7815243260816805106122747321356524708222612873950197315953750844381509446131732186141921123298081814818029580228190305326354949066059846704324891117261312942720042954462851782988013119310884112389723263455146685969404263723695202351492061475877809823213103441545545702578721455568875627669020789905459128191372910387065404077323562601658202290332059619262631584707685446457392985250347846025750069321269534897287065887994982649721331186581200949073140328755908797865050674717370708360826829817065686127842627533718754877172520236216951140666742575293511957240875305846045199805586034183639161901734834342227225078863219493710648649234462395023849814912408558411426787302377855713223946981465849779024906018417708423360793440607907888656777516625376789618346420949609605576728180711990279389134351261235547734560644222447429995123323996068435063240506574278468689430697617163320491764656135737595307543121293760814986301603056710099552248713342121631115240882653143481133920098596050838718!
 6841217154234921095524621944445074110439719993293438000052353352956169
28988657438581411964969614187568033078296997312522990469277560461651454306006259546979658220885723676731610499634916534722349045684233586566863295180383186683413994071295492713791151834278636391255642699383446805711806723218819648028519421608819294202648666406577485857613102151449425025825981468442908842370717198477734823697455469426598068074013845425043243140983038513785038998036031897606010039949595004636649576293929394278335479724118100032299184551139732792544204276768291164861473242571204041191485058797374731628358164070420214131908716645324491629436050040926896191517295875794386308626566088802053472756466894646440056498533968098548052059472836903459594516447365163268923366707435688848866685746886757963421019777563621269123394813784717474769766270873631790965072790712592286815490671531570186716914254587817501912023457716477195641048476911256716525398027706014065305989484117953680724545442201296649008990413495018305136384475903055740927213074474487730326434631402952361702!
 8030148104572993685816042857898522066789145689806098654666612658266947408976563643481414105273274610462635455640078891576853335026171831043248040060608661270071491932004964289593012504626696295230159494269260632023388581967376674838778714294669375537995754935941654695501214412888856062892090713253831562591348941385190966873031071541548698460662081106530711492581586096305168302227110888296670904146168796616591254319018262308511369100498191041024858799793352078353705905813561474464632313606414979272098380822832778538238112728024932368711506699979089158083933318918458202601061364121197012913927583109968791142161309360404197880677265220646277359494024446318258472894751199013756199254204797035788470457471736556075125726786083412116056094883418648703081881776522343722431549132503884625326839397364993990398865577350698691690477401720641302566866852498485858672492801436358616486910528606291433867212801648027267625160228982060460013359788302319823067059725604867748814760771048094431!
 5910184786466834798838272278275041877647121753603910679219663478981385
98437654350389283817546389408500627701487608867599512549401024766904760460726876182517228536135337768914693566689645685909088051925538672306577982766602212076786855890997428002957979095630715572679088398503544506389520107677638907412206145134999347877436540030072383696340669661012856225159638636689579791459469436712363439113872506570388272983315449322592393496443283147531062056516323876917722734120282683916086178627911520375845711263531114761182833410190845715682330356875186995974785396860651120632155691228706408639450819132397073887113891304896666736965946032840082003806151850339142980880678927408547477872048110791439847634583822308492142839363806102025027710646774960193769730630374349133757918691125506105134398506055059723418269916984769004445010511181851409481211467366045131177437851010064410022197375954500085549450183821547853984245573321257997374643804942657297012561834973471221233137071557000711075006374980258830421497794682721883342003639788227252698081958622112576855!
 6696663647340479600014463661444945457102087968018490500303445503912061358900450933318633392666162455881679052311554801118409534341914099566113093011027227902812405581645529067903350580378625917219985036146475309176900820715291743732557043856885671293216979550173272204257268485768227091539780368628112299952210543120504001006678545399178713045729119139435026122491139215624979882173798655822392401776767453348858401670458532069099806453867326401456330818223882210781281099928622413721296013685029516878247948177841390241451863227347786700656043092203326135090369372584800120908366656118623650916574370979049207872363382498077776030925108922914586583491166548182363108108509132490885715029841142940290576567430099567117845193318366323340149601825507595013252459095508274635288194091550518113381883548928675832263908404423227637779898311619406652668744570327333007793327438237610380153580368054992866921413997683354348538115992195407276470347839319942114586979498890405188932446910193127455!
 7496052737792099514248815610278766122485770573710837207247880866139438
18295411997551977305444754608114833882388027607482147196787347323733635710914931434690420761879530762554564692564640909609320676539695202881148525255037634431738859999491478280052871548602314271755053349326453031726690785901690472122326710747130089364294298948598356357236707017182449266735131133862286597720374107070648891896727234697215283451863652721869999515542213811448375796087582149905030769977503135150151226891782953619141205168173076993839072244708273933631013997824794050530062067327375525284481530378570555777153604387915829968765684818529810495219682442041494285506962201923651066823779652856815082239976604008475566138579048200088498301117586153333934436992502101592209106376243748496162541296211617191440577496703011626194525914151614591178382409842209692332034871488424645650874425235237607131229229265433934493171186025484480019678126359715575888208538944116424416089230468248440593400609185853097541032675848000259109124146303880699500104397340578767664724009257259920101!
 3632537883075990730248387812538977764341363171536912538116156062840906217350271948697102863783395941864149118841365824755964339282621279002451749039226932916506640427564288465061802203484706758900886471719790684330138866562016128764654458655664695949655196874543004172311696691941383843822994623083230816700146828571478417637227242835271214927497020003753514581272979328591465277985715635834535926161996290193432269398485073595173493151835107740854429645425911692485553793673250969718887354701597866108178078674759585370077014085140745269071073320466695924768553029544417018401326453432320607492317026167883703173276955388119925280817260817413430998713460139306527468474625447522227273430713633540037942627657653848234677439968823069458253501776896961933104899928731856572801504026966841722556308772097283294122060623350264493350039684065973164697961407733967356820105476312024054926353922200427338029784182330586702139897293297255633228831301855260432057541403467863556249299726345218247!
 1953534079689362177453313922619945785473411956940137000833315756454877
676
19975480157590840190309729191536124309469256362091377854063806450885195066137406224967801342060297359856542231305761054747045720214055440465830421191594890141039425461718966391911584949742862343781472817090746167907037564544473586483957114875220515458923412277708605627340332932005312796800126795519463813537688220066820450555916390931348251955540124835907455314851656877901337072582544609670331632805205302369474709760890826150191449282741505086361690127997998590109549297165594021082014162775851979712906834169612158254527867125272479781579430367481450875795293593240594696151418831700895880161608911220382128659882423616999026357052826530067180549343724089047113701986772787081143962897528392347182845956734446076123247208402439102705244720766733520943109309467427691222938702642828233956110124242666017640169310019904710125526545172188954566864088257251366398478127457730187918427171987273134480007308014270405272165733822495055610263261430993375800431235070723270817917719839576473214!
 3847663935001031466015411358005887355094797815722141607621728034613089215148595287178537419430770702634954798870407054094202855681583973548080193550448662592579439183778130430650638343245957794077884591700575991680357474070448494583991819797508072580260666876973950684789693164035493696197189615872232074169606246963738149931878008813840553754118755875433126472777474543258566354789174172050621561988822480781630973211182372471225223935658924133881106893227609889493735836087379846915615557678864536355619327644881387661577871045315264344435520654565684256502840268297885507731734482133248071804141754282134196143212663954543593408895734068147122772470206191201824360362057868863898328082713453635938528561948020995564774384595928162121602550998635460292193775471234010095533487021512221304259267963554844807876965208487394674917508922350083370153104321117680671522146897000464910948088737755416926538411763670453758283226843764892326632464202876568885057419565511689607764499241348049667!
 6741437935430093141198960796225752015753827621569462997573546008666180
42315208062444686192680574157094891377911191850368094850135340208342419762838941800610232765088524680871781258301859931543845453651862916488133244744733144782583454254354428491044726167417834802235795498847203045438197992848084034359694791013592481495749395507665855862044482519229168399162582149177122334074667093279309975171466769378502708854447415480504460961601459695024884369197999956988338509824278197631858166165712415916718858747480204944863181952826190174142645196645428509251611582054336436916401834607154512728113104248972379829549551102119394629035110539331400655848542645195193665810549535310187475293233033031472810402771696932048315057673420473666592611180738004404436173828793982385396907754867776907040344046414151566927793209224270216646822531154370968811711468799071074148599417825998581439535160842082421010046260406031912399139550849796554621092310463452481656594904441967852179562369780259056663227634529420046184121303546605321985616091573552818544921614526566958079!
 8385664909251849890664438494884266472784495708867176808180950327327269540758098048394904619915658849790386853404295379713711104656280058333883414827850129938351545189198374147372004344294177820688807142200758241739723148410727976366636538635118522621689448913398515939160727713725919481631155499749359800317834216922067829532833874265980306942544734986208236581652760580796423068998090795701191827289018374197063213749798818202829284886372043562692634560945982811231385469994733557287039569814420728932140775247114914947545765187032552661035096957240900531445444531746073899873952311362770935089582719130399334491451259565087819557202944322753089902092586368414087048209609241313801680294382931375008941270153005014186900220586127028369260535728605135913646426850402406753490204550637970973964546427200433913454491880597861065069545758899643441006179016634497183904477932574126879759382285093931639785749507777004265439558823475275006359669416561454765967500924714444024819000260124038037!
 3986036630453380685697600886253408813120661682178610939352600427849224
48946094859499301110396189820923688410078310267257155367020016505022749643992721901256367904266582038434738197662485885024675265214515837066405869881989693716598807161661987923235456416010377421287568751244592965205660375530958555370906830101881158800026217988790552284943418950055566778024039097721055895412525339539257826113950370819530892460348667831520204956046755034610911677186082272890950834714250595497965438637045102645410934756012620470352250981681748048970042971437865197282610274237351711665850984804401476180920106776610317034804290928659441949076168771483647548942638148580389431151946316860573655142502859885845757020173808936720955218750785255093278802733634380472617549070465248992666207595627815181133685458349644507198466690167263533276136230149146477593085369216372885952514001388361144198297176941960479162506504145675422629689450846759237497806154509837594614919073480022829846288304786584202567462407481959992785189059859629620082140194745885889341295926615932919991!
 0112799517844204373531897949840887908194780148516884109634056204017524926501722172736995694440809217650499359013540615449761991652772464752963046090367613775407649196122190652194490090917421555785656476299505828434707879396233795216888349963797636780596490611406573222545637737558852040851221614104369353621574394772452698781089472561400299342118726113007357653832559276744990786938161815595091295783360802883660262143016342534089513359166169464801283478698648104640844854682738490405899952130498807985698053344463445964892126627832782274352214648416067865746844661692752859937297027809254493543599700256469872759797215918801914920076760856838967504634238581616248418447554675243800327009232596338531592921672915969285628817969820220691446529127182112375457540936701773748894756391051483016261840244962581182876436961198323253003028192052814418384976227555911580440063720483530367114018401387619415759300335767262930699424195914881457542503642453189905029139050667979979000255340466895105!
 5399689853259890402413552220333693540679063764584916843458698824648791
53275413493485072984647979025110888358498575049522983966764713979291723389285310945246954829919867507565070871905992534973791840075748739551953770315632240797627892831048378682573846374120754125493440253342555504829063772657044035895644076210786471791837102651164633559328670844711054083933055289048425410121501420561680699146057028441965045029983129292987223577422784488506987474403542091179023858849824944132730275483426168974303751273199695876884934936988892180300018690590264857676530343287430911279928630966830670348453557874921046382501382118146793236867960579890815826045046444874020998965041700737419904744433526449514994141749208334396185738448942425440602932264115735650230628606416550845632868217438740463310266399048270262371846381613176358921810724348883758816285519467689549898281372930082493584670954425020917730727885619819873269108314072993656966530285705599744056954650401242697606072298687272224665977863455558636728804670137277954463569781074255522611360938293403369492!
 5104726406660671124828435875528965631755679223555773698289313607798054499716683962586338503371944172571031424908427852669320203832943389743720209334093386640499876047323711845865243963946572594583358191224219143374614259624331700440393599450132572272352057176259725920427628084862494679641517990706335266656064636955636347080381829524640284041501682327356970027205214594475236691429183539272227162623335033236938797377061955809057176784589214261722220939405767779999558111481309604821862038480912420014088390733813821648336490771267380081429743706238704905723664418253897617221231939815033457123929371135723885058000300708955240188357649662670241104399207079266226886023000214336583405926368746944909880602972778510570012578350409649562602798078257558854814254873686115104629671051172760393916734172953963464147276631293924575938362874330485696492519392088503969638082293667706227056705084746338936133209774735929295857601864574473448077279565528765040695134924925400562149709787038049344!
 9627773719315235811710970605270316996343155203775594830042691473079955
870
78790392122980303920007211343663772781644214906332022010810254635771021647733034695081303426341704827055950541972490219170241207218336184659576657997024136558527421639692001980404860063911440526027935979031034766971526321747264902130425097223480848651151874589498583316733147457479181899833060878575068051212321762520804992804561642984621811044489494441486817751415032389184785871140403707965181362626444402142185343443605129011015660567633566963674877743245049091839394910735362915730891929616542350691224105711729489052429944264231633745968188510260132889114629842145218712682762052942814980236314874979153643617475972801559292393384904809693219984862432925448164411936813368123225460539690544086854409025675431968124488678389620549333360620618951557675018439196090016886555737105119724724624228337959867034627454478729710887676959745901975742893353104556758702103926691225217711915328947055110496781230178438670280197814884899226801289207798863336803229981205058729625284133672676527037!
 4363593214704748075248303513228583681361252511817077626860430026560224405796898013613807735635783433966581663461455075497634697329783270634803856194755662268697368226579573574184885990552429033256759135424311576900375602231878281683516418587810612079757006906705604880699069740392117315142482931531434825828498726478675723983550126476485364691243453428343553460254497390683893275355589797967967180043790665324458576738164940499009375660443227505269319829556741928086958870394166757457337607181481757129972875392748932618360368835119337366130184413458040356776064623757994152676221772723987875225668046061805361785057867660420797286070313035546002804975551166863145085924263743915708650333376507568593197579256207570404145590449541793951232588923096493344281227956671227138642327943207468338476050668738735600802925740059847563723385029241048527629036117531105999897797926783303557537571011863563313149508995189833452406811651026607731300250064033186881062549157312643383377951477464282709!
 9303123488628399062250085751735090335698288642948459135594303070821144
38777757813776692015698837815232730638718718277930663295343381895694851541919470784195227846107320664826842158476011912255442713256732617226449062920159699731524594226522715401048006722810174266662953032196428469643628547409613740863609055615554857040722315329030751651689284287158134812749707947884609617662201906488195515653530420533577073424378159192416098964525685231175521051778834370051068321760857812562084860126938568295770857551507071815902512317417990809841377338310888252990148413697755389410971810934391212998377166132742769385907556688356274062296019904190840883355572423236299081175174147035011098206254941261480714857394215629545242740611064426899962166067239924450116041055014938493178555868061310134054954982102477990562398183861847930078167498873358485851428506641582680460309101658466492379560867848543943103615146946021983514475039916678344141396056969152722830657131646190455673203353434854175345722012816496241609899903674770190149204355814183456656915795117642372222!
 7658691856610521265208298211453234668371470095542136826402451133065519723670024039633034657588678795918831665811406443749296392701075472294946427183814537279472812790179244495449657400002818535489995717522975745850346317244631614099074986532398031639879704442493725829750098250146482748385116050050014132900941987521452432349046570461324975180802463834857014278593128409848183959986447832240571065922218608254764231376962703832279397380259391283475034348001677056740704384644919014095996266540871737441603229999955499288579249548484366947476772681024209712396285247411706146490256442742988642793514045022031458173013833357841781663448453515754698672874785413383359221955898453816447133326129612991558517676260682356782905212021073322318158805115709893622728095520781859267562919911783840691718881249756356417729748119114114862075590542748428749564513103662296769420818402467283988134216370607058911523013978363993582018312979407137136313676862082361687139498156913968130621114883209865144!
 2872710137818281150947102866346181296757361214508559642645247348410673
67169031117133958633384665699497490542818639692071419803435697413635240291937908455132309405199619366378625528302871912510755888052342873847067559943440226566705528678518849155758893293939557665268490186251718297073518419058570921955802548850801117747284216511367281249846490653103750172295998815972916438289454194302619274324408090863598409651379491240252570839537536553717700118304348645267587089688043786571077652924514789326344463999489996052726375893188092565678776116120913904970009101850897846744840284668069187965782168401763464809532423258318857475492052120978742349639014801800355111187583091698585287067062963863876071913642586145277790053652938474153512427584527196411152281380048816321423229932528480897133430162539890940718990258639706064228355802224022610096060039425640686836423395232578974782274728813715363479485399483899526164295874296093778602690461504605391512589688240235004536776602413118134583800547777563475163805013662456666878757632767825513161460328181064761296!
 3810363117846294531971768395531544601295685774949262735476227661980885266105461976254449230256510594375230936822786268752792227619857670053790147423458047632537152080161413263354922877826209523916041354015458873356273542199231225370257079220096480894017453973965045971141107717158293597460740927277501405329334737366468886216868936703912344021631309267532176937700824744666088224542715560253655472078367036199841524963375498353706258065416766549141783763264932745110860513835191545052471960805114521161311143502471636036440928280109501021818971883151210919416080869344530821763009769306772935181835196155963589464251708414171413559926518611214199622044633548296686124130933116889557322629313299246958791036374294658515975598150270783335555952334848694312735204886545534788132469624875929243276713750834445482510397529760597338881273529107871234711713282411148935419802075858133111018150040817265269144622627225240475663041181821180662219404523847958418038534134175020731544478825176920222!
 2955275313251934500939259558611258928254743690835428706830441742592190
23999586454589044779106164664644890003256572316971471074580734180398922205604603704440844793039918667393023427066888280705377740008679648004557060311728648340315139030419252001815022530147568727706674664423806710517048728573196769279180122822166798656057104386003629900417767700537281731462764748448818071160333319477869323458010050209176543535638720671056081986083792041976208998537606726858445798765002402299295532162367041786821472821066607491908358094573835587292795675676684530581404580929524309449801369490395029072862730234311683427959131450426645424889342780200306634127312372000475734321672247481264060703896964616996780466852884242687842481695646802536959367563633905067983777718719327958413981577397039821154057549015203349678400568451446356754155476840187380489214337018162874746834854112711445646875880726217941232097151380853049276761874831419626901087243557552988539185462794769638842642009799053469963803931009047224046512492523993440489135116454988751218448398986922633933!
 6566191577106150013214562621316741043610560857598111015876229985096501138605729207101013053189573499332199917134592139482044988540572446127129969911047901252369233857490377836482985376260374891393653651684539293208458726438682665900304850022468491444262793474999333860028289960587515949950797380672862362910850568267920473443960188827602220534679722520436613968768572252226722325235992000625307691458609529322507064704794021794343598667867385440715392644422153601879374920916896881069736241664325121860868290495037191568539516333021454544684106391952355824310834613418206369750742810323364987954889730437274591756150165999121261653095330940140091157111787344659294977278343044663785686324641359444223675791595436497793991267424280684304617759240896398566369971826685836495982173233274688146455030558326916245882619722799307429879201406226253662866788960310068055982705306572508276561560845588538605563637822299830364944440271040236343511005722983701883128237765771998666595283812391866962!
 4993307594568061045559875038054548685251714249910678816408341110791263
904
86105553897576706066748499984099933474159769804178926536171939866194669495526491408138878180330868708878649132999731811263511174817815245198293763710820176646147775724472680460619636927200281463667509417943305022262616878903726180142436109884576517925943748540629253953276739509872013013836285694841895515670751021111192436750016006861027920651212917404584272941798589386905823748014102091939026409367767201023395118998036507047959004562067719967441987129540597790553746606075245255773397769174547839719034428503260523974616893697589242411504715333979747238993728861828976222947787113126571984299927817116016432074140962741539251140954873469597987898558666983043734173134938665150947035738601826249517830675095615219864543650986635823959620249484738027530976052315019317433863509765487870779307997077223058989511507138016085232858431089583905407607058751233676523650385366850965842315537963869578336055564872661569162891696629863133820254445811149759696086647631792541460086929945742760053!
 4049622386629679034113518060272496295368965003696321618188017724429634471074448345160130316177827408046975344432812054491119725483161526150430468163551112385453543650651719809140674841344901531429725288995567413408335719483300216569441102701673308418492310891084001217998166455546827123911836447145940427513298684182022696130952423972681967876452883656543618045140599371589358938844826224245843331470774006374446015072583836016244115442994401402824034854247882618030011443203423347742152677618875449002467311209521637443917729177748233234655964269864018374237346311922083008474878734342154154994170703148944641081459215552192676665948928130861092793930332714568494226981228516518333026104425809062358651709468684527997496828713979968953158461558715127278389769992216259427880600863348327585133884388245660724480026844998588487505101738914041253580844691096915301956888162596406639951774701614786926046968132110609887807285906485981047040548484641028455171758692551233548741060702665852348!
 9235997268426919875728491338064411810099178665017420071989553253601247
94343341249345669601344782883180912041096043771559078516278978600663447374777776853208645394389122384194941090260984329391729734951199038045145436445369709774921213382227320309810961152142490378305059345254400081487086706147575843468032536849284342698531769366638455942851105893363680893118382658637831843886465081417730440078372376322470462380951647947886589828826871369724494100631609799833124212598987547463446111412430800009780077074871717413198810504784350476604261033991511306086275508275606370088083610924107586647104017518994512553746513625937483570960872427518162327334325563153722986429639866048071234963167696269204772086567829986523928755322390416560750654330776304057765721702471239261929169221127965781697734512303286757203955594464795703603061720171740919672162263501436079852723735737274975805883474882288226111991335232466796797678502900993793083185560349446119150608382421967962312298474285721471448145893945811208996025018163782943278073021931879141421053269074570716657!
 7860974853333336155139212268479152818497670260063974267493563251205797538697446557049837264818992003573992327342092933089560383010168654823074593765340594978079272066468254757200893780164340848055714028431555974458629133393200704315131580114546601260848965765642736973584248295595355304545718530356306550900708059183101177376046045800858812747370683297247363143409518750605993670605712793030823519616182567353871321752209392461635326596888373891483664339661155065904059926642137975669361054051580560183563749530729731281457666998642730200265416104086612570995935945801199744300707953970815299119317513884964721311313205137443695878199621353923806157600107687357984161642202672046652172171086031584440377202797406865395090434594540288979617025716551975407303819591460526399256760557778311352035281851060482860364807711859956981060107468926700800209211517534493143203071472931145706237993655772573778735320786535300541627771095492793131201371803540473415271149041838672515452978378183171162!
 1941644207016595536822177607517907278356890730974055686845055040768136
47675094364438220544134230541213444328447361879083302258311760560314364345110615909694198567143850707660182599898279720302453548514859896551531099198268809163511037210244573786471566655083170891808811449841363407915509135801798116723088550040571369964081755667247536691160373452663103080365113160788858586953876230916195692284026559965567557226924689831322139324308610002194373050287575315321527306657091693259891031057939087830687047224967357408224798126185446708581364350888231752578697346491357217088376683856976298949318306191763232163059642888231430995553057694676003759939039720012673711854814945716793334079043784143252033982495677451942901189059524145765764990454888790620161858775757513423910140922695147942970655600595279412517925274836950631205540139083246138695285282972097370269485171524199314975814710780611128427327269294709694029020666654216958148973067447089428734390820226011684890456096865244346100443089895992127706243111206196405906105754819908657196874967744541435361!
 2792724169054408121983854352483188889710978303689816423339266572130995202895002094171442316261808466369701705801464070531494625877356597716968120615872615941738292264599715063046541165400211811470000683974006267003356109713012497218742000078043845712501253724251868843040897592906639123768783355711484085992328272570472946059186630643560134373504132432514039802632707822041367048093723032170657290394664625048705927591217143410150109193508048285927107711105142621766017175494285396227150539101229980792400470226917126322291690014357933426510209228435797428581287222477551928611561218801643044929083623209399569378207684739862023734636533690468972625803524743073127242297667238144134951618766617477936339599225929661647086134772265444093425650909805436497520293286584135625956795312871757271500520559181302284464251058127103480139588738961748028171915521228874631439509233663905189321440631866352240532753635687574509389763160593856093974473551182273991859164927711720311661066811362691449!
 7063997097787778648705750140930977033358034777086738027257030158216522
05625399280162200057323117734658329746583213911218643536006692625111773256358561685921911212272414802235269663982417059233638525519822203326945372366913498982177380803854808705686564393708089890116868353252511670447948073119929839541003229598798256273047642676264176761514204218696291633151501976117409027652812356760513510280492848689314243099493114853103063092983689401029679692120594337541691857374886955371163447888004413087446544163429938503896918107311189688282567055380084044829184878709151071585411525511087390472348300476899452686174884714512066401938821306421941462950437300217445781511822536232433053377305226968972475817614040835317128503725797963276743682936493663540775332522563810485325531733923655288976743159307262654016123684258861047519408555169419072457678295306604823525152341613055168644323130942873794332291059364032137354959266908286927136641169968485823500257894207659451631047646771967439089139313485667074411277251254351678778039973057657521516335076914096784579!
 0038619335314552582982538164752391171317862419487983596847064241178674840647474527046679428005407603287637929463131877708187086384703697464203832094330862663835234153541782180340318126408868627602674462759413814260944770642149724675153789827352874385098277481159606410522220467463312589406128982610298310281011850270112531075556510501416134761117917857701313797084939809757791892475944494246282357924460700915105047985130188755338884950782039443145745684084175310320477396269945167039023704199441610247485966326580667207542750436984007791159577665649273571901765225579799424731296594443563105804416964431541659523919577476819421717886826823617870251329361403419398576599054336438342452151870943001761927663028816543064979376789283098170005903677018220812243875682494736057214915803345916931196203302542263601792213247893153333743368367702209806611882888324211456985720246406746982018872694778058491282635103829751083883621713545361884009423057159443713894233935689414481116050457641481748!
 1797553054561105262638813762491391169296121944031316807110197947678630
213
64797721065200574610303871432791303713222359268957157597027732412040657937066324986759479502401154545032552670940406165827697669211494840740344079975523919950101222464159350691984480191534567920718251556672219464784986487292879353275792500852831202521382374944461032663162825784845420442621291852004866387285449736357527421481339707051359686046184959196488852931030705270748255106860941659023984894427653638754622990362218176272639360162332613207138973679864201079468246937122146798522386328376083769434033829980778272711035945213074792749279691110931216748791319043143651944738619481542484661581176458460026963968530261277725628293546335610781752145626166010663798315837321477885165516467357781801504739401961300761005607800918415766770288324950590700352377089336567448546115582076790538771210222079105241276443292599666196346536124889240544575683598645678258201610337580967464796754552511254579759799131649728140148814285107737736015287543815505976841597605138441240285049661533325013989!
 5322266143341225953611168147171738602270953152134204832304406729382230401026487424932053387082693461200746432856619021130275812734785093578077962791939848622440644031592037926815839112283195163381576286945618769933201995318062913494157242235546384884288186513716231470154568289966521734105480791368116945394735288121494835287494496224221819714172274518971558433604597430549288878255914361441081363103548742364621213763192783417982975883284406615413106922830772976233309682461703485137665574824507546655268893433133014852634974033149936583339446760288556651077236218128972962564749211798126686372617167627697520275982891153571047977659639324366187613876537518579986938265319956201059481087984466338247748700528712297769313780406716284965725511157069127154257461840675563983885682926917142623472949872440478545897300745048586048072835140454769271319601270432930577894167444123072000381940384039562799345210776559515602620664875001682237806673585388370530425624905058162167341174309429566701!
 7199733141409295152149596720707620010110227888752661000811012936251339
09752488077122857836658329166193778380117853148610692685897926080245961575761578980600382830800312750041619641111401760508438269147347064040037780347806940847927616153795888692457363717216874999963863793603103127860813568176168531312210596601043579803845658858757878800233172296054664262464383841322008411642078145901515976441897543011605445258506061440336075534687728378468810833307159313476128345515325984473304416140724666271099137730389982743722813868991488089708555291273502873354201550462682185417895776828960079244103569614602043888549094430222405947363522219887372828223362288562914506381435869334317161416787433031086855750332166619761463285041412084280351748888599704500597396714779307455093875790462700440905948456322760627176442615869458452915595790505222410756020045850848118686762824704283944305980858085306100038773486767025525435093193174634414294253345763032466896744211077150185997821283378451802846727861956365401834118407228883994913787084300858213919836840856052886256!
 1843246837324205635617319475478168485894868409806628637450032908484168628374950212487871390782804813838300202636308961904434916121456348904995274385290533040526544279454211398796921313911906315914513397323350431614771340304735979930511291462400203798047625412840798778760749840882993731471604085299726090112388992181054812092845332278926508631840366184532624500592672509180079875379208279858858398651591609376479754740829001342539219818679023678691673273326770128959595693647597629465252142919889651367862352737712084830330817756864814386172036760345432854051020363185135966265099769289876067626673781406031585123653115757538067981061533810650151122566068854025161045458199118954688260462039302882993705877750061847150585308587704866229233672478114411312276107334322137909320716165293026673776294027845974777274962586547187680913726997297543636967258373488796670461172705768042544954483418426121081112884232394492229467596490652760766144626339082924366147214772915934359893446881924917945!
 0834893853926888471157142656835032947889766619866967293820581630993278
16876700483939078470597371725627001965402083870282940819446591854012829910497044910738252530709744166719914757555129515122830398893092602063982038310077892309174562038021769064634336176018375135856122944910502984415939535369578893941419209588370025464808418282409439339137844074126948875879453808431094246804830406282243819684258620613287618926343014613026096700225158500609645248831415055504092970368666223456804309015894480277775222526295029474889746828228749780491713805350846869639409722661860478873034634747738601472980525581582317235085119741378769028200176556925148304499475115682541546825464877967949482130342859266853597001626308642038131608207513518363237691670523857363238043226657761528014203028938539222884149541559727336481737560943393718690607117024201476591463788700603962936943466892662637430293679469703626823684451800894814201585585623986720860291482078693104297948692478985554101965421837343343740322651980611967098159035557958686788374637121547734296885888681756013192!
 8163176125908218270523260530994364915015075790244589676161307359984868034475498285608770916916471907571394216109244544451593706586981144614629612239338122236399469270249594825465858340955394845453429996077235573518141081136349589421162125038867921525795178838553255549211822364696236112385237105406425734424984843681780531828080483247572950297616156225879814141262195002361627405839021780118707216871910759521999316902752842560209953103771597185166102852110329098910527879780462760861510171014605246217622968679747811305582306360345680458115978857405720215977015812155291414444715339034564293532872015537137933963507118238194235442909617572832057674043054901883367173875158679383722197778842772729058360187642547561518673062733132737256309801032551172599959302120603146494227311139158840219639624683440787163100025414059113792797369739664666983504856444846611048071702454651769699034251419544894755690135902182654594676125970889330702062679560536163208498351976846396176723297683906638273!
 1890578153194349759464714753295938956769733974462867370991499561831903
94672284055472604252994137872020730144814531346692748745980147313981528874661712251135381918400299144261962933575189788754047418097879344475408411490039295492802113571364417916532198159594037135023930625311178460298809119787171455616978836246397677311276111013361632126190783184443632509350187833015245604655353471600968498545687977821498885729392984760472222658934577827152771625240120770088326774462857097524866273638217591192617733240646647646680042075452531916692104523877197931166736460151313652458689375685559236154581107804279193012524942471224217116794431466345334801702599549807776507079164602696639955909824364205150276261915769988901238657910166020534308272168102262136034428684518093173017200172779525270518760489771050632458196991737863031853226328029083461282811711822318966987882879289846012180593522331807478750492225793137930657668741534335105873825204968418590359847560975241523152427564030132803875867688325548859196842503088902469230746269918833818809239146082487355931!
 7947517568934288303893240820587687236815799106944280391520868673962265390460288287113296189618302697711316041276781545006619805038240565640948601641619597208776046741549311814541133124048593045024568931987524537989281194219704466270110869266464748242273524672172179482221018291132766092394959520861264801656450667867271035413007344547869790744116345434394854670894973155953146320573982350554132078145070229219535545794612050011959863370818287079846404783446666259904090394528092770375506859497303586059018902497412472874931496343701441998995122901668836533322815079252063169279523314743751429057582714210413287108368336346715304652928580558025723222962168655323979328998604657247020418023006550913020114389036694675169614599064144671209044833749397823650315249794739978814184368704931911479407973925451847240213174193259917924897256503878315042492216957102108668463796570439410638292011666850724038821982404955951506199582561658550138435458959873108640227682207933112109233950147090801451!
 5502838218113063215338941434676851815985510841762293006629606777216946
549
14299643681065755565253419681088836182913103054610789411732619608051343394883582509704813844009149736695439158125087461799690862350180703512423304603257192179206869282336863567991653961137083998974874109108561051555981783612256493002925859487255531910614784573830175074420284169202880404894707631340277578928102363390116144150693915686492256231162864905330019945563136597921210203877403970137960077704988788118922782753504852920286162179538534853311931406421854357823856009193780140983411150144469201562126549571848939739148948741197059328475414761568611593981274640913502200387021825502477702080566628227862443849986167185835100193882390748443211308946754065655303222826604577196560735174721753091106584158159401411696779881185463607431930706120914516928669373543158420126437481845130820259728310267573603242726970601846616573990761529672243767888005241123829535381438586764183891608483481451714469632095145535627941171165301268966407646793498286512592819858924395732949063068560920690733!
 8311317547931871397852221921599191531743215954610066731344162848501526398497397619419811064402089861985437253082141736701712159946951023809364381384412700474922103122507178164075190739600187302848398159987727768719175451176399220242785914482837563201180213173869342387120655469219046675977736392865638086406211518963790942304074128440459743311510552968206593015857240059188381389560838521354153027657618774070396754953625957411684179936077909973093402221547617179489496586039562474370438400813565380908813396448726215976366107305184332589927723177701475137892985117318130543597725064867936926392378687599937999510177833508054389888119739419222889095716228260617063037407650091372068790019370888699902142424202608854605544806845462699050623977283219010478390454839743239042233931129770137030271810429249973159595177942775322901742714375343462605764536132244868518927860568532363116637876153463112879940724853240532943853246228813541949764451040647578656581328295333403190840453166166234722!
 8355242915445119129337016988948721428874181770964701050549961856642334
83472561911777612099077497462555758505073072742032737708780748542082728169847096697972567116114788057712063678677860688183214175067653172776178012870043923538125701994326215580030932786391080311065070883833723138549054393717655977609980721060034674525088193383008778196449642764557451316923736374643511843788665602106409392118577919662858650138208054814765627695517389479405666627250807778585704808584173598529513164241719797894206999738074824226222711220028367506345919088260279480431031173209087268505384060422359958993233813474350259922107909017164833576999229487585699551341760921748964803433753202874293868035252885590569404091338646509259024627443779532890970220566995592742434320215546011664595090452169447855639609513489596101893211777152918898434556586506394271143868649472249126397144334572331081455738343627310113581498973890543532461092024339102293480674336733946526916384464872827870353976241381855987867662659535352374354746501338658672780886257307367713239004821729281169761!
 6798523401047513381097739185359036259596782805144138596411061966417214093462198860266646681164519015925811012061118394791543374695259587100826973040186580869336067931714059919233702103330421298350762497270173508379991831207776347772675139373747251797855937033330319535731525623123588149212942785965696088037206496832754345385381511985719423152944400268867095699164131252793994561403882017931521791387191404098475726603163231235592376016369136065798923244980020705851389304074083267070007547055422076288143994174843285656993941516544686226884434238425987628497818253471211216517019297459284563796759198871987654451408785072130229423163284044117452151548882384104309430497963971157168542758701961854980149287339274641454757762992554498913866325204789281240889152841263136658958910304060514605604715711713406923205445711753227559061833613058937894986425343675641293708904147592145836587431816055243659796408435340736713606637904577303842122704163733395440477834991567221612843368891707906492!
 8693239304534813242771075383962098346530112758850273480706184764442086
16158135969022020399739699843368079033371451013756573758481223376447396255069510870511245624457662838870350808974368525900530378131599601084594484234209541236423348502497292106468539786397913748622691590518050576491338124531152697779892470067581471719312008599931712940129143048787426696433341519872846896931248218566731213821274915038084647172862526922118202131785874054708344316381238044684601087838467545045522969011923061628643879437104656356344614250267045443810438269891047484688863596753616146544335066252970212945160904471600920890348602388544054612405636111752715849793308435123261268511150787014381309889279424057424716954305711364377436126403860978363448918962145772121683183089182675487658110219106267391793486532899773463549117032759740629826160297387715194219598999833883734292394637091659511347089641265790132306233816473470845912780928279928407456500691929757040928801057024760656379256611746557488147126237398413623797269259887532889637228611149065985128672858140687092280!
 5229824199813875658160383204474144783013089042339583045772761247045136374077024015946254010339831013613721950200040714414222780969221887294063404689035484811098933888844010320634040418265292528710649954134251555070824316687453962675897468438103567426160765611763047541794942475601405029014816901122082395422210497809002651974088360984814296517420449279904963683005013536982140646390497554078950254311078212609876089988329666978269417358805671130084282138051825293723025331363565662321949346031087961212319604528048694898709305415251041968643611635201106467726370128841499134593774348803913404356666639304277538919682764553661605340428661479886603750314650149376769097132409299371441070576773544860475125283053353541211037856003107469749607310336129499743620236881757306839445772135876720649604990982195840871006972693316346402741350908737893178158361288623801052087479486723426775075799881293971749074803911837323253145440949346159914023774712059601427281806874893965742380893166274154963!
 6369751092179756256913370945291904029863467022869202699696637447863006
70129661666784282401434442620354020409590723475224443822412375819734135255188907347785468748774850768361051961826957125607268253892526512523771567693813080688471119244005954210020052566248987855348463699193927379163641813582470885346613647263582117042035044095322736286720166939632221988673921706502696933800210714080852094816597803041227380104886016500006233921917595160926755672161155691576611722138465799793272949539374732384991034897079300177635821470793656910051981399247782683347859504185256824304406509833997890038244291956831311731110002412077470034015352062274602635871678658527243438277252016292175042543666958690900991490459647323645569897077810954975019063684414668167388658417760639455705431044307285242617991870993470612651358977276502069376919110770670257802839688532774530655172540964038106589154169147552979891807869409893444603070079280433804703681347781212071773340721904159660916055108522225134299534898001579142619545005930986267698289122238552552444953305256524611368!
 1187956791241234937784546418436080706598363894852894529293700677935920113116322187695476545948690813592223736192199001115110349468408999424483130826506870252251502566281227616750851269187335659855731011162012038581058330370849027557080052903865636350337390766295300540927877649995856220731232640523989185346726452897756055558978561843624034495552225340672797421422132625343647831021939972511954504562208359250802116019323388560840132597084355617728676218400925367958473752585459987660573999476042712187537030433872101386525283459315639674483267555822176755499354373252777805073367280976436783620221478599657988690369777378388885588224107066428004572963580716658558081840947490438787235885571321425168209737754529259699116532616912803083866448946868664861539293765254477156598496094113238977985914086137851100383013462156497441343159930155992922770350934865849786161166175477952214571443494090136799753594368306328693800755120549199540917299477624380751080855922232116896516671009768887634!
 8694225385909034911314411654830447132914266218937318400722893947672640
322
57235228440899295463249168811856628156145923805467350316491091489691143833921188212122809077532158176981834995499018269671820488955751459634439346833211969383709863961999475719051757436460445213775212209248633598492157912931887973427620669618690924149123020114336932881606234493535251088368960249773561953081912200401926714809454212902397514027163551002171048771005554312978266407445499959826652171696635771211188446014764753726314787950228919138601180535843695713941009286634439270543429566427520932177601004706875649518759187188962078584053122726799930594884747681865419878753529737803046323660521037698826221477940393613721734315187915104423590490536963317777101995180053569121898227182633452785692029145291704209143091912984701095900677889616030003973282485039880252583306201709344684746601807062356604961100767749443304184136025652823562881232115329586224854609913859518192225315728040808168516612990163443459997666963985104024690069422029869930393715712963152143383854017911813024586!
 6102713945832291208230500355272883639715649478952601113766450441864423150508910858486569792156116995920124238540202796311485129737632674256505608929281412747329307853374790401135133474058443051892510482509547286637628550680148427903545789428018630017318714953780706769075888819196775412927942694802011585313116814238371065588750272584831871293323180620018406980455496841848932601014883896236606430694856660361605566020786043290444124828048148749452931870245800292108212152596733992656297633967980889161824144906917571026425047469453592729464963430753388998017134023787654630493941791108342234921125593131482538041946547634202524456497664906577787377574613892459505664254291155480897736804076639300639419374632066791661771505583977809418303988277073314822086237786726519600009806557408517520160545877625491548267038597828032107485599991552781550583302632720851525321286603279462256665398662725793518956279126237824013161982233813075718095407765884687332087668698915554875631930918484855477!
 7712241513631381597060846727388378176430204641783429913776931658255772
75012994707368603525292686006341405962426905072561962422007216274953915367824540103313627588706481944206741518759397972291660560594814384530243693870807675213287889257618834455714688918605165118025960049218363405865274999593847304459480109437421935499126959873541196055469249762263474082942323178840586245607579743553512934664843517643852766025472367202800339532641643761336454687996245562569023090802865827418916464253278821292945011447950537935050788931928186696392832693657488946872894453296634870913296270751466555279549357081504317533778937649800224619671256504407237955840854432865375551400354031644572026845930354715451317878526822521729434690646629868383568424687462670931510077991221085704601265818587298645221122107444421324052530719015720551065033433928861186162842521716647812213181609915493212314462226152978349368652414675241176643706251487294230351460545004953993493037320235086408837851572172974813028079133069090269266845075485662653044883297185783040753904398443907700692!
 9522655667873703706862743696778871997309166150090665301861300726609791918298913320967097306713030703436019246143617787592803083379707396673025717114886146072898710900590352060528516810694471497865437249474592088951307664914137820789319336671775811978193472340750615292956677657543837812973472206697011909014711255878196910283792487901704143806629006635986503652332350122199804045074496194898636291943819715100227882839691413804054700630793267518528248872505187654014709785477353640232639775923004070367334825856900498956030990586907295131792732390986645689762200312654622656673848844631314660424615982075224999505556695373085572317430241615804244848792111589099867607453291674354009101031518296166834420533267476595865624145530417456736736484008657465782990309238187530438632109799832646701050209774054569533085765131608008122281280171983315322341370464619808470545198416552440931159317385437678226616884909776972327980869021495148577287256260848485274838676452145802913689405192756905826!
 9303104699777513889365503173503812719972687795006356102162334053259452
64501830855321528023856405659037891825909481284650745724476013023641518328496462277245725336729834608286734682090546303276564015772289524632775059000986745380516958495518033960714553675242899973813605772825875056653690196061496194274928342882512273792553804221525329338387802542814509142866959596717383202155035844284467455277893723350401025168872822826084394145762607604644596230093050922049463470070616185967422256707719049679282202844404150843533932446167049986203528278147150775678718858213839025433572166364605661142850992420791223504181474040558329243886002414037925262566824201200771352211789245155496596415644988168654421487853511422148969230057412308846747968104507650087965171522230359351980605946448805343249538903638510835395451063662114705154361928690305698896420609610899698694259391825025503855548743402028481716433674565254149110215846484227862447510577851862422537717808313496932971977447949084975093109674820839442284353788638509974223910698798068435762243771946093088893!
 8046794378585392079989824697276676913324161359921706812613178424808739083946503645597113998306805545117658520498277564378293583742189338221268562833463618000695290743908271092291612587708796601682718063349458125158987779399788110399305345339663541622770301115498115235887467464221336151036914705789524006536265498283788654559780779796536489910373957530963992079371874388537071403892371199370116880472135610969806539991193756657234611869972428022878455580428464349473022273744907658863030209727792623894431922899623110134989093628746757622496692671103970741487327292662727213717173218346394354846114803851204037178400172205319093993783275742255097532074395649752127677235605392540634740182740723881275647466310660639386101306882684160658113446177738482723989406412789775587333248978832549605469976245871953746231695391945545074946179395372640535310869651357212706536977546814522147396938290406821773796300960433502407413104609288272386110497323773796616383903672945051727222122565767867095!
 4527760080437096495868177438887298987957763709402180563674301869349186
56892557178901207025594489793258685242543735788828666251813601781533642011070385761861042354040058741209352118806692055062216919343117524231323363238640197679237887071280302646143250706988048005584200002048552408650215158574193524716089626446297295439634287552638622708347330102122137132402534900536049832517358209362433104680164945138344769651743701652106414402286190801937354414332436744027491786889618930577075030123310836270554224044421912263898130557244547050622972848732480980823367379675064002812743776091259313619914529421379796215046970469466888075971734903994777764590571270275266634350066126457793363061619422099916736638687320201206748192046703311343999931143368015926126410235582528402677208099170960163595122704977669237987201122992663181350125836268871586030060603415622652371531125231187302238190273132597475385717031553490679041354735572448112229535898896564885816726515713416197837261238044448118832469460143023299912220547614140793239263618175955053283120126757260288199!
 1097930196574186067700569389206513177947009886727669278956602350781331015480016820912266527145617852249435793646791188696064745508358062259490648016266056940667861438926567068098316930364310253983105894023833884105866172314761810564039445229689787953107781898523285639914110221271890322345298867708994340638367574221343163642547985400299317687272776730117203331191762515593893682762084377635539357325631374738658363231360462409978860788631331323263957185383865383438489883781674562092733581946022831009208381419766132570728336193549027463150648571046095802621701730407573244123616242341111999285464488064650471757764607939629113670435372305559669589168425210808047199786899304586397667951509095629291889838838949051031131689094332702282296428693208392562978786746435892185464115051226434945237802730865848618659430910480255046983531157627924826012372301415215476940059343175119835406438019841457617564364273622204456337392477415815829034455115638775598144367690219353693703742128051302462!
 3698041059107200251005403448908469623643116294274629708127659824526581
279
78727171945605299843940058456300275124495865263871792344383898219177530800656005645853541482933499646080845061096928413205990759078328210339861954500140400995563757474783806549723686719180353554918041045313578374807613704880154481102781043653763422926155154912721447282236408436459340673929990891538624644960249879213390012002596141990397750888539145938116270233685599906176758222858833744997604026954212550558586045731626971461012015593099175675745086277735439781547766249660861827355185192785355895891721781793695933561664989479485455619226368832377588251454874872259353687136263818457044329792266886824932775777759358960162831017647661088807846429139301648992538261977224940769075416264532493150180247208463610105388721869882157565341574316530096433306674927567937885357019733628396041318201260449271169629932757156941745836774991729965140747230937531270454003673720403917406128124655071239971128746958076461859621059551716855937086022189939779635388702992210403358382923260046599265656!
 6197591960083168902101649016809523735572848865672624168318784077674620329080305441682209602470243660867875762386852469070401542924313079472217391626718756445602133241489415955949067394727926498899179973362246682784523244491607371092716256061968870993749181585650750401415600853460297071901846018515849125214243355381122055182346962641359827965405884085701328648738458607593077536581040521785554960588128695490977377746643529168885009499218772974490282874277006592118457320692470854379717557027460972713127510797551934425065764591215399129039966757827861065357092374619583644850350299600209041186880379527216860575363641112474636232217186037334769160541223144593054438208459702318816552042534275154366646166666126224532612807489291783958824623156500421272567206232972681048256591467174214258349570595739508262223376092561293753652344952762873754053364659909872466981358261668810659265476594919377588340816316332007566086498873263938582020661418737184823477529433307801442251439492834997821!
 5463586144647740908713254366302833009147686289339373927163152676345481
48888348081106905820445784329517660926755544908311288327208569197679279902006647274382198523403742327342202862422794148288137598353287210584470657320551630066843439738552712278754687969450358197002883303807849116851682631669333709038676739422128786642167362254958546871438355912905411744786228671673043992716386664328272707826910772471514333294638589098151686673359224779154322916311120496059574786473191297208977293264051520307315514934639104313863530835970611287986274835718898865270209143006829140501439331791216501351484908189589570258503142587031790084983743719094688113665813288743259197636820514624885423895298134554658215702258374563330500330423724452969417534763935990011439733804026905523799099011082100610219778487381397581602561857624697215306348771483016297410869378289410900081580708261770640249475034088963408360110947263450621144153162040133658381611152207826943196243713776673698812975433470470352635849833114716350585045043744521375828524959487649670438919102672557615138!
 8237813566667498359934232345224404142451377379031146451147469743105827074457222746400058632895022512763588386070102416860263213088840858499856268825321828660957282253422671578744864455828989419721743860819487810872055640547662085650115398990006578164126451391832474649828363877950453014668719711809083861128558291927121169627442921761411687381136865281213022822601131823424828323361903322238152035994644442327133910069328429057313280243706386655320793269597659976035837086148290937973504655792990980819405817004995297567388817683617006309967986393124410115316639304212992647357726397999876898586833180917019865776539086224243866434447880037185063402882851494927176269295207574733472669225764030111213920311323789445657204721981366715470055155771368651977237604771324053100173751737340627074776184714643686401637856020554481390213553546264427345170662882819762522036403641136839344927119515902143916593410432105752916589861565281154649772008575711278296418029794990894630094457072014493799!
 3331624755610784616318481274905633099086045067495402463242873242282922
01988866681600270951390609506215247130767299596428623616308883552261367264071783789788520779928051547029925662892964644911720272335120358431515105887280210607425036286017417802416731334579995122081777132000204247289846907894870384245053157072740600881990252475834985582035893102837863748976981027019051041785106791797059738944160277105622544197243693304100105467266686815950441367925864955597338182655505213396889193459141848966365989570702834624390968448637570566908529975844447639213589441239676851423988744211202756723483846987002911441445874132840296746985210084018512775102829211970444366274923491887048903266570699990830329276479360637959492425309988248737043234615954350088707071367690054520609426418591799434640802313530595271047966076714146520379226516754022505913839116426157051419214161964816369189669450768517562740244744412662059274180822988727036546796313215414240022366304914373211385247398413379985135102056442816890683738501164722500616194085253696013708682864462345614049!
 8324364117197268270833484283562401032195320268389893941252561106424136066209908209852087992753261387238096493223059397216765594934530317937256591061586536976449346442535927695366103052015363305565201953585407410296087424872714138561608551854833687012999436955552296566075691337872527737676080978903273858539422764462606173203688489801686617580222231822580557154667833522079930364262733676907989677843347714002637483014387811661917753400358984036268195046280364646486192776575047507179105686699571962229567035492810174583321343489681309210488992849408842129574422743285468488669553297151540980534091093517572586438551204668799251154123758516762197920527800105526298444098583281879146359438661753978006830346949829192850807638068741896748475658737431047064319170550492013591073836879299863121954843193021238479157512786043951997244397091705439314240385087178019898555464665248564032316612901471243963661696098271784131182968768219294859121407130267484426660501730838668642429692248544087430!
 9839211835823999191305343012562880044327713048632698378734159066293819
52414125259486834315523984347260443331313799270759597002709497834529902243665421160305387748967734342300641736989780031689879339117418925515809094435342746880682662248478182811303367455446451729203497208230752655055610730088057913642692003329619714725972010760306315535978193341333492295134268764725255795655840893390848977790625512823139003778142646852478735963482622710218020337397851596054324661869374244443869524961865311071321582680167517064224190760718783275931823476107048639990360766173288186871478007774690365085872974424618505663975617378868232457601592812198154172939917565879873935016749884721317889926377827258575092630959512961637997449607012928435931614121431232444304444359358748543570524186289241982635599267894100401230215544103900549747430237369455002279063783924520007420298576361152919218119381925319969195283101983091865577565644894443607211335527051000592879159460600463424410603966963260093624523669621793368605573166187056314430195325325979320134244745744303746851!
 9288406728760070816768349604225199503747903191083573330900679715510483919100311919548224863014815960237330384457081108672795363429716509520599505863251847869914824847654728456401815829786059947515217479342858459767253199249990659960583354226090280301978053243455278227951536591242667997012021149647005513615456118939411048369983579781602919450284762412232438290737277686357417085313814673195499241085181004653835361545645735710988307573758637758126853044015015886280233346715530524054119500933195154394136307234853936775045595911468448368859113894329908541132829431441111272664009321065729381522565520367793126111207097603993527845313195302766596171435610021042915838675711986414243538560214922388900867545098713923828252328339847479950835738057916917946319942676199656319186048952257872099871368528846162728831028739318219558499402357340778032483060955139447116369896217808577117362475402108855021098969893697728236886166311937700834117909418017304673058642222384246194883464092701712042!
 8558702604884723163544904214977656593395447013140391118032838019331562
292
14299210573588359825233349426010366617522469506728941234381542104598314695744511668651783786106893307464925963042071516744502867084166620415047416724121932094595074160277689056139931112378487636511818195413577359878096720419935814995226287492776944146227679859547630143924637398223422243899357242002881269372099131743438512111803553845897103253486429508880556649229817239505146792378963166252918153535799200384600124584274794211300899284395375052824243726209071818015691188172557145361363160772902112194999549291552186783335682466630831100136293149905852862113264303960723453769482910720966002724720984331243945806036712098277751490345118232020314630487171944097837363681193917284044704538169910142735336052177176405885275473339860080461117471992374421099231146456216994830691954828558293667980275793162201310380510902575784704055562924186972285710450076774173915610499785573083070587858107391038025936125889530824814473138458725017560185098107935525057006330469189829591939279586628383972!
 4519130940443038411182646297157864649853063012395773512942247596900441860788737701607199108411760714456773304545273730540223467988696737852886207113828512950257511690953394618468777407271095556623240147802267752049732009964129677088199068824864038268773332649232033798802634985357574138490288188809824748635922599127862190816618955509070305346715407963493646665635761093466013808200036588983243519390522263227504665548700318914530513831234837807379557783403104076411712176532694343789404797226856819793368962237806205273461620168549500022660017521969621253748522151366731558724237550050621985982587343514788235016465459030472225108844557755039200578285498989183779292572169055840777017890212607510790969954777905345493426890567188792839870936971847141660063322415109983235571639527733867956558982820396210208922630392927568609978786093838214974576038168862592812115826631853226847139298189296211106217827306782460861955853653182713014357342398321003230445613561706837818636951365270883102!
 1920030883470274294079282648724039422767667921706011796432664310713460
34068378993633574798866644478302936440087959046950755125425076966697456834368743323048258009269485940274128219171583218997832647064060392647303442188189620699136260904522544174899986463486437129946931960328238202695973717557276969193487115820668083267534173932718770690687779256303213903002657322867737330699400089846291843925896591635627809999820712491273611510789583439989264401826428648486062735183332952298753598064798053586098442388731683675674744177860440290416931792596878469888053067492859508717889366652657949515245565922115851579994365160778397270156121392568298344474253197173601459610309078358078976814506140787565180633946815119839603200885334977994897292530108639294295644904353614100097850886031411697844108760094315411541760433266550592155623739938658553715046330301840755987768056159999884652499904465850431943050231540191141340346337903838126416084357963849405635170372991609096782019886887769762552975676407033266726703134148161243733723827343862353714186848323704623701!
 6597339467819573872641059032147210729016309155125852891445206063459567607178870364518836709383935748316145183241040767880711732674679099950281172794962802686750602889188048835065787219509043434304463983793804862239590276500290142367406901479991430728057921043404497124623951518367822753061490539004123532850627867706626915999688812232019661685740709162441414312701981636508908414493835630411453632910562873051380366445911334130288274441230674720072292572450684841938025259077743738609592371830709014396904665414492166594783683961047661286313016281137738372061973475491652238221917290903361935081543773187702044506944795451437466988026544697290752016176268306273155436534034072100195577506127582050990445212060211061603111338549533599706879531494114138687818628694185682215506410813510997378042076126545268960010703266371995450778091998508926780412663478107322475632511134379465759721088882700090831829631935070075092733218035687867011879055473589784349337086367450025527592544200285391093!
 8471935863065689129355856258612598967745688978549517588024583552012168
90800071445988536693753002028315389483151757413250577783197481117660598417079759476959592224003693805827714677238985187860382932040808881304048428279769980041648765667389985506434887909517417357796084734906796641774693202869288602324057332372557335230916706284713893824089754029799100585990432434147243191781868755562078983842577499579485934415617412028215719729944601219448207280024262437688114088495528316112558558690318931746483708194755013229550699426084312730102289597662859653511445593484140893172227412747695617525922279322700258905704656480185096587687078577390764844121595240030542184560871414539780638652679049439770045774051046500119256930135941177073142279314255729624085858745692401142246626032104807189487734435860919289976904446865144683912714787362080569410491965583278828438975924227002731356359345716920094635005787705258789417195280397327307772532789592989333748948931516073084795869767796278757847244837584329231787106667644078550088186840670144539967715010451000790782!
 2692576420306822684653121297134078414624113285201347757745162032061305325967570655236912419491514387960730198809824171143876729258799026835777012954218787928372979292168822342578166089210506522899546797789215673427192362130350715501583197637917325126010240351352143364717663412889662517153639274875730704911113651191472727340612086067185659693972045042644297401796211292578437053691416520172621582826538646960420585244601780879472272454006338043510501955410914051560199158369307046860855346971518880848763503309020037843282247031211103737415274257951376662864588191378530259078947539022976341274492420029013961609462465510209731861051167679891468152490590968062977918454334427219060074587269143068746938173619453674059765702305464014522131617833765166358992336317343562098244649189195590437912236206923253457914584084772453271360527835154870974830970326732163163966985022557424138337515674609258184093806842020214000475407372533247660381652687262721397902391335487163529117621114966334653!
 4505661457573273409310424466413681696430576352151181680877973783843051
07059402388636206052126752482023464240518996331398630392815687441118269690145575113392241264177920150757648744756341319828871791024780613317435963903441251533941165151623879591095741258013921027603645043686431306474141048242399378759962495160802519906194969330432738294565297851275870090620850587863810503699788279000035776493340550877634205410275158057178402740677098384821905102324085704633478084705168483808852572852502076432046216311903373356779409791956717407542082928091234003271901582426919818319102723983461550255191561453004025745595078041412126916255454997908447408765976260678368879243803773334521047304499281845468017304047532115670048934849854924901225596982184291126105026128903985596694774303685526041814180742264436193764089911585806842683346216958544573686955058057758130603883366836694491954476138781122723460025485165607000254603004224139907034018064632710199638657317485390644667233049078218013409057695460163494107597054560019361504336818646940028746158076252850221554!
 6485607280776747743513183668273171136263725034902214391565025792548251660162487163242711707901577327060987739253999854508040307775078071743711187075055958084491374701585144540908194921941510692230843862126981054431023541898847457159268775298333561720624461845527284109528678481501016448289555451178505116880247502552746959546406310980675617281055881321427865090583160142246110741091821547612658386998902957317644662062825281962485850331317240458289081765585397270241910742110450406519562763423229504918560007334756537836588713910423033926348246477955488496105559298820329152827370023364379227921156777064911408049476875582174922226536356808602938631820336795292999516232000607623994983643819974135491439597767662250454270400247724046375731449182981105687798207415564291508904705141578524541849594868641850366557511952645902547980243917639374737422507874471959828142897471416965244795041414712985129566741175295109552946725215972857490270907114167733591018136201043420046012008393990206965!
 9708949475104150685138013660605735306235821634149603117437989579232876
168
66401070570676306112232940390789818927936343196674545583305612900214249568822866688710528370948991009746511269012314798921697405039286054263585452661487283875452301421163722722840833789529481810688401017586079106339768945806197174468576194193704089075001062167850933903697372978409084298094756064031116432749465133795499409678413780659672526530648889680723647710914905252750397011290758309463340508408720046794855510845544770609682209668824877264264182084150833342008859672297792164061126453214107507952630163511726753872484462369054820468520870294161620319143264545257345808241019538651871575421783102642361841159532998531457066649574086436101202456981406111151272411780309461177698861176440436315232006736256006199083796480381104730155830557148771281369465946657545504522675057095936338308178174929456471781960838762892666391905280673825485668486392918545678675796599512977747504514721611981314692867201411988152272321537814372627160300053903930791580254677157254957391504171344363023621!
 2096709609248215005418481532126070630788250741164981092547789045099814115830875885489773640157914562565859348355104769129443190546475142151412674569398301748396966099557723164639869336162673002764222971093527914009391229073090248708249699512503854932621553718584485564490115794407024789277375301532524298582307600778150896832513523198451884064989321447432708654116401707312421905905377461976522048149790889802578417995518313831561877393647370092668358730094111992639382805574377191083674757857804722098530546614099912101393458188836737836274794909478511633658690507619380912438218180877009745409799589802955369497867370006377050545522488774508191562901141707989934016713289293578846465348660515732617219935269944433154313881405705199988412316637528398855745412926327525082054954917863116587423265947050572213134300832602231084091374995392742335251027063324759346409855221051330447422641899713081930702887568308267629586031581439420408551486816615373904200282102804196087862243037731312542!
 7139026437780541871045913966291184247739255716986465897734229863683721
20485620298074833023498019785298111981805230767888872668476730247907834518825573169588274931870275934147172937450841721927080787505307170144418693314452560918086894862774107057069683401198375745205641409055945885961373961373968795461032604083936652335373783772419184832298058201006902776727885229120842788564951249468615024441047388320805366124892477192977662895516523725832859776676935607474340827125118941684023702994659495103291096061436304515042489525063174099324618471714367630461623451019589070018314178842826854039752829240975967669399748483943578695401752913603130381520098120828140148354448123115126166143663933781558373380747861338092635189180941872938243956131719333970496915917631597136539633237565779050317646426870783713082422369056604351909819440995396678770410751716853990845076472864554759866461153895051388140960443816595653060876295026667829882392357348108256073275500443752991186522730936306791743805867870500820061050962978765648742489220923024496031448768589118789991!
 1457876010619492743928090823792555640124215235158847486986330542509663588418327823384446769954885160449708149081107324261822929852977572662193563937259684242735744451912677520385647352441496914338034680495482032001552005083383996204295076184296863636307142948626604755836042403385770937463726454341047760459426773864426868428435380284560318982744291931738096924926594391151458537143331947682564516023135556109859486341031637549837048896323117376467885355537551101766036129682064707841808415618335577226460038523736782131548203178248873007187174880326519407714131424478205589569778699592778059702696121974211150049877008124281020677752455630021726659814360832536146783600363873136952712611680105038189836253417704380438482586527170113110704755277899540317676238129074546268366672900993724852818799656313141800636902954098799700023435521104657403302491482150062667668694238434112434455101054739903629738576627154707044594487521854860392671310181918295661327034899958422247471966233291214359!
 6353850642143928107472683843409621934189954761989051660375626819369751
94706478558071153031815966833099383272112023199237919056592960312461240890350389346574697684224738626783472992595292758815431069706837558160500217525034124008712512178088310726751969761326711879074640432974310945505991533724538228320084884136038646363786325487232380322016288478984915944268873674094070017218427129413354769883758042157294446204837640239389825472952640840306145440641844711938615827544738530930760578644783657601406917052787568733933604241817926567517321366705499721441334732558572030437596229145804080618616030053570740039117236496248593066129137060045304113416782928677381648365887491995814183419663116722579678610669442359698904715922320061141859054093584034903267274583279051210073232745872923676982517079905218680659635931593110045194976672362594793120637771559893230462060927943175817972356328513475002919768238020026560945365879545772391246079755315367701664401701290578242707053478228190001459734643114794429653263286948112353234429906206804569214889947295855851721!
 6694001712359653746451110807363817197620570110641420027960333764818947549566072762667585980540822409819412724614778865036936344003155944168723490051064733670390173177744453156768412253225854471583979739248300445748579356357166831721430404115206754295906915280227614459290258540698637145743548656926147479449653941105838170822019690141346253720048593182941098048620739464649990232648581142715655678461718215712546950384865658749194802476877924654719957584471680588157678802401020162297393109511479129844750703354119048661680255140839476578242895326754546243402610638668925935767464148371965907325554447092438399284549661311535649419213768122053392710497348132561416405426975388061765919166004873403821477523186183260319789018257575360107197066415804993076619941078056461989834890492680266914449657611374391643267405192477946487912900103665366778741333886341762478018370254921870728231960785617432990999420107201727286977269825853958389158601508729682959695884564692441488250700687957963779!
 5432879263243949227952760370006562972264515854685420882513991379861121
74203878969897046751287324291772042801453824387009865259890087257922674875115707592148877928976696999682000562917580636958066374442798054642536572462031196932587534811833008935113459135013425860346996847477842314391776507828230725544261521259721945300911216629299894651207381340268494776492975339359785208525258784907315098663420453176316415516031630356950071296200999621586488345698455790798845989670348740521936227726431469625712069428006884805708531233574481910303769692089118698407097355519910856165451781722077922013969477753333081168563835047178589719540302443875003073008950076360999273609354560826444812835388017809332321798351742248609015300530210639982186119912507947404759997321493918210477691903555350374476088063250720490562710455665095732307736025269954159505454735352891848646972213217748026455200317996410527756173639218043003162337890811848831415491962876961024164796903481859280848197018772201103626621071150251105425441411151320404653568106438069382807930302987489452896!
 7696086165581807321770001607778691324130191228298144856942126350989032019667831700830687415914503591635346395665671211084358226239187858649319303093765721037314460578713221403693879351776607054239909592476857213046002280230371649131000553968269105553439200262663956452086556683073732878964819760378177035166687306899971951370437001756756001827823550825667309828229494395088980701050550965099153336261975763102644084111797214128824367731273293450209667453915651955149766841889020367295660440610672435841083612106541189469180133254279560315617625361905379206710745943849603297013123868907390881024752039334308632527762388609315039343939839966257961079763013364478590000084201637945762655509261913640017507990945891863641944774229073979943371249608544000748232622178386362486132451346796508150402458611998187464416580502018084898428609628881806104198074312118306681264818540288825688351208699769008235562563682251533165632746959689454000168509016380342282278082366001958315619293598133869304!
 2091398845461618558400117647033717011314243505453877490934903604339156
481
71443298779615697047756088168799158917760526666778378897480888365913344486928842671216725829188622838268230918743050264068271080586234281384070894641431113515885937672746950610018692778051297287155684395125132089365908613865759326147520715983337631519139696660984944147913277223451741951910424550462492569843495517822506456487863509941146271766046790591209285071664657998687644854793681394565689282871835036526846149953896833908035943822828121487788153146067542316280263399933751491196484968141433751423282563114248819735450633489101858626805585836635858103366497424917887640944288095229235211087142601167395895754474974942470049961267555653505539262019908422654201698260736530183880826758172823526872941754842904993384851100929298974666978228834738948641522265641073853846984697428884548311376815871099241739094288042298314992206045866671112368921898892448265358867841906487740275103544484522107702105951803161325094548841954644203246362471974967536490056282874772310023609803837746280294!
 4408011493974100875784906394914876505912913359241523719407570759381910774320888825167242727651228616109543640176523850154442083551216235871627885883917126452287001577974081964238389873340735374293254069151171457579082503780736926638202351374147824280363541077762074518400095170968951202966905717779869250925984090517605609390137733938590847178967127604617486360685648744129310835360392550542302631660567392101492064946887783337358642066684999639807136124268650486166282900930359634401488221571652200425268755258485578917300325595115468790854433543699872875923811190653646846917680348976144887893490099844350757915109910882782273520560938257566619842464589385795586157840109728396324438621977671162416955813068468902595504106906069631844518109021067704846221981679372320418152078274849197569234864028282368936724842777507363513901061604056205847544812523832521339191233901671173225394873868341206075240745705526712325083497794599459475441720502964193919468176972142306553888614483638886797!
 7474316658370284252734488019123434114855703211717883052016464583517803
20172819383742958899483981706790915248166882715927796712531815075496203835660554504238817641663445825541895844365722686134283894628048245723031742661919746693945981321973038476282232112270319517508987612188836233131192045902808831478750439772525629422139773176093322226098861128936671082663716176226736046456345038373838776232004764950712681140309519876647758667521579388650817477400187775149784152562679241371688731135676063763515786152173381879072991457936978725990676986500590292240223621164683374589137070683349729885765652510477198633167054793738213727062411053354518215580134641716547351200623461404888912006211732209344036754984525008078384310677791378834048788816391469761430267288809988265245762337090112905740559256931223480994188168470243038871100030908944497466372281597309061906959074314953566566089544314791896894388540663812789770456062133258146291897486272144004941756455339814851794003371408558604982219185038990271126478121229004583555316324319299634383001496043671158424!
 9711115939503714028359843175990880384658144093168603463926630175962959872781979545168302004438115981284311506886529484819601595259762622078368782765840773582324264973629567941386812510442723595088249306702297891256210967290608516933137775556993415235096035618194026144910711885291491624089954819962499961323752699820768651678349525953084368768780858892362621330254638793041092337997507710647166129418396701421350984263348525398157722473646605930690579623351163520298057620036149867782798386564373977169894345403160106830104399246116963536488133645309494958452500205534712962727869147396699201698208850585877739617544310273029063282244482781713021231315918252502842074726486364493994466373969196944039567420060190522466951305422756966083172015494024262998384587844301092415631942169313115881096806902072022875229538673072503341675886745764577773139519465009899450184891317628499580211508483622017675184725447441103302830187619434718556762872171995468178312440482720187107700729620590142416!
 3688200307891011815017568039990438698104139417097778620765770833407666
61379130410975349850008065544862695405367297001207188300792262966193829595875573395132238027724625715479803910333141724236160136188207603023725681092965895524364851256062467078947855434520768449882716534957273892949959292323762086495561027811990030392303556059660579041946891633593975009399117940834979113836101346239280094180987793909583398601559657533885244187159973119285979223720895237586545794390728730101069771828184165977494526075398340477340412432987853327697292659126157954857294604335241632648598235817361358233338172300598739456315097256226056121484329307212477400795916149354081556792021679703956333973611835082260197838154995020532922318741936585730073646415583474287674153227799571939794260767650745222306051514898910408807123892696543394010863826648731873703860343199956660387971746578731244608552438643254873129509351416552314779231088602024502548980669930089994577813596553055309057317765460805435132151651243623717732346634034314223405589867013099362920106531184984238255!
 5997996426045148293975340820287273356313455137323968483535267094115558893221961102084762260826400736824765438942333832565347759058454646155653754203809422146061981026715553933760780307838548275964657165232191540282992431389571077149543978248319169913258574072478554347692305010913669479437836677189580542743952176574780741332411528705537869082921397657669974567282511766790447833210837564120739951030594057859917347387298241303512849642392888349088403113820840023798051901240745740775233307473159220843567671134224468956768121224604207184130852205733387874378138596007159461945537519872042654880990698402133619906684931138682692161672782029504225110501460183728150160545999632390558397523051502727833006580183665519305872325095595041293968266741429766649015998589142751452948884713670900599060219848514125235911291178824084986194596246021455638260321482213166159612965713920132982919601727728596051862566587346333733123070818584965036489085367731885236297739373049776930142770322368364560!
 7970858445805688196616588640375739990459747461283216665000713014272187
82185939547762937019234061750915465377703150096210926895100612152973617638254861314699582980124393198624033566917174152939162177310492988614635557527903321477776575905498717298772168007130920436711489246366336520014187450707225207038775418701631588184618658850246953091858132721584331647085646428672536293372563977918857208964299165751449471388951881651513463319657206090839412821024576755429037828312707342981034816226569505930970027514682437900898816354359437792614725859921921167104625961319312049238330768368135810007170957152157584815799068781350504037028969522914782258962911044267952302959208410187208361225792646932321014833794619741435422903084051308707933937174480939201092494876110326081707470329233708394891624325402152944647053995942064154762937558919010125199182680108221258094294905490143619755753253465867720269187561020983345081229524944227955018575056640813613468823257152140119134638071230149670702120010733481579399012260731812413435416674301587797926362652211443986978!
 9499677939501808608062791171945478318838023172121458067335707724654107396080063131965092142369882493500606299087886830655559438502413371339447617176671138467809618154888729263734393322551386672986055955066177352481309539605504519233293104375963964006942928493119658285350973040852635046813522361137831391826141026294031749824738548730939288308237581153356897253495547749146061840291014961513084341853576635516511012503266839270786433155701403157434347890602956635309422005544970682944936322553245708729793374310280048441664150904804699600357753196899719098181093482576647737021076828942089238855097547365296449475048424103318896167266921859769449515191329354374532208546859557380914466166085752714256485728149109743010832823351864670003507111903981644742466899664679791597525626966553040929277896062700854731155069596811086637074736540047123778003148984796502784938238737836707927860431450523382902267711948311061925255503836893920444185097694318226268487099260298736033638919296274279996!
 3550374107628941558965927741807651424779313708815716246248987328085777
240
27874407746698429009121047082445732959308720678514854285328646655551206617200115653431887125967397059034247404724259506737755634341691034081713545995247616389562169063907090407613862825154737018562813107356273651841172981843758427911947683361292180621101545294151187438776396522985334011122848545768424963139344198378736532094714650642234208276121560598918437580904269544601345646891541125553049884451570926777274397016114108087466712855845063853930984368087628172656571310423410529223651800002584578664517227616642838255010058415144665318601053520653291657808814990031057427350409995255659645014174511032261650205431538750948869578695050055499757653668618756432263234618883091183541359444661616005631012737450093880099418304034055305228306242457284686463700565795406003595543738278691161117076818578895031108051424054380767527942163630239487320291970845596804353589677698819837099608662842574557727280925335448022045805436878323237447944778138045718742902073350110749040818355559323486151!
 6363843466975904917009191332696227845697597864675217160700446424253344598712066553894738204032414220485708360210841871144888565272117568335922393578953419807310365728907652855090511409752326773855541262996211099717957893646725503068482482202587507244475312588760597848847301331449777169420221439783148929694288351996548731366762142685333801588017724095321053963160568102792375408965899709838140700016470809911180891001709784470573967938949629316055905546956161807728695397958759486059430762504870753876767156855722250332834314990216929253263589817887946315781182606464468664112624110447038987841123074902027847303921467329795958007212045672833253433122743890883783333313447093730268919996316050230626649122502008577575098947943886237357967838553412171674352835867858127632384967668478552485797516994537164355948840572098268851798855875669558957660295096932474760300227048158391893922841920348033091714992095909104180174108193582824499278362779486233524628182186357786394151509664641228831!
 2308915898743757524326828511271366841861815695071132396883296617920301
29371646566001110020474788050712418994875016480774770836868894785999932308631598411569908416353058173552720002374424903985755843231939845377949929458111079697508914582440442313842765051042918228468116359514553234901751974401855017738722066058396301916120639280203993668142414571087650041525348450154866223612746950870275621409259282430913403309408971147115637552636570989222896495455948909284595231324320227397931725154406288438175387027042857431741590531285341013226708902820671532022811349847625380602495264488371691052590161992992382007022924083150785509486886119885955517832365629154957141267405269242630558619024549630651233897912702197479064357457194810641758120571445276818803077579568439674096318719017801400784084832232618969031231473269640985507204632412126042695295190410637743382376996975179062344894418867987835158026634561730054334038490417957003216580685010303183493392529095862406583248920265342555669040291644451256490445993535940947690457381507997130821387317811666364139!
 3422460037410248716851466692266052081253918951584706283570248481332651204474206065897343220112686214729473701404098357196148174528709772637744660846639869010817246980728535817026535118184495936381279565848817295427527551026450596490054260243480468410314910976141992384496203128053180705809000200424688726076271059544489400646533005535517723374655758506117534918113834188585072218311165621580497894339770927813838901707352792945146136441129806212579258813575524765201033901106168519918375184207190223863532233770337404051831807688940135154607166191750215257400860262007191002043352835599625319695761495534808254324600934981135044451384292416155045910312843898690593401487153600154676701805350960952499402353089317606235967306832967558007492429253168669354199696500063051658692858812084898089729646377288510940834413350584807797890154931303940301508553186801002172568926700180750595166769918617455046361165528043948758573842143558230187804459157717647883033661580493101280644258581800612113!
 4343456824249225712628964457523931678466992061631868362934981782800287
24934905354200799112242102082734400329326137184236759088282303747287227481565541605058849119748318477574430419638630948881064770477694053394880341653900723954669758728356284719763646122485138012946007914226198303351565647083122883156020459752388310874912720361259381046697411577629143299498757586736471295049970393877655489981982672496873162043712178858320326326681470098356990522548955724917294070776975014036203454000996255433521921490520737450482097340052859551942179435676775152224510379342509270741495775360172227845296956271670219690207629022180104898098469784415486256686729195004787670850337090162404343036378061968499861318120960694964555643847321588161989780515418773870958315920121511357636990588328847808150618736313178312080129002639672686394188044741905636737190173638427671529810199892990013751610496841552609465746501004788148372537694375102072161525244175765181313615225870191384336401945523910342097961837431547891220235484273942086905233653128190935911022639186565664092!
 2007284464692408771847820776653721914832172784671470432652759142686553880232968795763774773985659284815534937785287196223384615836951581200317259531848855030558527210529062862659131107913597414342077750750019520064825912155054591926868460447082938625589417748737599554905597808791447586908324307358103568419657928044104495030652533264509534944692434315345286074340514776012713035199425487607013436267241626806097097553735185608700647566733579744688198441797104497272455066894572393563159688628840342516510606859408941594497412537410089692949619097226085934438198375122412753134373369170303293761093639898012080635400373302428558343971893422747474506364071009463785565230658512394886210949672634753376061037732185248108765561364040545521036397886268372819706359603533499146138332474762946647353456729478340950364018516379183034937854170361011991608216259207619875903009735820827937362917794066548688948652257279378766959752647600895741431236753523994033876773074697679834629961767414018537!
 4529709294438531760321025768853975203197336077084502564634640879267114
11584703892448864229263227692823978130577187485174689161787873712104123998717886773484722094146014164209666851075897350721925925699987089986357194386727464703017898653214830180441352933260771929505098363853710767963285987294731680182700794706024988063944364625825243803753078299355624799449668842471996559985976582840178243590519865907864503835777442916248979076427093263081515030651646378168937286614972407085792599262005664431840545790049033957151732647270696549398478077979369411362453834720345655186542697203901412860333719468940873938071256734493743500655978126995786167415478501842798387455430761560145464015850930319711552216757543269764858513925876217342652140706190795555077500105723165153929563452515760758392124096823701166669210759970889788061597336433794470390623258389291150306503873261604988408048713382609832873769194228602950474905960171602434824920029293330183613819164061833906060331547849847654545589583743282769801679339798018262625686444261369752311860870239713495111!
 3359799216806081724614253154952148192215427946698315251084269380560732424684935055603009168813894998596438214879621210416110019504265610270504952917630034210468876016577619556382050441618519530753352738831588762148360495852319670073582060174941251189079003913917972822146957878206291275235261058016131484822043860600981677024084224703627864736938322640238249584657128278888243937079702803232299908175619585849595546107192830831498612695599253355670682378555680828401755465308864080594785794717684684876184712369122321129617113337359557733077213933943607322181042801615368525005950554057044676578152164315290159870558492310961168323376679010156957400060425501329159500816168818341747204280429273239913491102983494927450212441498321715264896238907321212687450470421950726284572990124842258016167524210676618380141988890451811554906437349781726161453210331490706927424955128882325427232204777381086325477568570011224238143908225821478070355010549558777281025341445687373038982145148991389112!
 2076624680018422819130944548689301301096020517669457867245314225232389
682
56146479333820227441084104963270670791130089131319353157837537854399746549857601056686090506831198533775926500196937823752778695888067510320491620619445006248795240424014048228787697472560572763892984676819170071337660452720709691862948775527125640348346278902619071362227328440608630302068184857528339094644875095811493499490552366623087559945619797605414388216959891789528742694226294685796719729775489142312761398218051061109710174346752171764602771799496307094044125986763636128978728376878564570253726454551330804151166063512933552747483679243203395616316298979443340562362431283606963072119766935440933716364939373016774847113031864722742072762010557159990381428269526626258355723509942856555061589301707120343971255796906167479483969254414832880834058816965462740178994158361311345565905691537819255678998610088858735163050029769649940470511891872651640778306131035741801812595569950460830880378412457127193950770927086184833861656862596207392378764702729172468503984785145884683316!
 7032018671543622111894406891745919463803041755131031925513786480099553052869884571322526280811364276657778768659333903910005294858650294488671825213481336614155601593161418321109887056503184761399655265751729857679138595396469481533872323887959669559397073918356350608880750948110790109308290656927352998765530820271695166699386735719437585196964024785814645308665336106650182414149487488772645286003759747460159066370777999133565745556780633796446458486189037363294820935193833857323869766402213248263564988261692879518380425761299842009995782431127591440786704183744633570496753506741929355214539815496304263009159207828033052096323549254336919481349249194351692975947266885598128930765303328507256777489524631528123609363906843583859017624173774802031264229091402639893117590048859395637736049888724541620285315193176516293621692540005602133005582741908610770318709287082710592139224136467917113808512167587972553861016956785321150215486640058980550548670940884227627994025847122800355!
 5607611162775426433685211134715549206809964409674723158082003276632071
78846884206756887026720960776050746050092369970180648520079702173614838657131397343234103419136448214596302806717913793619195509724640427346916303776777106525139480545721559387633521323559046302475839803913700691921519500300477263281013904635268702456301057793535332143817730821049096095120974006323963687909667483894912992953484937303373857669005236972005301361161435745461117793580277270252096907908442980683816115205411370703925027043040090876786397907451956242438522580320852119938181914771432686185445468568341928626834762501023678001096453998509981727769189587915758553840973689935201127393920868265222557030374974934361091231419457165856987873901978081448284124594645319914152291290900838727036077675318583088894569068001083842428937576562579576018584407259152306456493025213503268088308047547062255169307776565538795639577158435764556577141095350475496850116804626113251146091052577626360893772899729105306595789301273047616390260874133353281862870231064757235244672339142005787139!
 5618415643852485453833552275526493257715613312059769027516332121920504524919951598946086343750303397512610924113350003702855840905968584468340889101762458039269292774788939936457038424563974675614038145791329933426384978140665366445469050525214617285212013527654054803539684211984383354540859510487274639005876551995748157559289746821426160286875024446396160434783994414987338257426025602476887087065544604250437097490390805171958466062849948983382340130148692963760343134204954129824951797034249991440629498370383701921485456586919559600704303864274981187255986600227750436564412370998726973776204636073685712252351646493771497713859795326266344236122510717648154560029051924018215790590293507135753726359749355196570195545848488319677440468796830173623508650467701533546109095632747076698231996901086822254952379103956063947543761774966351586164286279373410766485762157935215589845059235492241686973399867422747285221921525386788989747483980638770460259485828273556553417225754398828113!
 1374393629650073825514989923636265245885183629751384786928399531897163
77904883526619967537506330613302272336626731866302389000081931076947974650835365584737892092914968149063713486575425551410140293577816702494399561006420529320888546900757527202234179999880549986540287520019915578780836393677620818153068160911156322495565184876743771303943857202394070265371235767202528970957558539901966051715808956842491758042155008065769857503023444949066437868749638235608507792501380836555894134518519594165586114864725766338630488942902508523080908603469711976544844429590812336038129204713639351330013589954317197347961844767386106375193747406213251395513257826140004512400501122273962622983464540667616425967969316525286903581518621102835832817378663466697282798759743438099792548972383191187710240162154012995739717364833074970488050020195462371566634595614628033200100596553586488876867523402550672896574603703992349235444464938239929344064950178667587160863816468703089904429977519248910525775459663681451649983726930794019971453156827731906257226628931297868040!
 7240995301263625636051138331450844820013859396540187493278315074471482915954633142971792869166302916810561448727943532157708390578275779221900630389692022893570717609260828895509362781776509473219446960477988980838524019118900017994602428779401756049397625379982904331827390190973192784855835881736291646199408266412894024323341602167371576538578371026399833661513947659873464573994355190749424703690794454399506144408575675418541011389865380397563952039231938361932133823330045995865793049255135856233130089165804413424253762000486280252878074800672757982996868731591809146837989422560222985423099164274293528924407351842518875435885862752160799804777398204453439676893121281246800371161459599246278343007303096324939663597786644277844961963616888958240757016114437801198961137885107697184197975849874263361159560669140526677986973002657660751236948533572066197426611496877182636045018861453935005415815343610394885812019577504348889285729922660774085190668319704868978159386793720219951!
 3464017627300717930056969382195398494140089074591104456346296529850355
67175657190020943926813819146521351312817427206963585683962695866232078524161143992876675404875475589964514155924190488267651051388974152864079875174154185906442087877767576122405013661021779539441227682383206417284631601644541366440970037547527808688140041198389901561813347670835888809575690854137621070613868447106414936107654139606083445718281005473185474287366201588894008634236854829156064958086936772665554942473736443041717867464560317191730624468397201692356539705325579323588974919817743111064258747566177769544171500587966052053858634970546352920518723350346221796323089827599771066522004177963003715792037337960826391853580291721138297643813395041249205851614002973365374835353061576961268184415907849211449003653470822258573289924907657786779918282511017885060295662799460702648604680870347627677948032749505414506247229989709840083026566173429185504870473874232021353575467548925266630273662030687551737774307730996607186623310134202695966983954772661201749399970692417533662!
 0080625326069402726575697808168887325839032577511822150946756964894860532429609720922064396125936349019324621247283874069504994593322219450886302627521435266565518680566755851816701331931231613651159702288985159931499868929809810009974724788608912881525556445994227389216480981581899621769253882318783429700819333663323307360548474104101217621520203464713664794672131777983922153577311783682371762863980713090736411758080496136645903455292511996138737173705392547915879987408574344015781156359724474679810341478510978075107037045858143141588165396973738640075271458946496718638221603503262075044876932560415491034833860399450376063012821311783496584649619525405371268869631200544643272248200969833190955288316485646199555155802911110552957984834764208119587114800162428725296233706057668249579544480277809502050207718055866675650482450763185540830489360259694488311092246394117854132054646726062570102797864724856979062907781191426300232365298891922154395552950185193408648678332436014708!
 0748978125388143072616722799828609782623016650899610337555358566883841
392
63527463446793154882391194708532768208534986838783102820806412386248216702859861625204692031668534924719704320705382960867623729485789230268421758039303048756992409074488944727538978955791509903929899246967136656692178429326374970673490952419298281930630809989461090288571541008039182756559909999495142608498358013807196589059820100514254446539317964371486753981308870065022651966495695252189846575432621910142837001387540537048117305738504507487013204779807614991652640375653066140239125874549717988050908920471647248003815636228420837145644389371444409794775796343940574695445378839356847493068658486565081179931565705388292865162894198704847143493238727870062913168741349233807290774605591155753409357368950556777125890375998194247021617138752945835755493010240055262459758379184640485908098577814779827189488762294647407652272610906900451163668482972045906724499531948659701624134808079954053589239899078668980145111210356065152981484119635247814941963532250461556018315491589083160179!
 7403714051473841229577441661102320449930982811013265943725676666597394140851826244620258612271868289686482043166608073986130068919582825961180281611152189120428515667463642003097782231514766961270651153113072382677355754839506986195490414561495292686453589961091137281773558835497183318168413024706126406157565365161508745725280659604682021724509040770549304086550793821590821645345159581427829650555609635121408724987777623856769561335858981720789944104166455959356190965610294358357712215454267469317293853223572450399058984699053922538892555160878316573720296902762044658001911270441612986732381285715977786871497373006160031721871769319982457091707452975213868876622799407515491862290147601397713529324956128780221653693282693783232113965416886941962492498449579045438339619782717310865177145317443112331686020626538689840062918905262977034085762907108625498842451367347642762441465441171767619102643550967425049450972710184596938010555874755208790413742370575977787964201215018419849!
 8314462568066004569628731373944857637633703665840716305045004278899943
54275712129941964678019434415240217128106429883113090054167082131568389217332711988159174231879642202583962232789529727358867106626094406116571708159689310321758815519363260047144098934049228472020446492587290265265561306080896419169518461319638056763113393289083623622772180085038684488622012853397453291740285543767670198769599498373069949425014025554174055892019628926354743515946561069631152901571297117209089989617840947683543680500254058028655305821845917998477946057129238356890210486313560195093545579360520204580757427742492437034589112211842586336236315168569235784815616616626767892740304003522341715453387590083767867851463604630658254486737952918083882257270958629914756462657914871992487572399110003021228566475442281957849992003236638199655947070310589873358524079747733625926262362859515759450347814308906564314311758602671240911171504459733951316769187101648015933433976692541549320934797889122033190107768732238359934715272110361795219670966747460983780975595070211977795!
 8035027028936826870177920405887848718558469241985962494472918479133460592411979982584141867522425385750586424426155635689081635645865479360697728795124410906520633605255189580016080554654248837127545785601554602068265382163833428727361144785328579689856619631890863783147960510308547639543611942935574376620769582051775775018196978555583370624402677381068609666784250481634667149931832849444567844315265657154615667191261468418254027119196287489083136571178399249292483277566553036957532878187616373514080293457833741473800962898618955112897484472477911663116523313653949191967419697120852249780187428469108505616942274008970886709465572054737930521256154367254302628327342320434813477749346276351486043848113472170913505763961671841075967223318763726594268506868922486335828486733717751292333583802439721942719459006155174360273681775950438943064251345069216308309153779244080039098204144942093924540175578803519297610518483314829406034068814386335626754572248116345657961990905072769244!
 5439637191936607948180540108012343405698666072574957868539720004295711
51435177172630733318286612471313942123182460184861157695134426613146426117466849197256504160042994132254969859649179172964485353092240506737118636472388179395296218314942485392629686977263397424137808579927300907555101480741145856881071686877288938094705848152515143585287447253684857497199248585541605418432248317922985592831014139957837842039188922088906131893143619155933481526311949388676869130586429751410307345547379904629946453346864376971363001492714759049454472617063104624169479086430453096254809030878021149509430326806376526729377788996785705970189626063588563284347267735987507376935307157446412246507391358646659271207679917017222787527973016501994195938608869467164797762107683694979744866633793549107158177121577880276223136154966857550904869108309678792943939045438116884720008868255083402790210269291028920655294680608887524099214828012262010312416578845881659371189396725955391669947269961942100567970474411855738734920435040337663889699767945070426470284787875785536365!
 5854565970230038433844412856379820066808740477066374790188028462193690725784366956519576259894599749143559323761129057286337101400026337384821826026818177350453701867138442085345395378584427078632418916611970894016957169932454644910350416650209243540288294325078257300151341222097320761310752778244480720613724178273787086827451876361019606629822507828323857742585505592230512054268082348737815208132089052725697333873223141542282249009504356897887459791253638005347070012496554019218830867229038122151723706934976029295743870103912548661831451573587543199847265116236283844513125385923066370469792555050549499172841670349949011025581943609484920090053404580593899992776731179460993038763389489446862921187626558168653362472372344990292526165111081881313527527855606617981385852895921620618810978347750290993841677555460372085259973485961763248820205494857482922985601311655658081433856556813348276656298682883483790695605226549850290540548525935479575369786740408121598252464733114681922!
 8604014778786599656265823070104760849676581806098977973426421633780747
85460990135719312859945226826155229892292038551257624130456481963511097709459662108695651616922537937880080182156152628077263786081939898507006976305559247170387328301833043099297711546936949877852216702968002958484033107100062188902697949251701810183695051715430860240717437991424643630759027683261504881494562176307071943684082717577255629779526879299184644197632604841309928822915085026277925684743940534344415992083960742800928980686537821811142463845285556313718793271482527329933408442449701380178673055406977184208705212747058369196785550727559424693424283450742140993532326297517945603403632551833573698271150826256182932445867689460355022462759237231207041747892137152259593595781912807841222306359253419969666090183541205950114472547319202068910905465310162329972186060437906253318107459471137997815728986184286418848522625518174104232623584561664913166278543537807109535370970088624617809663620478777967926389463612768842700064163922586633539361095551053621626528770260580645491!
 2455853657121113575599046599473529592360883661482317640875771139060897022621804345568960479277820239160279682766613492817430833933636541542679520167904375356051184786187978647825776311406045277610108077534559553822340504394397580615788135360296877247861042656357303352857246010942493652419381784458014840328302686319408400706928123987080682067324489488263808767336081616801760731167997130494626046630164019644830885828495466288408338088573551569474660831545717934601350222506492483273846120888576836114306146241614915346543766797483604165321885993583233169790138070233136873649592324866529282033600057663590376207046161469040367523423010259912403782968616252063734187969599016125488874964219531005310865032729933919418296861788774533123375547661507463485113837324012609999917071785476994772839340675624795903517609339880241553447860843327722039456684695841104328486463991621942179274399767854056674661075627907853514585302804260612003227960846394145948324459229356591361566439672340053209!
 4133825402194958404066009969030679390409330685510575541811079861807501
477
97759951611902122088025297391439250664071155113289255980641265169699938520178407869602282675222894766733322519701139271535568766068144073036072020101155821516057436498231770926644635686941958586966895522684543220004210010126750929994766967268458661929377854553930226465201076447027922096174382031274949287481686113145692488566237708599107739491692274074376582565937875665985965027644323311241135436198483806645651606422175054440319373189881564037652923853870715323019108032766303180926677346169071587880940818436868969476190399848528493217285173201482473329608879135770231566406136970589815760525092015062788042977901697709212536042967850212786771414853998732687096600833137259075995970460380955584863790963173847674736917096735347540465561815059468585548696530365605094071758555089185730523541582314417876178353495437392950632130576880651795731858775182317810730349470988576989433622325837377856906011510973442675508624156564048656414309217362343725176491263303815415894216767859648700390!
 7226173406832768121712868049980650653943246890648670763631839477617916118752588593870247056455368260198783876320464578881501946901520529465348137632111747279142325567276384643330183153995773320755969618069847077876488027513479297088935030485462135386859184011533339391660904818129221730232736883808326525636360585938072790316711009687076691973314950445170002270244860440299420969894427945177040493419183652041823007978969004823215704493043686154072773705074247593710627213606921032582707378909390584063347311462540100228987541662870238904535459527464360607940941137430972733783837849647439354636338696072298620509114547661002421926521980596974912884457411061913373515262701825345791659486849432051136591724704665458247836112044111457818406860930868015836708669984243782676102854598398399858320497856598553268727012927101415993043766707758363296248179314662862155750708695076895602401562864363858601575730068351382054573813565120642827229838851679353827539020215107051716372410395191181937!
 0275237748645196704217607947652811305308966908168212258474226699314344
04368033267309520391803001311642475985164181333185220336080468878390005771521543160662096607887359189195247114711653784320542520948283834651272963994471157393415727767934490629108714177441235949952595096150230346731928943607275355119309485176717408125527150614209194525046748518420552566822365155759831378149117691147676753381271423297925142767555243184306813404141289367681678492820994180066910788099221312953313139463070469681434255595576531692507050486768843858542195350217810400674311452950470559843011580823300174067926835338170153545290916065478015670107499646735041753998246484669843918196966364619988053892435615304151270947954044177583176040479995528653320844141927523838854722052825858352686238605129960465561291986801106248470004825624906818361826460235660887104393979469473026825510525473852992938963164624413006250299489464672679060059528506887988452353195401855193676370022542358403955911694365216171684614783030091381786430419944252030182870120509281572421623761459943181621!
 7330061146021394480757918159969060410952821355497631804078927739865315442236785112497496366501650353094037644447015391911113097673676948382448544880080371859321620146551823035001967554082004942377481784802985572036169117050796448577641151443478665162781982384222095324383148198685758665828110682081108198800323664742473574067235748004643274824061239764339213952485309415150567401013965321637606840106104339851253778648090337931136935330901613096985627037551901080768675642509307665782833421862384612014675544274386435362606823033625168041478085165671392564520864298399302015314160014665746789803006113331542898560837073903603532393987007490685278848496676456694608080726753501586202475764085433753101293440851179126294982994446716547578298189763793290982268375001901603698024302490285095204471508426059247822079662277980747872535557681588431558226721552844125937453683143739665951993545628999555280024562529323620713403638841725805470629082002177030120587730029095924559594572357769121257!
 7992382468895066139716905436283099343582860614466893838588499114163343
99569999934140267233781091493932003224654863559253006877893951187982921470044051690827496767291783891485527942477172453432022819160940100736888576657449343684985458398196156013119681509334574890619507547164425813949293518999641500441507336302979161078233552893423142611095318644777019491691279077351614683710420360279597976654003860363737865031893940806098879979756467317590195501038709045319132896083972571888358116970871350604526473170470079578980450051424660452083775700991439725538369580865295001708149272560711074501290233956023905911280644994878936109544050045052085835869995740404576173650024310406971918372688549806481437689119790643406340948806539082772974379677308216526489739895899185294613396467402936237747702003629192494544553701153977162192161482674098193708133617356274980016901582146139479395569466468047494284128272152970943909882009573914543315129138073035899051887187952005343653150829800741128951860214162590290361337233075454941419783382571082095006071471715597490300!
 0927105759039977299034387798061447542419181147120902479535751495050819559759942263528878192098222883016790087578123971372908662171922260485117422511634901521297324023395367785384426366751430902920144569745711123883146333268651361941099910832835996999078182624821794536744503087021913979288744200799457094869120255779930745185757066470393921682581213686284988925200513205742617348063329125630897407166991907158313931415348509147330960569675939094173735365540788252329424221790431543732506696311453031254705986948467659472107436692582234286192886753498449048493939949263396384370703646089448228368996097080327319255347547786158100495718518122373436768435186641763841405903190054236864339417380056878782135108330453343290857610300266569276537635270873007813633666345004146022714371959243298126588293850951587999712594845583884428931117914176422907469278658324522318643613016986894586077273097112528817096579819031634428304604503460238228835459033655215866855010350740150265582223204490477077!
 0148382057022916310227254492612077949117579831515862349496258763035405
19013449679703988921382091660543583502737628112243611910838351761150578942736941489028717506571016595974429540330438469568702632395954895474177561878028201961948392448555664276716238212293333886534595566384982581548609241457442915647562680657796187217060669637681632469392387358022352045910372226320124459252358092649657857235787173920834028465194846639257613957377753978548851960493448630708623412196369167879548553408151954073202040285811632206184064084345222191556852842117491968669880201107768964054178184664033034131600623790987527042687145711580398932720244414022352177185836097505423264320801251316431300012452495692601941980862935772641067760860731186287979303300421732743036594766768899189177665912378116817235008386926615945530284304450172260097705223727058318406710194883385359942513987727449000285764487982161594513179970497546011050307991189684826177890726940404888098278773256089033119503584172028148966829417458166570080138463820637085690159901957868317508456777422700627001!
 3938816048188565084139851435186185519667051971564229982769033148223893927756554644112869813095284995385168740044723622123661803193288272882477802922374750107951069195755515785616295066133627111333417169838567034796048941821941110869519071143955431549017870220112121879322727349825772417202117373852534879384611074863865357763215611927445229852069742020067584109998156610426494329665859386678719269372082963316522801472091950760558847856286984911210061619340613016898928297107609641251327739860445584311338641494070885667240914979299072634199975994489100767111984891037876978535988681979970929604300524055382688916762344188299480632743628999949591730446990703379538569797349639748052728071715593356039422276010581052230692272670047746518822776536478084037545545081830451878885895398589338126127811212445745929927201931125265132637441230810689528288811352369896599793038179839420981720285921121198802477473474405170677481243315120125646052648434447752032772786535861286554328880613616545366!
 0555083567331538579245070722989605180377818552871467319460694231857013
008
961889213947904262895505102625753554634266857014656654721036080951754508895248792884443578726464867712983887744990893938420561851775507366273187018834666878257185362234347106923992376372942819066471977438336892561247890482400578300550884489102213648986484677530760460328218157636015970575306867807164037263879984068582932260438966092475428671285598752765613451905533955933522067494718427980607278722716854229219279712849336715529583239368794109642533833155854113863851571629531315171865411773717680258565140638305243e0
+ floating point operation: 2.09715e+10 op.


Index: llvm/test/Programs/MultiSource/Benchmarks/FreeBench/pcompress2/test.in
diff -c /dev/null llvm/test/Programs/MultiSource/Benchmarks/FreeBench/pcompress2/test.in:1.1
*** /dev/null	Sat Oct 11 16:18:59 2003
--- llvm/test/Programs/MultiSource/Benchmarks/FreeBench/pcompress2/test.in	Sat Oct 11 16:18:48 2003
***************
*** 0 ****
--- 1,20 ----
+ PI calculation to estimate the FFT benchmarks
+ initializing...
+ nfft= 16384
+ radix= 100000
+ calculating 81920 digits of PI...
+ AGM iteration
+ precision= 40
+ precision= 80
+ precision= 180
+ precision= 340
+ precision= 700
+ precision= 1400
+ precision= 2780
+ precision= 5580
+ precision= 11160
+ precision= 22340
+ precision= 44700
+ precision= 89400
+ 3.1415926535897932384626433832795028841971693993751058209749445923078164062862089986280348253421170679821480865132823066470938446095505822317253594081284811174502841027019385211055596446229489549303819644288109756659334461284756482337867831652712019091456485669234603486104543266482133936072602491412737245870066063155881748815209209628292540917153643678925903600113305305488204665213841469519415116094330572703657595919530921861173819326117931051185480744623799627495673518857527248912279381830119491298336733624406566430860213949463952247371907021798609437027705392171762931767523846748184676694051320005681271452635608277857713427577896091736371787214684409012249534301465495853710507922796892589235420199561121290219608640344181598136297747713099605187072113499999983729780499510597317328160963185950244594553469083026425223082533446850352619311881710100031378387528865875332083814206171776691473035982534904287554687311595628638823537875937519577818577805321712268066130019278766111!
 9590921642019893809525720106548586327886593615338182796823030195203530185296899577362259941389124972177528347913151557485724245415069595082953311686172785588907509838175463746493931925506040092770167113900984882401285836160356370766010471018194295559619894676783744944825537977472684710404753464620804668425906949129331367702898915210475216205696602405803815019351125338243003558764024749647326391419927260426992279678235478163600934172164121992458631503028618297455570674983850549458858692699569092721079750930295532116534498720275596023648066549911988183479775356636980742654252786255181841757467289097777279380008164706001614524919217321721477235014144197356854816136115735255213347574184946843852332390739414333454776241686251898356948556209921922218427255025425688767179049460165346680498862723279178608578438382796797668145410095388378636095068006422512520511739298489608412848862694560424196528502221066118630674427862203919494504712371378696095636437191728746776465757396241389086!
 5832645995813390478027590099465764078951269468398352595709825822620522
48940772671947826848260147699090264013639443745530506820349625245174939965143142980919065925093722169646151570985838741059788595977297549893016175392846813826868386894277415599185592524595395943104997252468084598727364469584865383673622262609912460805124388439045124413654976278079771569143599770012961608944169486855584840635342207222582848864815845602850601684273945226746767889525213852254995466672782398645659611635488623057745649803559363456817432411251507606947945109659609402522887971089314566913686722874894056010150330861792868092087476091782493858900971490967598526136554978189312978482168299894872265880485756401427047755513237964145152374623436454285844479526586782105114135473573952311342716610213596953623144295248493718711014576540359027993440374200731057853906219838744780847848968332144571386875194350643021845319104848100537061468067491927819119793995206141966342875444064374512371819217999839101591956181467514269123974894090718649423196156794520809514655022523160388193!
 0142093762137855956638937787083039069792077346722182562599661501421503068038447734549202605414665925201497442850732518666002132434088190710486331734649651453905796268561005508106658796998163574736384052571459102897064140110971206280439039759515677157700420337869936007230558763176359421873125147120532928191826186125867321579198414848829164470609575270695722091756711672291098169091528017350671274858322287183520935396572512108357915136988209144421006751033467110314126711136990865851639831501970165151168517143765761835155650884909989859982387345528331635507647918535893226185489632132933089857064204675259070915481416549859461637180270981994309924488957571282890592323326097299712084433573265489382391193259746366730583604142813883032038249037589852437441702913276561809377344403070746921120191302033038019762110110044929321516084244485963766983895228684783123552658213144957685726243344189303968642624341077322697802807318915441101044682325271620105265227211166039666557309254711055785!
 3763466820653109896526918620564769312570586356620185581007293606598764
86117910453348850346113657686753249441668039626579787718556084552965412665408530614344431858676975145661406800700237877659134401712749470420562230538994561314071127000407854733269939081454664645880797270826683063432858785698305235808933065757406795457163775254202114955761581400250126228594130216471550979259230990796547376125517656751357517829666454779174501129961489030463994713296210734043751895735961458901938971311179042978285647503203198691514028708085990480109412147221317947647772622414254854540332157185306142288137585043063321751829798662237172159160771669254748738986654949450114654062843366393790039769265672146385306736096571209180763832716641627488880078692560290228472104031721186082041900042296617119637792133757511495950156604963186294726547364252308177036751590673502350728354056704038674351362222477158915049530984448933309634087807693259939780541934144737744184263129860809988868741326047215695162396586457302163159819319516735381297416772947867242292465436680098067692!
 8238280689964004824354037014163149658979409243237896907069779422362508221688957383798623001593776471651228935786015881617557829735233446042815126272037343146531977774160319906655418763979293344195215413418994854447345673831624993419131814809277771038638773431772075456545322077709212019051660962804909263601975988281613323166636528619326686336062735676303544776280350450777235547105859548702790814356240145171806246436267945612753181340783303362542327839449753824372058353114771199260638133467768796959703098339130771098704085913374641442822772634659470474587847787201927715280731767907707157213444730605700733492436931138350493163128404251219256517980694113528013147013047816437885185290928545201165839341965621349143415956258658655705526904965209858033850722426482939728584783163057777560688876446248246857926039535277348030480290058760758251047470916439613626760449256274204208320856611906254543372131535958450687724602901618766795240616342522577195429162991930645537799140373404328752!
 6288896399587947572917464263574552540790914513571113694109119393251910
76020825202618798531887705842972591677813149699009019211697173727847684726860849003377024242916513005005168323364350389517029893922334517220138128069650117844087451960121228599371623130171144484640903890644954440061986907548516026327505298349187407866808818338510228334508504860825039302133219715518430635455007668282949304137765527939751754613953984683393638304746119966538581538420568533862186725233402830871123282789212507712629463229563989898935821167456270102183564622013496715188190973038119800497340723961036854066431939509790190699639552453005450580685501956730229219139339185680344903982059551002263535361920419947455385938102343955449597783779023742161727111723643435439478221818528624085140066604433258885698670543154706965747458550332323342107301545940516553790686627333799585115625784322988273723198987571415957811196358330059408730681216028764962867446047746491599505497374256269010490377819868359381465741268049256487985561453723478673303904688383436346553794986419270563872!
 9317487233208376011230299113679386270894387993620162951541337142489283072201269014754668476535761647737946752004907571555278196536213239264061601363581559074220202031872776052772190055614842555187925303435139844253223415762336106425063904975008656271095359194658975141310348227693062474353632569160781547818115284366795706110861533150445212747392454494542368288606134084148637767009612071512491404302725386076482363414334623518975766452164137679690314950191085759844239198629164219399490723623464684411739403265918404437805133389452574239950829659122850855582157250310712570126683024029295252201187267675622041542051618416348475651699981161410100299607838690929160302884002691041407928862150784245167090870006992821206604183718065355672525325675328612910424877618258297651579598470356222629348600341587229805349896502262917487882027342092222453398562647669149055628425039127577102840279980663658254889264880254566101729670266407655904290994568150652653053718294127033693137851786090407086!
 6711496558343434769338578171138645587367812301458768712660348913909562
009
93936103102916161528813843790990423174733639480457593149314052976347574811935670911013775172100803155902485309066920376719220332290943346768514221447737939375170344366199104033751117354719185504644902636551281622882446257591633303910722538374218214088350865739177150968288747826569959957449066175834413752239709683408005355984917541738188399944697486762655165827658483588453142775687900290951702835297163445621296404352311760066510124120065975585127617858382920419748442360800719304576189323492292796501987518721272675079812554709589045563579212210333466974992356302549478024901141952123828153091140790738602515227429958180724716259166854513331239480494707911915326734302824418604142636395480004480026704962482017928964766975831832713142517029692348896276684403232609275249603579964692565049368183609003238092934595889706953653494060340216654437558900456328822505452556405644824651518754711962184439658253375438856909411303150952617937800297412076651479394259029896959469955657612186561967!
 3378623625612521632086286922210327488921865436480229678070576561514463204692790682120738837781423356282360896320806822246801224826117718589638140918390367367222088832151375560037279839400415297002878307667094447456013455641725437090697939612257142989467154357846878861444581231459357198492252847160504922124247014121478057345510500801908699603302763478708108175450119307141223390866393833952942578690507643100638351983438934159613185434754649556978103829309716465143840700707360411237359984345225161050702705623526601276484830840761183013052793205427462865403603674532865105706587488225698157936789766974220575059683440869735020141020672358502007245225632651341055924019027421624843914035998953539459094407046912091409387001264560016237428802109276457931065792295524988727584610126483699989225695968815920560010165525637567856672279661988578279484885583439751874454551296563443480396642055798293680435220277098429423253302257634180703947699415979159453006975214829336655566156787364005366!
 6564165473217043903521329543529169414599041608753201868379370234888689
47915107163785290234529244077365949563051007421087142613497459561513849871375704710178795731042296906667021449863746459528082436944578977233004876476524133907592043401963403911473202338071509522201068256342747164602433544005152126693249341967397704159568375355516673027390074972973635496453328886984406119649616277344951827369558822075735517665158985519098666539354948106887320685990754079234240230092590070173196036225475647894064754834664776041146323390565134330684495397907090302346046147096169688688501408347040546074295869913829668246818571031887906528703665083243197440477185567893482308943106828702722809736248093996270607472645539925399442808113736943388729406307926159599546262462970706259484556903471197299640908941805953439325123623550813494900436427852713831591256898929519642728757394691427253436694153236100453730488198551706594121735246258954873016760029886592578662856124966552353382942878542534048308330701653722856355915253478445981831341129001999205981352205117336585640!
 7826484942764411376393866924803118364453698589175442647399882284621844900877769776312795722672655562596282542765318300134070922334365779160128093179401718598599933849235495640057099558561134980252499066984233017350358044081168552653117099570899427328709258487894436460050410892266917835258707859512983441729535195378855345737426085902908176515578039059464087350612322611200937310804854852635722825768203416050484662775045003126200800799804925485346941469775164932709504934639382432227188515974054702148289711177792376122578873477188196825462981268685817050740272550263329044976277894423621674119186269439650671515779586756482399391760426017633870454990176143641204692182370764887834196896861181558158736062938603810171215855272668300823834046564758804051380801633638874216371406435495561868964112282140753302655100424104896783528588290243670904887118190909494533144218287661810310073547705498159680772009474696134360928614849417850171807793068108546900094458995279424398139213505586422196!
 4834915126390128038320010977386806628779239718014613432445726400973742
57007359210031541508936793008169980536520276007277496745840028362405346037263416554259027601834840306811381855105979705664007509426087885735796037324514146786703688098806097164258497595138069309449401515422221943291302173912538355915031003330325111749156969174502714943315155885403922164097229101129035521815762823283182342548326111912800928252561902052630163911477247331485739107775874425387611746578671169414776421441111263583553871361011023267987756410246824032264834641766369806637857681349204530224081972785647198396308781543221166912246415911776732253264335686146186545222681268872684459684424161078540167681420808850280054143613146230821025941737562389942075713627516745731891894562835257044133543758575342698699472547031656613991999682628247270641336222178923903176085428943733935618891651250424404008952719837873864805847268954624388234375178852014395600571048119498842390606136957342315590796703461491434478863604103182350736502778590897578272731305048893989009923913503373250855!
 9826558670892426124294736701939077271307068691709264625484232407485503660801360466895118400936686095463250021458529309500009071510582362672932645373821049387249966993394246855164832611341461106802674466373343753407642940266829738652209357016263846485285149036293201991996882851718395366913452224447080459239660281715655156566611135982311225062890585491450971575539002439315351909021071194573002438801766150352708626025378817975194780610137150044899172100222013350131060163915415895780371177927752259787428919179155224171895853616805947412341933984202187456492564434623925319531351033114763949119950728584306583619353693296992898379149419394060857248639688369032655643642166442576079147108699843157337496488352927693282207629472823815374099615455987982598910937171262182830258481123890119682214294576675807186538065064870261338928229949725745303328389638184394477077940228435988341003583854238973542439564755568409522484455413923941000162076936368467764130178196593799715574685419463348937!
 4843912974239143365936041003523437770658886778113949861647874714079326
38587386247328896456435987746676384794665040741118256583788784548581489629612739984134427260860618724554523606431537101127468097787044640947582803487697589483282412392929605829486191966709189580898332012103184303401284951162035342801441276172858302435598300320420245120728725355811958401491809692533950757784000674655260314461670508276827722235341911026341631571474061238504258459884199076112872580591139356896014316682831763235673254170734208173322304629879928049085140947903688786878949305469557030726190095020764334933591060245450864536289354568629585313153371838682656178622736371697577418302398600659148161640494496501173213138957470620884748023653710311508984279927544268532779743113951435741722197597993596852522857452637962896126915723579866205734083757668738842664059909935050008133754324546359675048442352848747014435454195762584735642161981340734685411176688311865448937769795665172796623267148103386439137518659467300244345005449953997423723287124948347060440634716063258306498!
 2979551010954183623503030945309733583446283947630477564501500850757894954893139394489921612552559770143685894358587752637962559708167764380012543650237141278346792610199558522471722017772370041780841942394872540680155603599839054898572354674564239058585021671903139526294455439131663134530893906204678438778505423939052473136201294769187497519101147231528932677253391814660730008902776896311481090220972452075916729700785058071718638105496797310016787085069420709223290807038326345345203802786099055690013413718236837099194951648960075504934126787643674638490206396401976668559233565463913836318574569814719621084108096188460545603903845534372914144651347494078488442377217515433426030669883176833100113310869042193903108014378433415137092435301367763108491351615642269847507430329716746964066653152703532546711266752246055119958183196376370761799191920357958200759560530234626775794393630746305690108011494271410093913691381072581378135789400559950018354251184172136055727522103526803735!
 7265279224173736057511278872181908449006178013889710770822931002797665
935
83875890939568814856026322439372656247277603789081445883785501970284377936240782505270487581647032458129087839523245323789602984166922548964971560698119218658492677040395648127810217991321741630581055459880130048456299765112124153637451500563507012781592671424134210330156616535602473380784302865525722275304999883701534879300806260180962381516136690334111138653851091936739383522934588832255088706450753947395204396807906708680644509698654880168287434378612645381583428075306184548590379821799459968115441974253634439960290251001588827216474500682070419376158454712318346007262933955054823955713725684023226821301247679452264482091023564775272308208106351889915269288910845557112660396503439789627825001611015323516051965590421184494990778999200732947690586857787872098290135295661397888486050978608595701773129815531495168146717695976099421003618355913877781769845875810446628399880600616229848616935337386578773598336161338413385368421197893890018529569196780455448285848370117096721253!
 5338758621582310133103877668272115726949518179589754693992642197915523385766231676275475703546994148929041301863861194391962838870543677743224276809132365449485366768000001065262485473055861598999140170769838548318875014293890899506854530765116803337322265175662207526951791442252808165171667766727930354851542040238174608923283917032754257508676551178593950027933895920576682789677644531840404185540104351348389531201326378369283580827193783126549617459970567450718332065034556644034490453627560011250184335607361222765949278393706478426456763388188075656121689605041611390390639601620221536849410926053876887148379895599991120991646464411918568277004574243434021672276445589330127781586869525069499364610175685060167145354315814801054588605645501332037586454858403240298717093480910556211671546848477803944756979804263180991756422809873998766973237695737015808068229045992123661689025962730430679316531149401764737693873514093361833216142802149763399189835484875625298752423873077559555!
 9554651963944018218409984124898262367377146722606163364329640633572810
70788758164043814850188411431885988276944901193212968271588841338694346828590066640806314077757725705630729400492940302420498416565479736705485580445865720227637840466823379852827105784319753541795011347273625774080213476826045022851579795797647467022840999561601569108903845824502679265942055503958792298185264800706837650418365620945554346135134152570065974881916341359556719649654032187271602648593049039787489589066127250794828276938953521753621850796297785146188432719223223810158744450528665238022532843891375273845892384422535472653098171578447834215822327020690287232330053862163479885094695472004795231120150432932266282727632177908840087861480221475376578105819702226309717495072127248479478169572961423658595782090830733233560348465318730293026659645013718375428897557971449924654038681799213893469244741985097334626793321072686870768062639919361965044099542167627840914669856925715074315740793805323925239477557441591845821562518192155233709607483329234921034514626437449805596!
 1033079941453477845746999921285999993996122816152193148887693880222810830019860165494165426169685867883726095877456761825072759929508931805218729246108676399589161458550583972742098090978172932393010676638682404011130402470073508578287246271349463685318154696904669686939254725194139929146524238577625500474852954768147954670070503479995888676950161249722820403039954632788306959762493615101024365553522306906129493885990157346610237122354789112925476961760050479749280607212680392269110277722610254414922157650450812067717357120271802429681062037765788371669091094180744878140490755178203856539099104775941413215432844062503018027571696508209642734841469572639788425600845312140659358090412711359200419759851362547961606322887361813673732445060792441176399759746193835845749159880976674470930065463424234606342374746660804317012600520559284936959414340814685298150539471789004518357551541252235905906872648786357525419112888773717663748602766063496035367947026923229718683277173932361920!
 0777452212624751869833495151019864269887847171939664976907082521742336
56627259284406204302141137199227852699846988477023238238400556555178890876613601304770984386116870523105531491625172837327286760072481729876375698163354150746088386636406934704372066886512756882661497307886570156850169186474885416791545965072342877306998537139043002665307839877638503238182155355973235306860430106757608389086270498418885951380910304235957824951439885901131858358406674723702971497850841458530857813391562707603563907639473114554958322669457024941398316343323789759556808568362972538679132750555425244919435891284050452269538121791319145135009938463117740179715122837854601160359554028644059024964669307077690554810288502080858008781157738171917417760173307385547580060560143377432990127286772530431825197579167929699650414607066457125888346979796429316229655201687973000356463045793088403274807718115553309098870255052076804630346086581653948769519600440848206596737947316808641564565053004988161649057883115434548505266006982309315777650037807046612647060214575057932709!
 6204782561524714591896522360839664562410519551052235723973951288181640597859142791481654263289200428160913693777372229998332708208296995573772737566761552711392258805520189887620114168005468736558063347160373429170390798639652296131280178267971728982293607028806908776866059325274637840539769184808204102194471971386925608416245112398062011318454124478205011079876071715568315407886543904121087303240201068534194723047666672174986986854707678120512473679247919315085644477537985379973223445612278584329684664751333657369238720146472367942787004250325558992688434959287612400755875694641370562514001179713316620715371543600687647731867558714878398908107429530941060596944315847753970094398839491443235366853920994687964506653398573888786614762944341401049888993160051207678103588611660202961193639682134960750111649832785635316145168457695687109002999769841263266502347716728657378579085746646077228341540311441529418804782543876177079043000156698677679576090996693607559496515273634981189!
 6413043311662774712338817406037317439705406703109676765748695358789670
03192586625941051053358438465602339179674926784476370847497833365557900738419147319886271352595462518160434225372996286326749682405806029642114638643686422472488728343417044157348248183330164056695966886676956349141632842641497453334999948000266998758881593507357815195889900539512085351035726137364034367534714104836017546488300407846416745216737190483109676711344349481926268111073994825060739495073503169019731852119552635632584339099822498624067031076831844660729124874754031617969941139738776589986855417031884778867592902607004321266617919223520938227878880988633599116081923535557046463491132085918979613279131975649097600013996234445535014346426860464495862476909434704829329414041114654092398834443515913320107739441118407410768498106634724104823935827401944935665161088463125678529776973468430306146241803585293315973458303845541033701091676776374276210213701354854450926307190114731848574923318167207213727935567952844392548156091372812840633303937356242001604566455741458816605!
 2166608738748047243391212955877763906969037078828527753894052460758496231574369171131761347838827194168606625721036851321566478001476752310393578606896111259960281839309548709059073861351914591819510297327875571049729011487171897180046961697770017913919613791417162707018958469214343696762927459109940060084983568425201915593703701011049747339493877885989417433031785348707603221982970579751191440510994235883034546353492349826883624043327267415540301619505680654180939409982020609994140216890900708213307230896621197755306659188141191577836272927461561857103721724710095214236964830864102592887457999322374955191221951903424452307535133806856807354464995127203174487195403976107308060269906258076020292731455252078079914184290638844373499681458273372072663917670201183004648190002413083508846584152148991276106513741539435657211390328574918769094413702090517031487773461652879848235338297260136110984514841823808120540996125274580881099486972216128524897425555516076371675054896173016809!
 6138038119143611439921063800508321409876045993093248510251682944672606
661
38151745712559754953580239983146982203613380828499356705575524712902745397762140493182014658008021566536067765508783804304134310591804606800834591136640834887408005741272586704792258319127415739080914383138456424150940849133918096840251163991936853225557338966953749026620923261318855891580832455571948453875628786128859004106006073746501402627824027346962528217174941582331749239683530136178653673760642166778137739951006589528877427662636841830680190804609849809469763667335662282915132352788806157768278159588669180238940333076441912403412022316368577860357276941541778826435238131905028087018575047046312933353757285386605888904583111450773942935201994321971171642235005644042979892081594307167019857469273848653833436145794634175922573898588001698014757420542995801242958105456510831046297282937584161162532562516572498078492099897990620035936509934721582965174135798491047111660791587436986541222348341887722929446335178653856731962559852026072947674072616767145573649812105677716893!
 4849176607717052771876011999081441130586455779105256843048114402619384023224709392498029335507318458903553971330884461741079591625117148648744686112476054286734367090466784686702740918810142497111496578177242793470702166882956108777944050484375284433751088282647719785400065097040330218625561473321177711744133502816088403517814525419643203095760186946490886815452856213469883554445602495566684366029221951248309106053772019802183101032704178386654471812603971906884623708575180800353270471856594994761242481109992886791589690495639476246084240659309486215076903149870206735338483495508363660178487710608098042692471324100094640143736032656451845667924566695510015022983307984960799498824970617236744936122622296179081431141466094123415935930958540791390872083227335495720807571651718765994498569379562387555161757543809178052802946420044721539628074636021132942559160025707356281263873310600589106524570802447493754318414940148211999627645310680066311838237616396631809314446712986155275!
 9820145141027560068929750246304017351489194576360789352855505317331416
45705049964438909363084387448478396168405184527328840323452024705685164657164771393237755172947951261323982296023945485797545865174587877133181387529598094121742273003522965080891777050682592488223221549380483714547816472139768209633205083056479204820859204754998573203888763916019952409189389455767687497308569559580106595265030362661597506622250840674288982659075106375635699682115109496697445805472886936310203678232501823237084597901115484720876182124778132663304120762165873129708112307581598212486398072124078688781145016558251361789030708608701989758898074566439551574153631931919810705753366337380382721527988493503974800158905194208797113080512339332219034662499171691509485414018710603546037946433790058909577211808044657439628061867178610171567409676620802957665770512912099079443046328929473061595104309022214393718495606340561893425130572682914657832933405246350289291754708725648426003496296116541382300773133272983050016025672401418515204189070115428857992081219844931569990!
 5918201181973350012618772803681248199587707020753240636125931343859554254778196114293516356122349666152261473539967405158499860355295332924575238881013620234762466905581643896786309762736550472434864307121849437348530060638764456627218666170123812771562137974614986132874411771455244470899714452288566294244023018479120547849857452163469644897389206240194351831008828348024924908540307786387516591130287395878709810077271827187452901397283661484214287170553179654307650453432460053636147261818096997693348626407743519992868632383508875668359509726557481543194019557685043724800102041374983187225967738715495839971844490727914196584593008394263702087563539821696205532480321226749891140267852859967340524203109179789990571882194939132075343170798002373659098537552023891164346718558290685371189795262623449248339249634244971465684659124891855662958932990903523923333364743520370770101084388003290759834217018554228386161721041760301164591878053936744747205998502358289183369292233732399948!
 0437108419659473162654825748099482509991833006976569367159689364493348
86474421350084070066088359723503953234017958255703601693699098867113210979889707051728075585519126993067309925070407024556850778679069476612629808225163313639952117098452809263037592242674257559989289278370474445218936320348941552104459726188380030067761793138139916205806270165102445886924764924689192461212531027573139084047000714356136231699237169484813255420091453041037135453296620639210547982439212517254013231490274058589206321758949434548906846399313757091034633271415316223280552297297953801880162859073572955416278867649827418616421878988574107164906919185116281528548679417363890665388576422915834250067361245384916067413734017357277995634104332688356950781493137800736235418007061918026732855119194267609122103598746924117283749312616339500123959924050845437569850795704622266461900010350049018303415354584283376437811198855631877779253720116671853954183598443830520376281944076159410682071697030228515225057312609304689842343315273213136121658280807521263154773060442377475350!
 5952287174402666389148817173086436111389069420279088143119448799417154042103412190847094080254023932942945493878640230512927119097513536000921971105412096683111516328705423028470073120658032626417116165957613272351566662536672718998534199895236884830999302757419916463841427077988708874229277053891227172486322028898425125287217826030500994510824783572905691988555467886079462805371227042466543192145281760741482403827835829719301017888345674167811398954750448339314689630763396657226727043393216745421824557062524797219978668542798977992339579057581890622525473582205236424850783407110144980478726691990186438822932305382318559732869780922253529591017341407334884761005564018242392192695062083183814546983923664613639891012102177095976704908305081854704194664371312299692358895384930136356576186106062228705599423371631021278457446463989738188566746260879482018647487672727222062676465338099801966883680994159075776852639865146253336312450536402610569605513183813174261184420189088853196!
 3569869627950367384243130113317533053298020166888174813429886815855778
10343231753064784983210629718425184385534427620128234570716988530518326179641178579608888150329602290705614476220915094739035946646916235396809201394578175891088931992112260073928149169481615273842736264298098234063200244024495894456129167049508235812487391799648641133480324757775219708932772262349486015046652681439877051615317026696929704928316285504212898146706195331970269507214378230476875280287354126166391708245925170010714180854800636923259462019002278087409859771921805158532147392653251559035410209284665925299914353791825314545290598415817637058927906909896911164381187809435371521332261443625314490127454772695739393481546916311624928873574718824071503995009446731954316193855485207665738825139639163576723151005556037263394867208207808653734942440115799667507360711159351331959197120948964717553024531364770942094635696982226673775209945168450643623824211853534887989395673187806606107885440005508276570305587448541805778891719207881423351138662929667179643468760077047999537!
 8833878703487180218424373421122739402557176908196030920182401884270570460926225641783752652633583242406612533115294234579655695025068100183109004112453790153329661569705223792103257069370510908307894799990049993953221536227484766036136776979785673865846709366795885837887956259464648913766521995882869338018360119323685785585581955560421562508836502033220245137621582046181067051953306530606065010548871672453779428313388716313955969058320834168984760656071183471362181232462272588419902861420872849568796393254642853430753011052857138296437099903569488852851904029560473461311382638788975517885604249987483163828040468486189381895905420398898726506976202019955484126500053944282039301274816381585303964399254702016727593285743666616441109625663373054092195196751483287348089574777752783442210910731113518280460363471981856555729571447476825528578633493428584231187494400032296906977583159038580393535213588600796003420975473922967333106493956018122378128545843176055617338611267347807458!
 5067606304822940965304111830667108189303110887172816751957967534718853
722
93096161432040063813224658411111577583585811350185690478153689381377184728147519983505047812977185990847076219746058874232569958288925350419379582606162118423687685114183160683158679946016520577405294230536017803133572632670547903384012573059123396018801378254219270947673371919872873852480574212489211834708766296672072723256505651293331260595057777275424712416483128329820723617505746738701282095755443059683955556868611883971355220844528526400812520276655576774959696266126045652456840861392382657685833846984997787267065551918544686984694784957346226062942196245570853712727765230989554501930377321666491825781546772920052126671434632096378918523232150189761260343736840671941930377468809992968775824410478781232662531818459604538535438391144967753128642609252115376732588667226040425234910870269580996475958057946639734190640100363619040420331135793365424263035614570090112448008900208014780566037101541223288914657223931450760716706435568274377439657890679726874384730763464516775621!
 0309860409271709095128086309029738504452718289274968921210667008164858339553773591913695015316201890888748421079870689911480466927065094076204650277252865072890532854856143316081269300569378541786109696920253886503457718317668688592368148847527649846882194973972970773718718840041432312763650481453112285099002074240925585925292610302106736815434701525234878635164397623586041919412969769040526483234700991115424260127343802208933109668636789869497799400126016422760926082349304118064382913834735467972539926233879158299848645927173405922562074910530853153718291168163721939518870095778818158685046450769934394098743351443162633031724774748689791820923948083314397084067308407958935810896656477585990556376952523265361442478023082681183103773588708924061303133647737101162821461466167940409051861526036009252194721889091810733587196414214447865489952858234394705007983038853886083103571930600277119455802191194289992272235345870756624692617766317885514435021828702668561066500353105021631!
 8206017609217984684936863161293727951873078972637353717150256378733579
77180818487845886650433582437700414771041493492743845758710715973155943942641257027096512510811554824793940359768118811728247215825010949609662539339538092219559191818855267806214992317276316321833989693807561685591175299845013206712939240414459386239880938124045219148483164621014738918251010909677386906640415897361047643650006807710565671848628149637111883219244566394581449148616550049567698269030891118568798692947051352481609174324301538368470729289898284602223730145265567989862776796809146979837826876431159883210904371561129976652153963546442086919756737000573876497843768628768179249746943842746525631632300555130417422734164645512781278457777245752038654375428282567141288583454443513256205446424101103795546419058116862305964476958705407214198521210673433241075676757581845699069304604752277016700568454396923404171108988899341635058515788735343081552081177207188037910404698306957868547393765643363197978680367187307969392423632144845035477631567025539006542311792015346497792!
 9066241508328858395290542637687668968805033317227800185885069736232403894700471897619347344308437443759925034178807972235859134245813144049847701732361694719765715353197754997162785663119046912609182591249890367654176979903623755286526375733763526969344354400473067198868901968147428767790866979688522501636949856730217523132529265375896415171479559538784278499866456302878831962099830494519874396369070682762657485810439112232618794059941554063270131989895703761105323606298674803779153767511583043208498720920280929752649812569163425000522908872646925284666104665392171482080130502298052637836426959733707053922789153510568883938113249757071331029504430346715989448786847116438328050692507766274500122003526203709466023414648998390252588830148678162196775194583167718762757200505439794412459900771152051546199305098386982542846407255540927403132571632640792934183342147090412542533523248021932277075355546795871638358750181593387174236061551171013123525633485820365146141870049205704372!
 0182617331947157008675785393360786227395581857975872587441025420771054
75361294047460100094095444959662881486915903899071865980563617137692227290764197755177720104276496949611056220592502420217704269622154958726453989227697660310524980855759471631075870133208861463266412591148633881220284440694169488261529577625325019870359870674380469821942056381255833436421949232275937221289056420943082352544084110864545369404969271494003319782861318186188811118408257865928757426384450059944229568586460481033015388911499486935436030221810943466764000022362550573631294626296096198760564259963946138692330837196265954739234624134597795748524647837980795693198650815977675350553918991151335252298736112779182748542008689539658359421963331502869561192012298889887006079992795411188269023078913107603617634779489432032102773359416908650071932804017163840644987871753756781185321328408216571107549528294974936214608215583205687232185574065161096274874375098092230211609982633033915469494644491004515280925089745074896760324090768983652940657920198315265410658136823791984090!
 6457124689484702093577611931399802468134052003947819498662026240089021501661638135383815150377350229660746279529103840686855690701575166241929872444827194293310048548244545807188976330032325258215812803274679620028147624318286221710543528983482082734516801861317195933247110746622285087106661177034653528395776259977446721857158161264111432717943478859908928084866949141390977167369002777585026866465405659503948678411107901161040085727445629384254941675946054871172359464291058509099502149587931121961359083158826206823321561530868337308381732793281969838750870834838804638847844188400318471269745437093732983624028751979208023218787448828728437273780178270080587824107493575148899789117397461293203510814327032514090304874622629423443275712600866425083331876886507564292716055252895449215376517514921963671810494353178583834538652556566406572513635750643532365089367904317025978781771903148679638408288102094614900797151377170990619549696400708676671023300486726314755105372317571143223!
 1741141168062286420638890621019235522354671166213749969326932173704310
59872250394565749246169782609702533594750209138366737728944386964000281103440260847128990007468077648440887113413525033678773167977093727786821661178653442317322646378476978751443320953400016506921305464768909850502030150448808342618452087305309731894929164253229336124315143065782640702838984098416029503092418971209716016492656134134334222988279099217860426798124572853458013382609958771781131021673402565627440072968340661984806766158050216918337236803990279316064204368120799003162644491461902194582296909921227885539487835383056468648816555622943156731282743908264506116289428035016613366978240517701552196265227254558507386405852998303791803504328767038092521679075712040612375963276856748450791511473134400018325703449209097124358094479004624943134550289006806487042935340374360326258205357901183956490893543451013429696175452495739606214902887289327925206965353863964432253883275224996059869747598823299162635459733244451637553343774929289905811757863555556269374269109471170021654!
 1171821975051983178713710605106379555858890556885288798908475091576463907469361988150781468526213325247383765119299015610918977792200870579339646382749068069876916819749236562422608715417610043060890437797667851966189140414492527048088197149880154205778700652159400928977760133075684796699295543365613984773806039436889588764605498387147896848280538470173087111776115966350503997934386933911978988710915654170913308260764740630571141109883938809548143782847452883836807941888434266622207043872288741394780101772139228191199236540551639589347426395382482960903690028835932774585506080131798840716244656399794827578365019551422155133928197822698427863839167971509126241054872570092407004548848569295044811073808799654748156891393538094347455697212891982717702076661360248958146811913361412125878389557735719498631721084439890142394849665925173138817160266326193106536653504147307080441493916936326237376777709585031325599009576273195730864804246770121232702053374266705314244820816813030639!
 7378736642483672539837487690980602182785786216512738563513290148903509
883
27061725893257536399397905572917516009761545904477169226580631511102803843601737474215247608515209901615858231257159073342173657626714239047827958728150509563309280266845893764964977023297364131906098274063353108979246424213458374090116939196425045912881340349881063540088759682005440836438651661788055760895689672753153808194207733259791727843762566118431989102500749182908647514979400316070384554946538594602745244746681231468794344161099333890899263841184742525704457251745932573898956518571657596148126602031079762825416559050604247911401695790033835657486925280074302562341949828646791447632277400552946090394017753633565547193100017543004750471914489984104001586794617924161001645471655133707407395026044276953855383439755054887109978520540117516974758134492607943368954378322117245068734423198987884412854206474280973562580706698310697993526069339213568588139121480735472846322778490808700246777630360555123238665629517885371967303463470122293958160679250915321748903084088651606111!
 9011498443412350124646928028805996134283511884715449771278473361766285062169778717743824362565711779450064477718370221999106695021656757644044997940765037999954845002710665987813603802314126836905783190460792765297277694043613023051787080546511542469395265127101052927070306673024447125973939950514628404767431363739978259184541176413327906460636584152927019030276017339474866960348694976541752429306040727005059039503148522921392575594845078867977925253931765156416197168443524369794447355964260633391055126826061595726217036698506473281266724521989060549880280782881429796336696744124805982192146339565745722102298677599746738126069367069134081559412016115960190237753525556300606247983261249881288192937343476862689219239777833910733106588256813777172328315329082525092733047850724977139448333892552081175608452966590553940965568541706001179857293813998258319293679100391844099286575605993598910002969864460974714718470101531283762631146774209145574041815908800064943237855839308530828!
 3054760767995243573916312218860575496738322431956506554608528812019023
63644712703748634421727257879503428486312944916318475347531435041392096108796057730987201352484075057637199253650470908582513936863463863368042891767107602111159828875539940120076013947033661793715396306139863655492213741597905119083588290097656647300733879314678913181465109316761575821351424860442292445304113160652700974330088499034675405518640677342603583409608605533747362760935658853109760994238347382222087292464497684560579562516765574088410321731345627735856052358236389532038534024842273371639123973215995440828421666636023296545694703577184873442034227706653837387506169212768015766181095420097708363604361110592409117889540338021426523948929686439808926114635414571535194342850721353453018315875628275733898268898523557799295727645229391567477566676051087887648453493636068278050564622813598885879259940946446041705204470046315137975431737187756039815962647501410906658866162180038266989961965580587208639721176995219466789857011798332440601811575658074284182910615193917630059!
 1943144346051540477105700543390001824531177337189558576036071828605063564799790041397618089553636696031621931132502238517916720551806592635180362512145759262383693482226658955769946604919381124866090997981285718234940066155521961122072030922776462009993152442735894887105766238946938894464950939603304543408421024624010487233287500817491798755438793873814398942380117627008371960530943839400637561164585609431295175977139353960743227924892212670458081833137641658182695621058728924477400359470092686626596514220506300785920024882918608397437323538490839643261470005324235406470420894992102504047267810590836440074663800208701266642094571817029467522785400745085523777208905816839184465928294170182882330149715542352359117748186285929676050482038643431087795628929254056389466219482687110428281638939757117577869154301650586029652174595819888786804081103284327398671986213062055598552660364050462821523061545944744899088390819997387474529698107762014871340001225355222466954093152131153379!
 1579802697955571050850747387475075806876537644578252443263804614304288
92359348529610582693821034980004052484070844035611678171705128133788057056434506161193304244407982603779511985486945591520519600930412710072778493015550388953603382619293437970818743209499141595933963681106275572952780042548630600545238391510689989135788200194117865356821491185282078521301255185184937115034221595422445119002073935396274002081104655302079328672547405436527175958935007163360763216147258154076420530200453401835723382926619153083540951202263291650544261236191970516138393573266937601569144299449437448568097756963031295887191611292946818849363386473927476012269641588489009657170861605981472044674286642087653347998582220906198021732116142304194777549907387385679411898246609130916917722742072333676350326783405863019301932429963972044451792881228544782119535308989101253429755247276357302262813820918074397486714535907786335301608215599113141442050914472935350222308171936635093468658586563148555758624478186201087118897606529698992693281787055764351433820601410773292610!
 6343152533718224338526352021773544071528189813769875515757454693972715048846979361950047772097056179391382898984532742622728864710888327017372325881824465843624958059256033810521560620615571329915608489206434030339526226345145428367869828807425142256745180618414956468611163540497189768215422772247947403357152743681940989205011365340012384671429655186734415374161504256325671343024765512521921803578016924032669954174608759240920700466934039651017813485783569444076047023254075555776472845075182689041829396611331016013111907739863246277821902365066037404160672496249013743321724645409741299557052914243820807609836482346597388669134991978401310801558134397919485283043673901248208244481412809544377389832005986490915950532285791457688496257866588599917986752055455809900455646117875524937012455321717019428288461740273664997847550829422802023290122163010230977215156944642790980219082668986883426307160920791408519769523555348865774342527753119724743087304361951139611908003025587838764!
 4206085044730631299277888942729189727169890575925244679660189707482960
94919064876469370275077386643239191904225429023531892337729316673608699622803255718530891928440380507103006477684786324319100022392978525537237556621364474009676053943983823576460699246526008909062410590421545392790441152958034533450025624410100635953003959886446616959562635187806068851372346270799732723313469397145628554261546765063246567662027924520858134771760852169134094652030767339184114750414016892412131982688156866456148538028753933116023229255561894104299533564009578649534093511526645402441877594931693056044868642086275720117231952640502309977456764783848897346431721598062678767183800524769688408498918508614900343240347674268624595239589035858213500645099817824463608731775437885967767291952611121385919472545140030118050343787527766440276261894101757687268042817662386068047788524288743025914524707395054652513533945959878961977891104189029294381856720507096460626354173294464957661265195349570186001541262396228641389779673332907056737696215649818450684226369036784955597!
 0026079867996261019039331263768556968767029295371162528005543100786408728939225714512481135778627664902425161990277471090335933309304948380597856628844787441469841499067123764789582263294904679812089984857163571087831191848630254501620929805829208334813638405421720056121989353669371336733392464416125223196943471206417375491216357008573694397305979709719726666642267431117762176403068681310351899112271339724036887000996862922546465006385288620393800504778276912835603372548255793912985251506829969107754257647488325341412132800626717094009098223529657957997803018282428490221470748111124018607613415150387569830918652780658896682362523937845272634530420418802508442363190383318384550522367992357752929106925043261446950109861088899914658551881873582528164302520939285258077969737620845637482114433988162710031703151334402309526351929588680690821355853680161000213740851154484912685841268695899174149133820578492800698255195740201818105641297250836070356851055331787840829000041552511865!
 7794539633175385320921497205266078312602819611648580986845875251299974
040
92797683176639914655386108937587952214971731728131517932904431121815871023518740757222100123768721944747209349312324107065080618562372526732540733324875754482967573450019321902199119960797989373383673242576103938985349278777473980508080015544764061053522202325409443567718794565430406735896491017610775948364540823486130254718476485189575836674399791508512858020607820554462991723202028222914886959399729974297471155371858924238493855858595407438104882624648788053304271463011941589896328792678327322456103852197011130466587100500083285177311776489735230926661234588873102883515626446023671996644554727608310118788389151149340939344750073025855814756190881398752357812331342279866503522725367171230756861045004548970360079569827626392344107146584895780241408158405229536937499710665594894459246286619963556350652623405339439142111271810691052290024657423604130093691889255865784668461215679554256605416005071276641766056874274200329577160643448606201239821698271723197826816628249938714995!
 4491373020518436690767235774000539326626227603236597517189259018011042903842741855078948874388327030632832799630072006980122443651163940869222207453202446241211558043545420642151215850568961573564143130688834431852808539759277344336553841883403035178229462537020157821573732655231857635540989540332363823192198921711774494694036782961859208034038675758341115188241774391450773663840718804893582568685420116450313576333555094403192367203486510105610498727264721319865434354504091318595131451812764373104389725070049819870521762724940652146199592321423144397765467083517147493679861865527917158240806510637995001842959387991583501715807598837849622573985121298103263793762183224565942366853767991131401080431397323354490908249104991433258432988210339846981417157560108297065830652113470768036806953229719905999044512090872757762253510409023928887794246304832803191327104954785991801969678353214644411892606315266181674431935508170818754770508026540252941092182648582138575266881555841131985!
 6002213515888721036569608751506318753300294211868222189377554602722729
12905042922597877106678738400006167721546384412923711935218284998243509208918016855727981564218581911974909857305703326676464607287574305653726027689823732597450844796495456480307715981539558277791393736017174229960273531027687194494449179397851446315973144353518504914139415573293820485421235081739125497498193087143966151329420459193801062314217741991840601803479498876910515579055548069538785400664533759818628464199052204528033062636956264909108276271159038569950512465299960628554438383303276385998007929228466595035512112452840875162290602620118577753137479493620554964010730013488531507354873539056029089335264007132747326219603117734339436733857591245081493357369116645412817881714540230547506671365182582848980995121391939956332413365567770980030819102720409971486874181346670060940510214626902804491596465453301077546954130887141653125448130611924078211886900560277818242350226961893443525476335735364856193632544177566139817039306328721669057222597452091929172621998444096461582!
 6945638023950283712168644656178523556516412771282691868861557271620147493405227694659571219831494338162211400693630743044417328478610177774383797703723179525543410722344551255558999864618387676490397246116795901810003509892864120419516355110876320426761297982652942588295114127584126273279079880755975185157684126474220947972184330935297266521001566251455299474512763155091763673025946213293019040283795424632325855030109670692272022707486341900543830265068121414213505715417505750863990767394633514620908288893493837643939925690060406731142209331219593620298297235116325938677224147791162957278075239505625158160313335938231150051862689053065836812998810866326327198061127154885879809348791291370749823057592909186293919501472119758606727009254771802575033773079939713453953264619526999659638565491759045833358579910201271320458390320085387888163363768518208372788513117522776960978796214237216254521459128183179821604411131167140691482717098101545778193920231156387195080502467972579249!
 7605772625913328559726371211201905720771409148645074094926718035815157
57151405039761096384675556929897038354731410022380258346876735012977541327953206097115450648421218593649099791776687477448188287063231551586503289816422828823274686610659273219790716238464215348985247621678905026099804526648392954235728734397768049577409144953839157556548545905897649519851380100795801078375994577529919670054760225255203445398871253878017196071816407812484784725791240782454436168234523957068951427226975043187363326301110305342333582160933319121880660826834142891041517324721605335584999322454873077882290525232423486153152097693846104258284971496347534183756200301491570327968530186863157248840152663983568956363465743532178349319982554211730846774529708583950761645822963032442432823773745051702856069806788952176819815671078163340526675953942492628075696832610749532339053622309080708145591983735537774874202903901814293731152933464446815121294509759653430628421531944572711861490001765055817709530246887526325011970520947615941676872778447200019278913725184162285778!
 3792284439084301181121496366424659033634194540657183544771912446621259392656620306888520055599121235363718226922531781458792593750441448933981608657900876165024635197045828895481793756681046474614105142498870252139936870509372305447734112641354892806841059107716677821238332810262185587751312721179344448201440425745083063944738363793906283008973306241380614589414227694747931665717623182472168350678076487573420491557628217583972975134478990696589532548940335615613167403276472469212505759116251529654568544633498114317670257295661844775487469378464233737238981920662048511894378868224807279352022501796545343757274163910791972952950812942922205347717304184477915673991738418311710362524395716152714669005814700002633010452643547865903290733205468338872078735444762647925297690170912007874183736735087713376977683496344252419949951388315074877537433849458259765560996555954318040920178497184685497370696212088524377013853757681416632722412634423982152941645378000492507262765150789085071!
 2659970367087266927643083772296859851691223050374627443108529343052730
78865283977335246017463527703205938179125396915621063637625882937571373840754406468964783100704580613446731271591194608435935825987782835266531151065041623295329047772174083559349723758552138048305090009646676088301540612824308740645594431853413755220166305812111033453120745086824339432159043594430312431227471385842030390106070940315235556172767994160020393975099897629335325855575624808996691829864222677502360193257974726742578211119734709402357457222271212526852384295874273501563660093188045493338989741571490544182559738080871565281430102670460284316819230392535297795765862414392701549740879273131051636119137577008929564823323648298263024607975875767745377160102490804624301856524161756655600160859121534556267602192689982855377872583145144082654583484409478463178777374794653580169960779405568701192328608041130904629350871827125934668712766694873899824598527786499569165464029458935064964335809824765965165142090986755203808309203230487342703468288751604071546653834619611223013!
 7594515792526967436425319273900360386082364507626988274976187235754767628899507521148048525279508450339585708381304769378813211236742813194879502280663201700224603319896719706491637411758548518784840120548446725888514015627250198217190669608126277854859648183696214107217142149863619187747545096503089570994709343378569816744658282679119406119560378453978558392407612763441057667510243075598145527861678159496570625597550743065210853015979080733437360794328667578905334836695554868039134337201564988342208933999716414797469386969054800891930671380571715058573071488156499207140867582596028760564597824237702424698053280566327870419267684671162668794634869504645074202193739452592626686135529406247813612062026364981999994984051438682852589563422643287076632993048917234007254717641886853513723326678779217383475414800228033929973579361524127558295692768372312347989894462743304545667900620324205163962825884430854383072014956721064605332385372031432421126074244858450945804940818209276391!
 4000854042202355626021856434899414543995041098059181794888262805206644
108
63190016885681551692294862030107388971810077092905904807490924271410189335428184299959881696609938369616443815288772140852680887574882932587358099056707558170179491619061140019085537448827262009366856044755965574764856740081773817033073803054769736097865438593821872205839023444435088674998665060406458743460053318274362961778625180818931443632512051070946908135864405192295129324500788333987884293393424351263433652043858129128343452973086529097833006712617981303167943855357262969987403595704584522308563900989131794759487521263970783759448611394519602867512105616389760088800927461158608002078033415914517970730368351969777660763737853330120241201120469886092093390853657732223924124490515327809509558664594776344822699860748132973026309750288121035177231244650953496536930900186377640940943498373132513218620802148099226855029484546618147155574447096695301776904342720318927706047177845279391604722815343798035396798614243709566832214914654380145938292773933960327540480095522318166673!
 8035718393275707714204672383862461780397629237713120958078936384144792980258806552212926209362393063731349664018661951081158347117331202580586672763999276357907806381881306915636627412543125958993611964762610140556350339952314032311381965623632719896183725484533370206256346422395276694356837676136871196292181875457608161705303159072882870071231366630872275491866139577373054606599743781098764980241401124214277366808275139095931340415582626678951084677611866595766016599817808941498575497628438785610026379654317831363402513581416115190209649913354873313111502270068193013592959597164019719605362503355847998096348871803911161281359596856547886832585643789617315976200241962155289629790481982219946226948713746244472909345647002853769495885959160678928249105441251599630078136836749020937491573289627002865682934443134234735123929825916673950342599586897069726733258273590312128874666045146148785034614282776599160809039865257571726308183349444182019353338507129234577437557934406217871!
 1330063106003324053991693682603746176638565758877580201229366353270267
10068126182517291460820254189288593524449107013820621155382779356529691457650204864328286555793470720963480737269214118689546732276775133569019015372366903686538916129168888787640752549349424973342718117889275993159671935475898809792452526236365903632007085444078454479734829180208204492667063442043755532505052752283377888704080403353192340768563010934777212563908864041310107381785333831603813528082811904083256440184205374679299262203769871801806112262449090924264198582086175117711378905160914038157500336642415609521632819712233502316742260056794128140621721964184270578432895980288233505982820819666624903585778994033315227481777695284368163008853176969478369058067106482808359804669884109813515865490693331952239436328792399053481098783027450017206543369906611778455436468772363184446476806914282800455107468664539280539940910875493916609573161971503316696830992946634914279878084225722069714887558063748030886299511847318712477729191007022758889348693945628951580296537215040960310!
 7761289831263589964893410247036036645058687287589051406841238124247386385427908282733827973326885504935874303160274749063129572349742611221517417153133618622410913869500688835898962349276317316478340077460886655598733382113829928776911495492184192087771606068472874673681886167507221017261103830671787856694812948785048943063086169948798703160515884108282351274153538513365895332948629494495061868514779105804696039069372662670386512905201137810858616188886947957607413585534585151768051973334433495230120395770739623771316030242887200537320998253008977618973129817881944671731160647231476248457551928732782825127182446807824215216469567819294098238926284943760248852279003620219386696482215628093605373178040863727268426696421929946819214908701707533361094791381804063287387593848269535583077395761447997270003472880182785281389503217986345216111066608839314053226944905455527867894417579202440021450780192099804461382547805858048442416404775031536054906591430078158372430123137511562284!
 0158386442708907182848167575271238467824595343344496220100960710513706
08461801187543120725491334994247617115633321408934609156561550600317384218701570226103101916603887064661438897736318780940711527528174689576401581047016965247557740891644568677717158500583269943401677202156767724068128366565264122982439465133197359199709403275938502669557470231813203243716420586141033606524536939160050644953060161267822648942437397166717661231048975031885732165554988342121802846912529086101485527815277625623750456375769497734336846015607727035509629049392487088406281067943622418704747008368842671022558302403599841645951122485272633632645114017395248086194635840783753556885622317115520947223065437092606797351000565549381224575483728545711797393615756167641692895805257297522338558611388322171107362265816218842443178857488798109026653793426664216990914056536432249301334867988154886628665052346997235574738424830590423677143278792316422403877764330192600192284778313837632536121025336935812624086866699738275977365682227907215832478888642369346396164363308730139814!
 2114303060087306661648036789840913359262934023043249749268878316436026810113095707161419128306865773235326396536773903176613613159655535849993986005651559219367599777179330197446881483711032065036931928945214026509154651843099365534933371834252984336799159394174662239003895276738133306177476295749438687169784537672194935065908757119177208754771071899379608947745126547575018711948707387367858902006173733210756933022163206284320656711920969505857611739616323262177089454262146098584102378132158177276022227381334954104810030732751077999489919779638835307344434575329759142637684054422647842160631227696469671564739990437159033239065607266441164386054048388471619121090087010191307260710441141432419767968285478855247794764818029597360494397004795960402927462992035720997619501403483153809477146010563334469988208221205872815107291829712119178764248803546723169165418522567292344291871281632325969654135485895771332083399112887759172261152733790103413620856145779923987783250835507301998!
 1845902595835598926055329967377049172245493532968330000223018151722657
57875240588322490858212800897479093261007625787704286560069961762121768454789964407050662417102133274867962374302291553582007801411653480656474882306150033920689837947662550365498228053296628621179306284301704924023019857199789488368971830438051821744191476604297524372516834354112170386313794114220952958857980601529387527537990309388716835720957607152219002793792927863036372687658226812419933848081660216037221547101430073775377926990695871212892880190520316012858618254944133538207848834653116326504076424283908701210151942319616522684220037112304643006734420647477180213530701240988603533991526679238711017062218658835737812109351797756044256346949997872511254408545222748109148743072598696020402759411789425812818821599523596589791811440776533543217575952555361581280011638467203193465072968079907939637149617743121194020212975731251652537680173591015573381537720019524445436200718484756634154074423286210609976132434875488474345396659813387174660930205350702719529839432714253711557!
 6660002578442303107342955153394506048622276496668762407932435319299263925373107689213535257232108088981933916866827894828117047262450194840970097576092098372409007471797334078814182519584259809624174761013825264395513525931188504563626418830033853965243599741693132289471987830842760040136807470390409723847394583489618653979059411859931035616843686921948538205578039577388136067954990008512325944252972448666676683464140218991594456530942344065066785194841776677947047204195882204329538032631053749488312218039127967844610013972675389219511911783658766252808369005324900459741094706877291232821430463533728351995364827432583311914445901780960778288358373011185754365995898272453192531058811502630754257149394302445393187017992360816661130542625399583389794297160207033876781503301028012009599725222228080142357109476035192554443492998676781789104555906301595380976187592035893734197896235893112598390259831026719330418921510968915622506965911982832345550305908173073519550372166587028805!
 3992138576037035377105178021280129566841984140362872725623214428754302
210
90947272107347413497551419073704331827662617727599688882602722524713368335345281669277959132886138176634985772893690096574956228710302436259077241221909430087175569262575806570991201665962243608024287002454736203639484125595488172727247365346778364720191830399871762703751572464992228946793232269361917764161461879561395669956778306829031658969943076733350823499079062410020250613405734430069574547468217569044165154063658468046369262127421107539904218871612761778701425886482577522388918459952337629237791558574454947736129552595222657863646211837759847370034797140820699414558071908021359073226923310083175951065901912129479540860364075735875020589020870457967000705526250581142066390745921527330940682364944159089100922029668052332526619891131184201629163107689408472356436680818216865721968826835840278550078280404345371018365109695178233574303050485265373807353107418591770561039739506264035544227515610110726177937063472380499066692216197119425912044508464174638358993823994651739550!
 9000859479990136026674261494290066467115067175422177038774507673563742154782905911012619157555870238957001405117822646989944917908301795475876760168094100135837613578591356924455647764464178667115391951357696104864922490083446715486383054477914330097680486878348184672733758436892724310447406807685278625585165092088263813233623148733336714764520450876627614950389949504809560460989604329123358348859990294526400284994280878624039811814884767301216754161106629995553668193123287425702063738352020086863691311733469731741219153633246745325630871347302792174956227014687325867891734558379964351358800959350877556356248810493852999007675135513527792412429277488565888566513247302514710210575352516511814850902750476845518252096331899068527614435138213662152368890578786699432288816028377482035506016029894009119713850179871683633744139275973644017007014763706655703504338121113576415018451821413619823495159601064752712575935185304332875537783057509567425442684712219618709178560783936144511!
 3833356491032564057338986671781239722375193164306170138595394743678433
92670986712452211189690840236327411496601243483098929941738030588417166613073040067588380432111555379440605497721705942821514886165672771240903387727745629097110134885184374118695655449745736845218066982911045058004299887953899027804383596282409421860556287788428802127553884803728640019441614257499904272009595204654170598104989967504511936471172772220436102614079750809686975176600237187748348016120310234680567112644766123747627852190241202569943534716226660893675219833111813511146503854895025120655772636145473604426859498074396932331297127377157347099713952291182653485155587137336629120242714302503763269501350911612952993785864681307226486008270881333538193703682598867893321238327053297625857382790097826460545598555131836688844628265133798491667839409761353766251798258249663458771950124384040359140849209733754642474488176184070023569580177410177696925077814893386672557898564589851056891960924398841569280696983352240225634570497312245269354193837004843183357196516626721575524!
 1934019330990183193091965829209696562476676836596470195957547393455143374137087615173236772042273856742791706982045499530959188724349395240944416789988463198455048523936629720797774528143994182567894577957125524268260899408633173715388962628896294021121088844273765686245276121303710173007851357154045330415079594477761435974378037424366469732471384104921243141389035790924160364063140381498314819052517209371039640268089948325722979545640427017577229041732347960736187878899133183058430693948259613187138164234672187308451338772190869751049428437693250249816566738162606159417682525099937416728839517440669325496534031014522253161890092353764863784828813442098700480962271712264074895719390029185733074601043607291909457679946149292904279816877294264877299528584346477753869069501489841339245403941446802636254021186143170312511175776428299146445334089209769616990983726523617687456058947049681701369749095230720826828878907301900182534258053434217059287139317379931424108526473909482845!
 9641809361413847583113613057610846236683723769591349261582451622155213
48792441450417568480641206365201703863301295327776990231186480200675569056822950163549319923059142463962170253297475731140942201801993680350264956369558664259067626856873721103391567938398957655651931778830002416135395624377778408017488193730950206999008908993280883974303677365955248913001566332940779071396154645340887915103006513219344866732482759079468078798194250195826223203951312520141099605312606965554042486705499867869230217469890095478507256729787947698888310934874644264007181831603316555115342761556224054744733780492462149521332585276988473362691826491743389878247892784689188280546699823036899397834137475870258057163494135684339293960681920617733317917382085624364336353598634944968907810640196740744365836670715869245211829978938040771375012908586465789057714268335827689785547176871844277261205092664861020515356428406323684818072879407171279668200607275595559040402331787494473464547606281895415121391629184442976510669479693540168660100551960776873353965116149309375709!
 6855455938151378956903925101495326562814701199832699220006639287537471313523642158926512620407288771657835840521964605410543544364216656224456504299901025658692727914275293117208279393775132610605288123537345106837293989358087124386938593438917571337630072031976081660446468393772580690923729752348670291691042636926209019960520412102407764819031601408586355842760953708655816427399534934654631450404019952853725200495780525465625115410925243799132626271360909940290226206283675213230506518393405745011209934146491843332364656937172591448932415900624202061288573292613359680872650004562828455757459659212053034131011182750130696150983551563200431078460190656549380654252522916199181995960275232770224985573882489988270746593635576858256051806896428537685077201222034792099393617926820659014216561592530673794456894907085326356819683186177226824991147261573203580764629811624401331673789278868922903259334986179702199498192573961767307583441709855922217017182571277753449150820527843090461!
 9460835217402005838672849709411023266953921445461066215006410674740207
00918991195137646690448126725369153716229079138540393756007783515337416774794210038400230895185099454877903934612222086506016050035177626483161115332558770507354127924990985937347378708119425305512143697974991495186053592040383023571635272763087469321962219006426088618367610334600225547747781364101269190656968649501268837629690723396127628722304114181361006026404403003599698891994582739762411461374480405969706257676472376606554161857469052722923822827518679915698339074767114610302277660602006124687647772881909679161335401988140275799217416767879923160396356949285151363364721954061117176738737255572852294005436178517650230754469386930787349911035218253292972604455321079788771144989887091151123725060423875373484125708606406905205845212275453384800820530245045651766951857691320004281675805492481178051983264603244579282973012910531838563682120621553128866856495651261389226136706409395333457052698695969235035309422454386527867767302754040270224638448355323991475136344104405009233!
 0361271496081355490531539021002299595756583705381261965683144286057956696622154721695620870013727768536960840704833325132793112232507148630206951245395003735723346807094656483089209801534878705633491092366057554050864111521441481434630437273271045027768661953107858323334857840297160925215326092558932655600672124359464255065996771770388445396181632879614460817789272171836908880126778207430106422524634807454300476492885553409062185153654355474125476152769772667769772777058315801412185688011705028365275543214803488004442979998062157904564161957212784508928489806426497427090579129069217807298769477975112447305991406050629946894280931034216416629935614828130998870745292716048433630818404126469637925843094185442216359084576146078558562473814931427078266215185541603870206876980461747400808324343665382354555109449498431093494759944672673665352517662706772194183191977196378015702169933675083760057163454643671776723387588643405644871566964321041282595645349841388412890420682047007615!
 5969168430389993483667935425492103281133631847225923055543830582069416
756
29992013373175489122037230349072681068534454035993561823576312837767640631013125335212141994611869350833176587852047112364331226765129964171325217513553261867681942338790365468908001827135283584888444111761234101179918709236507184857856221021104009776994453121795022479578069506532965940383987369907240797679040826794007618729547835963492793904576973661643405359792219285870574957481696694062334272619733518136626063735982575552496509807260123668283605928341855848026958413772558970883789942910549800331113884603401939166122186696058491571485733568286149500019097591125218800396419762163559375743718011480559442298730418196808085647265713547612831629200449880315402105530597076666362749328308916880932359290081787411985738317192616728834918402429721290434965526942726402559641463525914348400675867690350382320572934132981593533044446496829441367323442158380761694831219333119819061096142952201536170298575105594326461468505452684975764807808009221335811378197749271768545075538328768874474!
 5915937311624706010912446098294248412875202244625944776387494919978404468292573609685345498432665368628444893657041118177938064416165312236002149187687694673984075171763075168498563592014868929431059402024579696229245666448819675762943495353263821716133957577907663707645695702597388004384158058943361371065518599876007549241872117148892952217377211460811543449826654798725800566747240511220073834592715757277152185899469481179406444663994323700442911407472181802248258377360173466853007449855647154200361235933973129144585915228874087195087086322188372882628228846318437172619033057771476515641438223067918473860391476831081413582757558536435977216500282778037134228696887873497950960311088991961433866640684506974207877002805093672033872326296378560386532164323488155575570184690890746478791224363755566686780676105449550172607911429308312857612544819444494732448190937953690082063846316782250648095318104065702543276043857035059228189198780658654121842992172737209551032422510797180778!
 3304260908679427342895573555925272380551144043800123904168771644518022
64916816419274011064516224311017000566911217331894234005479596846698042980173625704067332821299621536848814041021944634246462207455756439604529853130714090846084996537678037932018991408658146621753193376659701143306086250098295669176388460567629729314649114937046244693519840395344491351411936679333019366176636525551491749823079870722808608596261126605042892969665356525166888855721122768027727437089173896397722575648905334010388559311256799915165890250164869614272070059160561661597024519890518329692789355503039346812197615821839804839605625230914626384473862960398489243861872985077759287927220685548072104978176532862101874767668972488411395603494803767270363169210073508340738652616845074824964485974281349364803724261167042668708319250409976153190768557703274217850100064419841242073964001396036015838105659284136845741191027364202741637234882145241013477165296031284086584197879511165115298278146203791398550063999603265912485253084936903131301007999771913622308660110999291428712!
 4938854161203802041134018888721969347790449752745428807280350930582875442075513481666092787935356652125562013998824962847872621443236285367650259145046837763528258765213915648097214192967554938437558260025316853635673137926247587804944594418342917275698837622626184636545274349766241113845130548144983631178978448973207671950878415861887969295581973325069995140260151167552975057543781024223895792578656212843273120220071673057406928686936393018676595825132649914595026091706934751940897535746401683081179884645247361895605647942635807056256328118926966302647953595109712765913623318086692153578860781275991053717140220450618607537486630635059148391646765672320571451688617079098469593223672494673758309960704258922048155079913275208858378111768521426933478692189524062265792104362034885292626798401395321645879115157905046057971083898337186403802441751134722647254701079479399695355466961972676325522991465493349966323418595145036098034409221220671256769872342794070885707047429317332918!
 8523896721971353924492426178641188637790962814486917869468177591717150
66911148002075943201206196963779510322708902956608556222545260261046073613136886900928172106819861855378098201847115416363032626569928342415502360097804641710852553761272890533504550613568414377585442967797701466029438768722511536380119175815402812081825560648541078793359892106442724489861896162941341800129513068363860929410008313667337215300835269623573717533073865333820484219030818644918409372394403340524490955455801640646076158101030176748847501766190869294609876920169120218168829104087070956095147041692114702741339005225334083481287035303102391969997859741390859360543359969707560446013424245368249609877258131102473279856207212657249900346829388687230489556225320446360263985422525841646432427161141981780248259556354490721922658386366266375083594431487763515614571074552801615967704844271419443518327569840755267792641126176525061596523545718795667317091331935876162825592078308018520689015150471334038610031005591481785211038475454293338918844412051794396997019411269511952656!
 4919594189975418393234647424290702718875223534393673633663200307232747037407123982562024662651974090199762452056198557625760008708173083288344381831070054514493545885422678578551915372292379555494333410174420169600090696415612732297770221217951868376359082255128816470021992348864043959153018464004714321186360622527011541122283802778538911098490201342741014121559769965438877197485376431158229838533123071751132961904559007938064276695819014842627991221792947987348901868471676503827328552059082984529806259250352128451925927986593506132961946796252373972565584157853744567558998032405492186962888490332560851455344391660226257775512916200772796852629387937530454181080729285891989715381797343496187232927614747850192611450413274873242970583408471112333746274617274626582415324271059322506255302314738759251724787322881491455915605036334575424233779160374952502493022351481961381162563911415610326844958072508273431765944054098269765269344579863479709743124498271933113863873159636361218!
 6234972614095560799206283169994200720548115253533939460768500199098865
53861433495781650089961649079678142901148387645682174914075623767618453775144031475411206760160726460556859257799322070337333398916369504346690694828436629980037414527627716547623825546170883189810868806847853705536480469350958818025360529740793538676511195079373282083146268960071075175520614433784114549950136432446328193346389050936545714506900864483440180428363390513578157273973334537284263372174065775771079830517555721036795976901889958494130195999573017901240193908681356585539661941371794487632079868800371607303220547423572266896801882123424391885984168972277652194032493227314793669234004848976059037958094696041754279613782553781223947646147832926976545162290281701100437846038756544151739433960048915318817576650500951697402415644771293656614253949368884230517400129920556854289853897942669956777027089146513736892206104415481662156804219838476730871787590279209175900695273456682026513373111518000181434120962601658629821076663523361774007837783423709152644063054071807843358!
 0610729611055500204151316963730468492133568372654003075098290893646120478911147530370498939528334578240828173864413227100029683119402033234564208264732762338302946393789983758365545599193408662350909679611340048670271231765266637107787251118603540375544874186935197336566217723592293967764632515620234875701137957120962377234313702120310049651521119760131764194082034373485128526029133349151250831198028501778557107253731491392157091051309650598859999315608636554774035518981667335358800482146650997414337611827777233519107412175728415925808725913150746060256349037772633739144613770380213183474473011130326702969173350477016321066162278300272692833655840117914194478087482533607144032962522857750098085996090409363126356213281620714534061042241120830100085872642521122624801426475194261843258533867538740547434910727100497542811594660171361225904401589916002298278017960351940800465135347526987776095278399843680869089891978396935321799801391354425527179102253970108106321430485113782914!
 9851138196914304349750018998068164441212327332830719282436240673319655
469
26778511931525e0
+ floating point operation: 1.60563e+08 op.


Index: llvm/test/Programs/MultiSource/Benchmarks/FreeBench/pcompress2/unarithmetic.c
diff -c /dev/null llvm/test/Programs/MultiSource/Benchmarks/FreeBench/pcompress2/unarithmetic.c:1.1
*** /dev/null	Sat Oct 11 16:18:59 2003
--- llvm/test/Programs/MultiSource/Benchmarks/FreeBench/pcompress2/unarithmetic.c	Sat Oct 11 16:18:48 2003
***************
*** 0 ****
--- 1,229 ----
+ 
+ /* This program contains the source code from the 1987 CACM
+    article by Witten, Neal, and Cleary. */
+ 
+ #include <stdio.h>
+ #include <stdlib.h>
+ 
+ /* The indata and outdata buffer, defined and allocated in "uncompress.c" */
+ extern unsigned char *in;
+ extern unsigned char *deari;
+ 
+ /* Positions in buffers */
+ unsigned int in_pos;
+ unsigned int deari_pos;
+ 
+ unsigned int in_size;
+ 
+ /* THE SET OF SYMBOLS THAT MAY BE ENCODED. */
+ 
+ #define No_of_chars 256                 /* Number of character symbols      */
+ #define EOF_symbol (No_of_chars+1)      /* Index of EOF symbol              */
+ 
+ #define No_of_symbols (No_of_chars+1)   /* Total number of symbols          */
+ 
+ 
+ /* TRANSLATION TABLES BETWEEN CHARACTERS AND SYMBOL INDEXES. */
+ 
+ int char_to_index[No_of_chars];         /* To index from character          */
+ unsigned char index_to_char[No_of_symbols+1]; /* To character from index    */
+ 
+ int freq[No_of_symbols+1];      /* Symbol frequencies                       */
+ int cum_freq[No_of_symbols+1];  /* Cumulative symbol frequencies            */
+ 
+ /* CUMULATIVE FREQUENCY TABLE. */
+ 
+ #define Max_frequency 16383             /* Maximum allowed frequency count  */
+ 
+ /* DECLARATIONS USED FOR ARITHMETIC ENCODING AND DECODING */
+ 
+ 
+ /* SIZE OF ARITHMETIC CODE VALUES. */
+ 
+ #define Code_value_bits 16              /* Number of bits in a code value   */
+ typedef long code_value;                /* Type of an arithmetic code value */
+ 
+ #define Top_value (((long)1<<Code_value_bits)-1)      /* Largest code value */
+ 
+ 
+ /* HALF AND QUARTER POINTS IN THE CODE VALUE RANGE. */
+ 
+ #define First_qtr (Top_value/4+1)       /* Point after first quarter        */
+ #define Half      (2*First_qtr)         /* Point after first half           */
+ #define Third_qtr (3*First_qtr)         /* Point after third quarter        */
+ 
+ 
+ /* BIT INPUT ROUTINES. */
+ 
+ /* THE BIT BUFFER. */
+ 
+ int buffer;                     /* Bits waiting to be input                 */
+ int bits_to_go;                 /* Number of bits still in buffer           */
+ int garbage_bits;               /* Number of bits past end-of-file          */
+ 
+ 
+ /* INITIALIZE BIT INPUT. */
+ 
+ static void start_inputing_bits( void )
+ {   bits_to_go = 0;                             /* Buffer starts out with   */
+     garbage_bits = 0;                           /* no bits in it.           */
+ }
+ 
+ 
+ /* INPUT A BIT. */
+ 
+ static int input_bit( void )
+ {
+   int t;
+   if (bits_to_go==0) {
+     if (in_pos<in_size)                      /* Read the next byte if no */
+       buffer = in[in_pos++];                 /* bits are left in buffer. */
+     else {
+       garbage_bits += 1;                      /* Return arbitrary bits*/
+       if (garbage_bits>Code_value_bits-2) {   /* after eof, but check */
+ 	fprintf(stderr,"Bad input file\n");   /* for too many such.   */
+ 	exit(-1);
+       }
+     }
+     bits_to_go = 8;
+   }
+   t = buffer&1;                               /* Return the next bit from */
+   buffer >>= 1;                               /* the bottom of the byte.  */
+   bits_to_go -= 1;
+   return t;
+ }
+ 
+ 
+ static void start_model( void );
+ static void start_decoding( void );
+ static int decode_symbol( int cum_freq[] );
+ static void update_model( int symbol );
+ 
+ unsigned int do_deari(unsigned int insize)
+ {
+   in_size = (unsigned int)insize;    
+   
+   in_pos = 0;
+   deari_pos = 0;
+ 
+   start_model();                              /* Set up other modules.    */
+   start_inputing_bits();
+   start_decoding();
+   for (;;) {                                  /* Loop through characters. */
+     int ch; int symbol;
+     symbol = decode_symbol(cum_freq);       /* Decode next symbol.      */
+     if (symbol==EOF_symbol) break;          /* Exit loop if EOF symbol. */
+     ch = index_to_char[symbol];             /* Translate to a character.*/
+     deari[deari_pos++]=(unsigned char)ch;   /* Write that character.    */
+     update_model(symbol);                   /* Update the model.        */
+   }
+   
+   return deari_pos;
+ }
+ 
+ /* ARITHMETIC DECODING ALGORITHM. */
+ 
+ /* CURRENT STATE OF THE DECODING. */
+ 
+ static code_value value;        /* Currently-seen code value                */
+ static code_value low, high;    /* Ends of current code region              */
+ 
+ /* START DECODING A STREAM OF SYMBOLS. */
+ 
+ static void start_decoding( void )
+ {   int i;
+     value = 0;                                  /* Input bits to fill the   */
+     for (i = 1; i<=Code_value_bits; i++) {      /* code value.              */
+         value = 2*value+input_bit();
+     }
+     low = 0;                                    /* Full code range.         */
+     high = Top_value;
+ }
+ 
+ 
+ /* DECODE THE NEXT SYMBOL. */
+ 
+ static int decode_symbol( int cum_freq[] )
+ {   long range;                 /* Size of current code region              */
+     int cum;                    /* Cumulative frequency calculated          */
+     int symbol;                 /* Symbol decoded                           */
+     range = (long)(high-low)+1;
+     cum = (int)                                 /* Find cum freq for value. */
+       ((((long)(value-low)+1)*cum_freq[0]-1)/range);
+     for (symbol = 1; cum_freq[symbol]>cum; symbol++) ; /* Then find symbol. */
+     high = low +                                /* Narrow the code region   */
+       (range*cum_freq[symbol-1])/cum_freq[0]-1; /* to that allotted to this */
+     low = low +                                 /* symbol.                  */
+       (range*cum_freq[symbol])/cum_freq[0];
+     for (;;) {                                  /* Loop to get rid of bits. */
+         if (high<Half) {
+             /* nothing */                       /* Expand low half.         */
+         }
+         else if (low>=Half) {                   /* Expand high half.        */
+             value -= Half;
+             low -= Half;                        /* Subtract offset to top.  */
+             high -= Half;
+         }
+         else if (low>=First_qtr                 /* Expand middle half.      */
+               && high<Third_qtr) {
+             value -= First_qtr;
+             low -= First_qtr;                   /* Subtract offset to middle*/
+             high -= First_qtr;
+         }
+         else break;                             /* Otherwise exit loop.     */
+         low = 2*low;
+         high = 2*high+1;                        /* Scale up code range.     */
+         value = 2*value+input_bit();            /* Move in next input bit.  */
+     }
+     return symbol;
+ }
+ 
+ /* THE ADAPTIVE SOURCE MODEL */
+ 
+ /* INITIALIZE THE MODEL. */
+ 
+ static void start_model( void )
+ {   int i;
+     for (i = 0; i<No_of_chars; i++) {           /* Set up tables that       */
+         char_to_index[i] = i+1;                 /* translate between symbol */
+         index_to_char[i+1] = (unsigned char) i; /* indexes and characters.  */
+     }
+     for (i = 0; i<=No_of_symbols; i++) {        /* Set up initial frequency */
+         freq[i] = 1;                            /* counts to be one for all */
+         cum_freq[i] = No_of_symbols-i;          /* symbols.                 */
+     }
+     freq[0] = 0;                                /* Freq[0] must not be the  */
+ }                                               /* same as freq[1].         */
+ 
+ 
+ /* UPDATE THE MODEL TO ACCOUNT FOR A NEW SYMBOL. */
+ 
+ static void update_model( int symbol )
+ {   int i;                      /* New index for symbol                     */
+     if (cum_freq[0]==Max_frequency) {           /* See if frequency counts  */
+         int cum;                                /* are at their maximum.    */
+         cum = 0;
+         for (i = No_of_symbols; i>=0; i--) {    /* If so, halve all the     */
+             freq[i] = (freq[i]+1)/2;            /* counts (keeping them     */
+             cum_freq[i] = cum;                  /* non-zero).               */
+             cum += freq[i];
+         }
+     }
+     for (i = symbol; freq[i]==freq[i-1]; i--) ; /* Find symbol's new index. */
+     if (i<symbol) {
+         int ch_i, ch_symbol;
+         ch_i = index_to_char[i];                /* Update the translation   */
+         ch_symbol = index_to_char[symbol];      /* tables if the symbol has */
+         index_to_char[i] = (unsigned char) ch_symbol; /* moved.             */
+         index_to_char[symbol] = (unsigned char) ch_i;
+         char_to_index[ch_i] = symbol;
+         char_to_index[ch_symbol] = i;
+     }
+     freq[i] += 1;                               /* Increment the frequency  */
+     while (i>0) {                               /* count for the symbol and */
+         i -= 1;                                 /* update the cumulative    */
+         cum_freq[i] += 1;                       /* frequencies.             */
+     }
+ }
+ 
+ 


Index: llvm/test/Programs/MultiSource/Benchmarks/FreeBench/pcompress2/uncompress.c
diff -c /dev/null llvm/test/Programs/MultiSource/Benchmarks/FreeBench/pcompress2/uncompress.c:1.1
*** /dev/null	Sat Oct 11 16:18:59 2003
--- llvm/test/Programs/MultiSource/Benchmarks/FreeBench/pcompress2/uncompress.c	Sat Oct 11 16:18:48 2003
***************
*** 0 ****
--- 1,153 ----
+ /********************************************************/
+ /* pCompress/pUnCompress                                */
+ /* A three stage file compressor, using Burrows Wheeler */
+ /* blocksorting, Run Length Encoding and Arithmetic     */
+ /* coding to achieve good compression.                  */
+ /* The fact that the compression is not that good in    */
+ /* reality is probably my fault.                        */
+ /* It makes a neat benchmark anyways.                   */
+ /* ---------------------------------------------------- */
+ /* This is a part of FreeBench v1 and is only intended  */
+ /* to be used as a benchmark. The use of this software  */
+ /* for anyting else (such as compression) is not        */
+ /* recomended, and certainly not supported. Use gzip or */
+ /* bzip instead, they are both faster and better.       */
+ /* Peter Rundberg, April 2001                           */
+ /********************************************************/
+ 
+ #define BENCHMARK
+ 
+ #include <stdio.h>
+ #include <string.h>
+ #include <sys/types.h>
+ #include <sys/stat.h>
+ #include <unistd.h>
+ #include <stdlib.h>
+ 
+ unsigned char *in; /* The infile */
+ unsigned char *deari;
+ unsigned char *derle;
+ unsigned char *debw;
+ unsigned int size;
+ unsigned int orgpos;
+ 
+ static void do_debwe();
+ static void do_derle(int insize);
+ unsigned int do_deari(unsigned int insize);  /* In "unarithmetic.c" */
+ 
+ void uncompress(int argc, char *argv[]) 
+ {
+   FILE *fpi;
+ #ifndef BENCHMARK
+   FILE *fpo;
+   char outname[100];
+ #endif
+   unsigned int insize, outsize;
+ 
+   fpi=fopen(argv[1],"r"); /* open the infile */
+   if (fpi==NULL) {
+     fprintf(stderr,"ERROR: Could not find infile.\n");
+     exit(1);
+   }
+   
+ #ifndef BENCHMARK
+   strcpy(outname,argv[1]); /* name the outfile */
+   strcat(outname,".uncompr"); /* add the suffix '.uncompr' */
+   fpo=fopen(outname,"w");
+   if (fpo==NULL) {
+     fprintf(stderr,"ERROR: Could not open outfile (do you have write permission here?)\n");
+     exit(1);
+   }
+ #endif
+ 
+   fread(&size,sizeof(unsigned int),1,fpi); /* Read size of original file */
+   fread(&orgpos,sizeof(unsigned int),1,fpi); /* Read the position of the original string */
+   
+   in=(unsigned char *)malloc(2*size*sizeof(unsigned char));
+   deari=(unsigned char *)malloc(2*size*sizeof(unsigned char));
+   derle=(unsigned char *)malloc(2*size*sizeof(unsigned char));
+   debw=(unsigned char *)malloc(2*size*sizeof(unsigned char));
+   if (!in || !deari || !derle || !debw) {
+     fprintf(stderr,"ERROR: Out of memory\n");
+     exit(1);
+   }
+ 
+   insize=fread(in, sizeof(unsigned char), 2*size, fpi);
+   fclose(fpi);
+ 
+   outsize=do_deari(insize);
+   free(in); /* We are done with 'in' now... */
+   do_derle(outsize);
+   free(deari); /* We are done with 'deari' now... */
+   do_debwe();
+   free(derle); /* We are done with 'derle' now... */
+ 
+ #ifdef BENCHMARK
+   fwrite(debw, sizeof(unsigned char), size, stdout);
+   free(debw); /* We are done with 'debw' now... */
+ #else
+   /* Write the results to file */
+   fwrite(debw, sizeof(unsigned char), size, fpo); 
+   free(debw); /* We are done with 'debw' now... */
+   fclose(fpo);
+ #endif
+     
+ }
+ 
+ static void do_derle(int rlesize)
+ {
+   unsigned int j,k;
+   unsigned int derlepos=0;
+   
+   /* Do the deRLE coding */
+   for (j=0;j<rlesize;) {
+     if (deari[j] & 0x80) { /* is bit 7 set? YES! */
+       for (k=0;k<(deari[j] & 0x7F);k++)
+ 	derle[derlepos++]=deari[j+1];
+       j+=2;
+     } else { /* is bit 7 set? NO! */
+       memcpy(derle+derlepos,deari+j+1,deari[j]);
+       derlepos+=deari[j];
+       j+=deari[j]+1;
+     }
+   }
+ }
+ 
+ static void do_debwe()
+ { 
+   unsigned char *L=derle;
+   unsigned int *T;
+   unsigned int count[256];
+   unsigned int total[256];
+   unsigned int k,i,sum=0,indx;
+   
+   T=(unsigned int *)malloc(size*sizeof(unsigned int));
+   
+   for (k=0;k<256;k++)
+     count[k]=0;
+   
+   for (k=0;k<size;k++) {
+     count[L[k]]++;
+   }
+   
+   for (i=0;i<256;i++) {
+     total[i] = sum;
+     sum += count[i];
+     count[i] = 0;
+   }
+   
+   for (i=0;i<size;i++) {
+     indx = L[i];
+     T[i] = count[indx]+total[indx];
+     count[indx]++;
+   }
+ 
+   debw[size-1]=L[orgpos];
+   for (k=1;k<size;k++) {
+     debw[size-k-1]=L[T[orgpos]];
+     orgpos=T[orgpos];
+   }
+   
+   free(T);
+ 
+ }


Index: llvm/test/Programs/MultiSource/Benchmarks/FreeBench/pcompress2/uncompress.h
diff -c /dev/null llvm/test/Programs/MultiSource/Benchmarks/FreeBench/pcompress2/uncompress.h:1.1
*** /dev/null	Sat Oct 11 16:18:59 2003
--- llvm/test/Programs/MultiSource/Benchmarks/FreeBench/pcompress2/uncompress.h	Sat Oct 11 16:18:48 2003
***************
*** 0 ****
--- 1,18 ----
+ /********************************************************/
+ /* pCompress/pUnCompress                                */
+ /* A three stage file compressor, using Burrows Wheeler */
+ /* blocksorting, Run Length Encoding and Arithmetic     */
+ /* coding to achieve good compression.                  */
+ /* The fact that the compression is not that good in    */
+ /* reality is probably my fault.                        */
+ /* It makes a neat benchmark anyways.                   */
+ /* ---------------------------------------------------- */
+ /* This is a part of FreeBench v1 and is only intended  */
+ /* to be used as a benchmark. The use of this software  */
+ /* for anyting else (such as compression) is not        */
+ /* recomended, and certainly not supported. Use gzip or */
+ /* bzip instead, they are both faster and better.       */
+ /* Peter Rundberg, April 2001                           */
+ /********************************************************/
+ 
+ void uncompress(int argc, char *argv[]);





More information about the llvm-commits mailing list