//uso de if
#include <iostream>
using namespace std;

int main()
{
    int x = 100;
    if (x == 100)
        cout << "x es 100";
    return 0;
}