#include <iostream>
#include <algorithm>

const int valueA = 50;

int main()
{
	int valueB = 97;
	int valueC = 145;
	int smallestValue = std::min({valueA, valueB, 123, valueC});

    
	std::cout << "smallestValue = " << smallestValue << std::endl;
	
	return 0;
}