You are on page 1of 2

import java.util.

Scanner;
public class Programma_es_19 {
public static void main(String[]args) {
int ucb;
Scanner tastiera = new Scanner(System.in);
ucb = tastiera.nextInt();
int ore = tastiera.nextInt();
int c;
for (c = ore; c == 0; c = c - 1) {
ucb=ucb*2;
}
System.out.println("ucb");
}
}

You might also like