12005 - AC code   

Description

Ben wants to complete his first homework in Introduction to Programming, but he wasn't listening to teacher during the class. So he came to you for help.

The homework problem is very simple: Print a number x. However, Ben forgot what value x is.

Since you think Ben is really annoying, as a clever CS student, you decide to write a program that can print the correct AC code no matter what the value x is, and give him the program.

For example, if x = 10, then the correct AC code will be "printf("10\n");"; if x = 5, then the correct AC code will be "printf("5\n");" (without the quotes).

 

Hint:

'\' is an escape character. You can use it to print '"'.

Example:

code: printf("welcome to \"NTHU CS\"");

output: welcome to "NTHU CS"

 

#include <stdio.h>
int main() {
    int x;
    scanf("%d", &x);
    printf("printf(\"%d\\n\");\n", x);
    return 0;
}

Input

Input contains an integer x, the number in Ben's homework.

It is guaranteed that 1 <= x <= 100.

Output

According to x, print the correct AC code in one line.

Note: remember to print a '\n' at the end of output.

Sample Input  Download

Sample Output  Download

Tags




Discuss