using System;

namespace MyCompiler {
    class Program {
        public static void Main(string[] args) {
           for (int i = 1; i < 121; i++){
               Console.Write(i);
               if ( i == 1){
                   Console.WriteLine(":Q");
               }else if (i % 2 == 0 && i != 2) {
                   Console.WriteLine(":X");
                }else if (i % 3 == 0 && i != 3) {
                   Console.WriteLine(":X");
                }else if (i % 5 == 0 && i != 5) {
                   Console.WriteLine(":X");
                }else if (i % 7 == 0 && i != 7) {
                   Console.WriteLine(":X");
                }else{
                   Console.WriteLine(":O");
               }
           }
        }
    }
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: