using System;
public class Program
{
public static void Main()
// count 1 to 100
// if the number is divisible by 3 then write out 'big'
// if the number is divisible by 5 then write out 'bear'
// if the number is divisible by 3 and 5 write out 'bigbear'
}