#include "iobios.h"

void _start(void)
{
    char abc[45];
    
    sprint("Input a string now: $");
    getstring(abc);
    csprint(abc);
}


