<?php $number = 15; // Change this number to test echo ($number % 2 == 0) ? "$number is an Even number." : "$number is an Odd number."; ?>