fork download
  1. #include <stdio.h>
  2.  
  3. struct Sportsman {
  4. int place;
  5. } ;
  6.  
  7.  
  8. int main() {
  9.  
  10. struct Sportsman man;
  11.  
  12. scanf("%d", &man.place);
  13.  
  14. printf("Country = %d", man.place);
  15.  
  16. return 0;
  17. }
Success #stdin #stdout 0s 9432KB
stdin
1488
stdout
Country = 1488