#include<stdio.h>#include<stdlib.h>int main(){int h,f,x,y;h=16;f=40;y=(f-2*h)/2;x=h-y;printf("%d,%d\n",x,y); system("pause"); return 0;}