#include <iostream>
#include <string.h>
using namespace std;
string str1;
int a;
int b;
int c;
float d;
float e;
int main()
{
int a = 2;
int b = 5;
float d = 0.5;
cout << "stupid little operators test by Broax...\n";
c = a + b;
e = c + d;
cout << ((a >= 4)?"testA":"testeB") << endl;
cout << "The result is: " << e << endl;
return 0;
}