#include<bits/stdc++.h>
using namespace std;
int main()
{
long long int a,b,m;
while(cin>>a>>b)
{
m=pow(2,8*(a-1)+b-1);
if(a==1&&b==1) cout<<1<<endl;
else cout<<m<<endl;
}
}
#include<bits/stdc++.h>
using namespace std;
int main()
{
long long int a,b,m;
while(cin>>a>>b)
{
m=pow(2,8*(a-1)+b-1);
if(a==1&&b==1) cout<<1<<endl;
else cout<<m<<endl;
}
}
比你短
#include <bits/stdc++.h>
using namespace std;
int main(int argc, char** argv){
long long int a,b;
while(cin>>a>>b){
b=pow(256,(a-1))*pow(2,(b-1));
cout<<b<<endl;
}
}