Advertisement
Josif_tepe

Untitled

Jan 21st, 2023
732
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.25 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <string.h>
  4. #include <ctype.h>
  5. int main()
  6.  
  7. {
  8.     FILE * in = fopen("input.txt", "r");
  9.    
  10.     int a, b;
  11.     fscanf(in, "%d%d", &a, &b);
  12.    
  13.     printf("%d %d\n", a, b);
  14.     return 0;
  15.  
  16. }
  17.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement