#include <stdio.h>

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