Files
OI-source/history_source/ccf 入门篇/U4/4.5.5.cpp
2023-08-03 09:22:52 +08:00

13 lines
155 B
C++

#include<iostream>
#include<cmath>
using namespace std;
int main()
{
int n;
while(true)
{
cin>>n;
cout<<pow(2,n)<<endl<<"============="<<endl;
}
}