IP address
: [203.72.178.1]
Last Login
:
2024-12-25 11:49:37
k690. 肥余歷險記---(反數學城4) --
肥余
| From: [123.193.193.169] |
Post Date
:
2024-05-15 21:28
include<bits/stdc++.h> using namespace std; int main() { long long a,d=0; cin>>a; while(a--) { long long b,c; string e; cin>>b>>e>>c; if(e=="x") cout<<b*c<<endl; else cout<<pow(b,c)<<endl; } }