Advertisement
Niloy007

Input Problem (1)

Jun 14th, 2020
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.17 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main() {
  4.     int first, last;
  5.    
  6.     scanf("%d%d", &first);
  7.     scanf("%d", &last);
  8.     printf("First: %d \nLast: %d\n", first, last);
  9.  
  10.     return 0;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement