• Source
    1. #include <iostream>
    2. using namespace std;
    3. int main ()
    4. {
    5. int x;
    6. cout << "Podaj liczbÄ™: ";
    7. cin >> x;
    8. if ( x < 10 )
    9. {
    10. cout << "Twoja liczba jest mniejsza od 10" << '\n';
    11. }
    12. }