#include <stdio.h> int main() { char a,b,c; scanf("%c%c%c",&a,&b,&c); printf("hello,%c,%c and %c!",a,b,c); return 0; }