Advertisement
SenpaiZero

Untitled

Sep 11th, 2020
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.62 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Mariano_Robert_LMS_Activity1
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int M1;
  10.             int M2;
  11.  
  12.             Console.WriteLine("Welcome to Addition Calculalor!");
  13.             Console.WriteLine("Please input a number");
  14.             M1 = Convert.ToInt32(Console.ReadLine());
  15.             Console.WriteLine("Please input the number you would like to add");
  16.             M2 = Convert.ToInt32(Console.ReadLine());
  17.  
  18.             int Answer = M1 * M2;
  19.             Console.WriteLine("Your answer is: {0}", Answer);
  20.            
  21.         }
  22.     }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement