Advertisement
Guest User

Untitled

a guest
Oct 14th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Kattis2
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. var input = Console.ReadLine().Split(" ");
  10. var r1 = int.Parse(input[0]);
  11. var s = int.Parse(input[1]);
  12. Console.WriteLine((2 * s) - r1);
  13. }
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement