fork download
  1. Imports System
  2.  
  3. Public Class Test
  4. Public Shared Sub Main()
  5. System.Console.WriteLine("The VB 3.10 Multiply 2 Numbers Program.")
  6. Dim x As Integer = 25
  7. Dim y As Integer = 25
  8. Dim z As Integer = (x * y)
  9. System.Console.WriteLine(" X "&x)
  10. System.Console.WriteLine(" Y "&y)
  11. System.Console.WriteLine(" Z "&z)
  12. End Sub
  13. End Class
Success #stdin #stdout 0.02s 23164KB
stdin
1
2
10
42
11
stdout
The VB 3.10 Multiply 2 Numbers Program.
 X 25
 Y 25
 Z 625