Advertisement
Iskrenov84

05. Add and Subtract

Feb 10th, 2022
574
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.43 KB | None | 0 0
  1. using System;
  2.  
  3. namespace P5._AddAndSubtract
  4. {
  5.     internal class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int numberOne = int.Parse(Console.ReadLine());
  10.             int numberTwo = int.Parse(Console.ReadLine());
  11.             int numberThree = int.Parse(Console.ReadLine());
  12.             int sum = (numberOne + numberTwo) - numberThree;
  13.             Console.WriteLine(sum);
  14.         }
  15.     }
  16. }
  17.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement