#include<stdio.h> int triple(int x) { return 3*x; } int main() { int s; printf("Please enter a small integer "); scanf("%d", &s); int y = triple(s); //y = 3*s; printf("%d\n", y); return 0; }