#include <stdio.h>
int foo(int x){return x;}
int main(void) {
	double aa,bb=10;
	aa=foo(bb);
	printf("%d",aa);
	return 0;
}

