#include <stdio.h>

int main() 
{
    int a, b, c, d, e;

    printf("5개의 수를 입력하시오. \n");
    scanf("%d", &a);
    scanf("%d", &b);
    scanf("%d %d %d", &c, &d, &e);
    a = a + 3;
    b = b - 3;
    c = c * 3;
    d = d / 3;
    e = e % 3;
    printf("%d %d %d %d %d", a, b, c, d, e);

    return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: