#include <iostream>
#include <netinet/in.h>

using namespace std;

int main() {
	auto i = ntohl(0x3313);
    cout << i << endl;
	return 0;
}