What will be the output of the following code?
int main() { int x,y,z; x='1'-'0'; /* line-1 */ y='a'-'b'; /* line-2 */ z=x+y; printf("%d",z); }