#include #include "../include/Runtime.h" int main() { int x; DSE_Input(x); int y; DSE_Input(y); int z; DSE_Input(z); if (x > y && y > z && z == 0) { x = x / z; } /* if(x>y){ if(y>z){ if(z==0){ x = x/z; } } } */ return 0; }