current
Thu Oct 26 2023 08:20:31 GMT+0000 (Coordinated Universal Time)
Saved by
@yolobotoffender
#include <iostream>
#include<iomanip>
using namespace std;
int main() {
int n1=1;
for(int i=1;i<=100;i++){
n1=n1*2;
}
cout<<n1;
return 0;
}
content_copyCOPY
Comments