// [문제 링크]: https://school.programmers.co.kr/learn/courses/30/lessons/120910 class Solution { public int solution(int n, int t) { return n << t;//bits 연산 좌항으로 옮김 } }