#include <stdio.h>
#include <stdlib.h>

int main(int argc, char *argv[])
{
	int a, b, c;
	a= 5;
	b= 4;
	c= a+b;
	return 0;
}
