백준 24623 c++

magicdrill·2024년 4월 16일
0

백준 문제풀이

목록 보기
314/654

백준 24623 c++

#include <iostream>
#include <cmath>

using namespace std;

int main(void)
{
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);
	cout.tie(NULL);

	int N, result;

	cin >> N;
	cout << pow(2, N) << "\n";

	return 0;
}

0개의 댓글