#include <stdio.h> int main() { int x = 5, y = 10, z = 15; printf("%d %d %d\n", x, y, z); return 0; }
Click Run to execute this code.