class MissedTernaryOpportunityFix { static int MyAbs(int x) { return x >= 0 ? x : -x; } }