using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Wellsoft{
class Program
{
static void Main(string[] args)
{
Console.ForegroundColor = ConsoleColor.Cyan;
Console.WriteLine("Software for Wellsoft Games");
//Valores Inteiros (int)
int num_1 = 936;
int num_2 = 5298;
int num_3 = 323;
Console.ForegroundColor = ConsoleColor.Magenta;
Console.WriteLine("Existe " + num_1 + " onlines em nosso site, " + num_2 + " acesso por dia, é " + num_3 + " membros na equipe.");
Console.ForegroundColor = ConsoleColor.White;
}
}
}
Note: This code does not have elements to add the image, I just put it to understand better.