#include <stdio.h>
#include <stdarg.h>

int vscanf(const char *format,va_list args)
{
    fflush(stdout);
    return vfscanf(stdin,format,args);
}
