Advertisement
dsavov_02

Untitled

Nov 1st, 2018
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. int a = int.Parse(Console.ReadLine());
  2. int b = int.Parse(Console.ReadLine());
  3. double result = Math.Pow(a, b);
  4. Console.WriteLine(result);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement