summaryrefslogtreecommitdiff
path: root/12992/huatuo.c
blob: 58d4ea3fdd6e0fe20c4b292605c60585c1617689 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <stdio.h>

int main(){
    int n, j=0;
    scanf("%d", &n);
    while(n--){
	j++;
	int b;	
	scanf("%d", &b);
	printf("Case #%d: %d\n", j, b*2-1);
    }
}