#include <iostream>
using namespace std;

int main(){
    short int room = 205,
    _floor = 10, 
    suite = 2;
  
    unsigned short int roomPrice = 200; long int savings = 2000000000;
    
    std::cout<< "Your room number is " << room 
    << ", floor " << _floor 
    << ". Make sure you enter suite " 
    << suite
    << std::endl;
    
    cout << "The price for that room is $" << roomPrice << " dollars\n"
    << "No worries, my saving account is showing that I have $" << savings
    <<" dollars" << endl;
    
    cout << "I can't pay for this, im too poor.\n" << endl;
    
    std::cout << sizeof(room) << " bytes" << std::endl; 
    std::cout << sizeof(_floor) << " bytes" << std::endl;
    std::cout << sizeof(suite) << " bytes" << std::endl;
    std::cout << sizeof(roomPrice) << " bytes" << std::endl;
    std::cout << sizeof(savings) << " bytes" << std::endl;
    return 0;
    
}