#include <stdio.h>

int main(void) {
    int a, b;
    a = 5;
//練習問題B：ここから
    b = a *a;
    printf("%dの2乗は%d",a,b);
//ここまでを完成させてください
	return 0;
}
