#include <stdio.h>

int main(void) {
	// your code goes here
    int age = 17;
    printf("我的年龄是%d岁",age);
	return 0;
}
