Untitled

mail@pastecode.io avatar
unknown
c_cpp
a month ago
340 B
3
Indexable
Never
#include <iostream>

int main()
{
    int wiek;
    std::cin >> wiek;
    if( wiek >= 18 )
    if( wiek <= 100 )
    {
        std::cout << "Twierdzisz, ze jestes pelnoletni..." << std::endl;
        std::cout << "ale czy to kogos interesuje? :)" << std::endl;
    }
    std::cout << "Koniec" << std::endl;

    return 0;
}
Leave a Comment