#include <stdio.h>

int main(void) {
    char filename[10];
    int iodepth, bs, size, numjobs, runtime;

    printf("Where is your file? (absult postion)\n");
    scanf("%s", filename);

    printf("Setting your IO module(default=1)\n");
    scanf("%d", &iodepth);

    printf("What is your I/O size(-bs)?\n");
    scanf("%d", &bs);

    printf("How much the test file size\n");
    scanf("%d", &size);

    printf("How many your number of jobs?\n");
    scanf("%d", &numjobs);

    printf("How long do you wany to test?(sec)\n");
    scanf("%d", &runtime);

    char mode;
    printf("Choice your mode: A.Read B.Write C.Randread D.Randwrite E.Randrw F.RWmixread=70 \n");
    scanf(" %c\n", &mode);
    printf("%c;\n", mode);
    return 0;
}
