#include <iostream>

void printIfPositive(int i)
{
    std::cout << "Surround and Unwrap me!";
}

int main()
{
    printIfPositive(3);
}
