코드업 기초 100제

1048 : [기초-비트시프트연산] 한 번에 2의 거듭제곱 배로 출력하기

develop.me.z 2020. 12. 24. 03:03

#include <iostream>

using namespace std;

int main() {
    int a,b;
    scanf("%d %d",&a,&b);
    printf("%d\n",a<<b);
    
    return 0;
}