Swift program to perform the bitwise right-shift operation
import Swift;
var num1 = 64;
var num2 = 3;
var res = 0;
res = num1 >> num2;
print(res);
Output:
8
...Program finished with exit code 0
