#include <stdio.h>

int main(int argc, char *argv[])
{
  int x = 10; // Combines declaration and assignment into one statement
  return 0;
}