#include <iostream>
using namespace std;

bool testFunction( bool param ) {
    cout << "Tick ";
    return param;
}

int main() {
    if( testFunction( true ) && testFunction( false ) ) {
        // do nothing
    }
    
    cout << endl << endl;
    
    if( testFunction( false ) && testFunction( true ) ) {
        // do nothing
    }
}