//Note:The template file will be copied to a new file.
When you change the code of
the template file you can create new file with this base code.
#include <stdio.h>
int main(){
printf("input:");
int aaa = 0;
scanf("%d",&aaa);
printf("%d",2*aaa);
printf("hello world");//test
return 0;
}