//It is the easiest problem I have ever seen.
#include <stdio.h>
int main(){
int j;
while(scanf("%d",&j)==1){
printf("%d\n",j+(j/2));
}
return 0;
}
#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