#include <iostream>
using namespace std;

class FindMovie
{
public:
 
    template<typename T>
    void printText(T text);
 
private:

};

template<typename T>
void FindMovie::printText(T text)
{
    cout << text;
}


int main()
{
    FindMovie f;
    f.printText(1);
    f.printText("1");
}

