#include using namespace std; int main() { int x; cin >> x; if (x < 10) { cout << "xは10より小さい" << endl; } cout << "終了" << endl; }