/******************************************************************************
Welcome to GDB Online.
GDB online is an online compiler and debugger tool for C/C++.
Code, Compile, Run and Debug online from anywhere in world.
*******************************************************************************/
#include <iostream>
#include <bits/stdc++.h>
using namespace std;
int main() {
// your code goes here
int x = 1;
if (x == 2)
printf("First sentence\n");
else if (x != 1)
printf("Second sentence\n");
else if (x < 1)
printf("Third sentence\n");
else if (x = 0)
printf("Fourth sentence\n");
else if (x)
printf("Last sentence\n");
}