#include <stdio.h>

int main(void) {
	int a,b;
	scanf("%d",&a);
	scanf("%d",&b);
	printf("入力された整数は%dと%dです\n",a,b);
	return 0;
}
