Pages

Sunday 7 October 2012

UVA - 11150 - Cola

#include <stdio.h>

int main(){
    int j;
    while(scanf("%d",&j)==1){
        printf("%d\n",j+(j/2));
    }
    return 0;
}

No comments:

Post a Comment