View Code of Problem 3869

#include <bits/stdc++.h>

int main() {
    double n;
    while(scanf("%lf", &n)!=EOF) {
        printf("%.0lf\n", pow(2, n));
    }
}

Double click to view unformatted code.


Back to problem 3869