#include <iostream>
using namespace std;

int main() {
    if (1 + 1 == 2) {
        cout << "*" << endl;
        return 0;
    }
    cout << "*" << endl;
}