#include <stdio.h>

void *_va_arg(void **ap) {
	return * ((void **) *ap)--;
}

int main(void) {
	// your code goes here
	return 0;
}
