Advertisement
lil_keeeet

les_6

Oct 24th, 2021
754
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.42 KB | None | 0 0
  1. using System;
  2.  
  3. namespace les3
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             string str = Console.ReadLine();
  10.             int a = Convert.ToInt32(str);
  11.             Console.WriteLine("+");
  12.             str = Console.ReadLine();
  13.             int b = Convert.ToInt32(str);
  14.             int result = a + b;
  15.             Console.WriteLine("= " + result); ;
  16.  
  17.         }
  18.     }
  19. }
  20.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement