Advertisement
Serby__

3

Sep 15th, 2019
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.50 KB | None | 0 0
  1. using System;
  2.  
  3. namespace ConsoleApp1
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             Console.Write("a =");
  10.             int a = int.Parse(Console.ReadLine());
  11.             Console.Write("b=");
  12.             int b = int.Parse(Console.ReadLine());
  13.             Console.Write("c =");
  14.             int c = int.Parse(Console.ReadLine());
  15.             int k = a + b + c;
  16.             Console.Write(a+"+"+b+"+"+c+"="+k);
  17.             Console.ReadLine();
  18.         }
  19.     }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement