/* ********************************* */
/* CPE 101               Winter 2011 */
/* Lab 1                             */
/* Hello, World! program             */
/*                                   */
/* Alexander Dekhtyar                */
/* ********************************* */

#include <stdio.h>

int main() {

   printf("Hello, world!\n");

   return 0;
   }