Language Basics C

#include 
int main(void)
{
  int x = 5, y = 10;
  printf("Max of %d and %d is: %d\n", x, y, (x>y ? x : y));
  return 0;
}