#include <stdio.h>
int main()
{
    char test[255];
    for( int i = 0; i < 300; i++ )
           test[i] = '\xbf';
    return 0;
}