int varvalor;
int var01 = varvalor * 1;
Console.Write("Digite um número para ser multiplicado: ");
var01 = Convert.ToInt32 (Console.ReadLine());
Console.WriteLine();
I wanted to write in Console.WriteLine();
these lines of code that is written in Python.
varvalor = int(input("Digite um número para ser multiplicado: "))
var01 = varvalor * 1
print("{} x 1 = {}".format(varvalor, var01))
Is there any way to do this in C #?