#include <iostream>
#include <arpa/inet.h>
using namespace std;

int main() {
	uint32_t n = 17920;
	// your code goes here
	cout << ntohs(n) << endl;
	return 0;
}