#include int x = 0; int y = 0; main() { printf( "Enter 2 integer values:") ; scanf( "%d%d", &x, &y) ; printf( "Two values are: %d, %d\n", x, y) ; }