#include <stdio.h>

int main() {
  FILE f;

  f = fopen("myfile.txt","w");

  return 0;
}
