using System;
namespace MyCompiler {
class Program {
public static void Main(string[] args) {
int peso;
peso = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("peso em gramas: " + peso * 1000);
Console.WriteLine("peso mais 12%: " + (peso * 0.12 + peso));
}
}
}
To embed this project on your website, copy the following code and paste it into your website's HTML: