Nhập và Xuất

View as PDF

Submit solution

Points: 0.01 (partial)
Time limit: 1.0s
Memory limit: 64M
Input: stdin
Output: stdout

Authors:
Problem types

Cho 1 số nguyên dương a (Với 1≤a≤1000). Hãy xuất ra số nguyên a đó.

Input

Số nguyên dương a (Với 1≤a≤1000).

**Output**

Một dòng duy nhất là số nguyên dương a đã cho.

Simple Input

1

Simple Output

1

Comments

Please read the guidelines before commenting.



  • 0
    td  commented on Sept. 15, 2025, 8:04 a.m.

    include <stdio.h>

    int main() { int a; scanf("%d", &a); printf("%d", a); return 0;

    }