#include <stdio.h>
#include <fcntl.h>
int main() {
	open("newfile", O_WRONLY | O_TRUNC | O_CREAT, 0777);
}
