#include int main() { int x; int y; int z; x = 5; y = 10; z = x * y; printf("%d multiplied by %d is %d", x, y, z); }