using System;
namespace MyCompiler {
class Program {
public static void Main(string[] args) {
Console.WriteLine("Escreva dois numeros: ");
double numero1 = Convert.ToDouble(Console.ReadLine());
double numero2 = Convert.ToDouble(Console.ReadLine());
if(numero1 + numero2 > 20){
Console.WriteLine("numero: " + (numero1 + numero2 + 8));
}
else{
Console.WriteLine("numero: " + (numero1 + numero2 - 5));
}
}
}
}
To embed this project on your website, copy the following code and paste it into your website's HTML: