<?php

for ($i=0;$i<=100;$i++) {
    if ($i % 25 != 0)
        echo "Slope\n";
    else
        echo "Step\n";
}