using System;
public class Program
{
public static void Main()
for (int poop = 1; poop <= 50; poop++)
Console.WriteLine(999 % poop);
}
// Use a for loop to print the remainder of 999 divided by 2 through 50
// Example: 99 / 2 --> remainder is 1
// Example: 99 / 3 --> remainder is 0
// Example: 99 / 4 --> remainder is 3
//
// Read the following website to learn about for loop
// https://msdn.microsoft.com/en-us/library/ch45axte.aspx
// Console.WriteLine - writes the string then jumps to the next line
// Console.Write - writes the string on the current line