#include <stdio.h>#include<math.h>int main(){ int a,b; scanf("%d",&a); b=a/4; printf("%d %d %d %d\n",b-1,b,b+1,b+2); return 0;}
No comments