// -----------------------
#include <stdio.h>

int main() {

   int a;
   int b;

   a = 10;
   b = 20;

   printf( "Value of a = %d and value of b = %d\n", a, b );
}
// --------------------------------------