记录
#include<bits/stdc++.h> using namespace std; int main() { int n,m,x,y; cin>>n>>m>>x>>y; if(x<n&&x>0&&y>0&&x*m+(y/m)*m+y%m<n*m) cout<<"Program ends with return value 0."; else cout<<"Segmentation fault."; return 0; }