fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. // your code goes here
  5. char name[50];
  6. long int x;
  7. scanf("%s",&name);
  8. scanf("%ld", &x);
  9. printf("Hello Mr. %s, Your Roll no is : %ld", name, x);
  10.  
  11.  
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 9424KB
stdin
akshat 1234567890
stdout
Hello Mr. akshat, Your Roll no is : 1234567890