Last updated 3 years ago
#include <stdio.h> int main(){ char name[20]; scanf("%s",name); printf("Hello %s",name); return 0; }