#include void main() { int distance,speed,time; clrscr(); printf("Enter The speed & time: "); scanf("%d%d",&speed,&time); distance=speed*time; printf("Distance = %d",distance); getch(); }