#include <iostream>

using namespace std;

int main()
{
    cout << "liczba dziesiêtna: "<< dec << 15 << endl;
    cout << "ósemkowa: " << oct << 15 << endl;
    cout << "szesnastkowa: " << hex << 15 << endl;
    cout << "liczba zmiennoprzecinkowa: " << 3.14159 << endl;
    cout << "znak niedrukowalny (lf): " << char(10) << endl;
    cout << "znak niedrukowalny (bs):" << char(8) << "nowy napis" << char(8) << "i dalej" << endl;


    return 0;
}
