#include <iostream>
using namespace std;

int main () 
{
	unsigned short int x;
	cout << " Unsigned short int zajmuje w pamieci: " << sizeof(x) << " B";
	cout << endl;
	cout << " Zmienna tego typu przechowuje liczby calkowite z zakresu:" << endl;
	cout << " <0 - 65535>" << endl;
	cout << " Do liczby 65535 dodamy 1." << endl;
	x = 65535 + 1;
	cout << " Suma 65535 + 1 wynosi: ";
	cout << x;	
	return 0;
}


