#include <iostream>
using namespace std;
 
int main() {
 
setlocale (LC_ALL, "RUSSIAN");
cout << "close this program beach" << endl; 
int a=148;
int b=145;
int c=a+b;
cout << c << endl;
int d=1;
int f=c+d;
cout << f << endl;
int h = 4;
if(h == 5)
{
cout << "Переменная h равна пяти" << endl;
}
else
{
cout << "Переменная h не равна пяти" << endl; 
}
	return 0;
}