#include <stdio.h>
//引数の絶対値を返す関数
int abs(int x){

}
//引数の二乗を返す関数
int square(int x){

}
//main関数
int main(void) {

	return 0;
}
