In this problem, you need to finish a string calculator.
The calculator has four string operators:
The first line contains an integer N
The following N lines, each line contains an operation.
testcase:
(2/12) 0 < N < 100, 0 < |a|, |b| <= 10, only "+" operation
(3/12) 0 < N < 100, 0 < |a|, |b| <= 10, only "-" operation
(3/12) 0 < N < 100, 0 < |a|, |b| <= 10, only "/" operation
(2/12) 0 < N < 100, 0 < |a|, |bi| <= 10, 0 < k <= 500 , only "@" operation
(2/12) 0 < N < 100, 0 < |a|, |bi| <= 10, 0 < k <= 10000 , only "@" operation
The output contains N lines, output the calculated result.