using System;
public class Program
{
public static void Main()
int opd1=0;
int opd2=0;
int result=0;
Console.WriteLine("請輸入 opd1 ");
opd1 = int.Parse(Console.ReadLine());
Console.WriteLine("請輸入 opd2 ");
opd2 = int.Parse(Console.ReadLine());
if(opd2>0){
result = opd1*opd2;
Console.WriteLine("計算結果:"+result);
}