#include <stdio.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>

int main(void) {
	int value=570534080;
	struct in_addr addr = {value};
	printf( "%s", inet_ntoa( addr ) );
	return 0;
}
