#include "stdio.h" int nickels, dimes, TotCenter; main() { nickels=3; dimes=7; TotCenter=(nickels *5) + (dimes * 10); printf("%d nickels and %d dimes \n",nickels,dimes); printf("=%d cents \n" , TotCenter); printf("Desing by Chanisorn wareekhun no.26"); getch(); }