/*
整数値15から37を引いた結果を表示
*/
#include <stdio.h>
int main (void)
{
printf ("%d", 15-37) ; /* 整数値15から37を引いた結果を
											10進数で表示*/
return (0) ;
}