fork download
#include <stdio.h>
const enum Aipha{
	X,
	Y=5,
	Z
}p=10;

int main(void) {
	// your code goes here
	//float f=(char) 5.23f;
	//int p=2.999999f;
	//printf("%.2f",f);
	//printf("%f",p);
	enum Aipha a,b;
	a=X;
	b=Z;
	printf("%d",a+b-p);
	return 0;
}
Success #stdin #stdout 0s 5304KB
stdin
Standard input is empty
stdout
-4