문제링크 - 프로그래머스 - 세균 증식
class Solution { public int solution(int n, int t) { int answer = n* (int)Math.pow(2,t); return answer; } }