fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. int a,b;
  5. printf("あなたの誕生日を入力してください \n");
  6. scanf("%d",&a);
  7. scanf("%d",&b);
  8. printf("%d月%d日:",a,b);
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 5304KB
stdin
1 5
stdout
あなたの誕生日を入力してください 
1月5日: