#include <stdio.h> int main (void) { int a, b; printf("Dwse mou dio akeraious arithmous: \n"); scanf("%d %d", &a, &b); printf("Oi arithmoi poy edwses einai: %d kai %d", a, b); return 0; } code example

Example: #include int main (void) { int a, b; printf("Dwse mou dio akeraious arithmous: \n"); scanf("%d %d", &a, &b); printf("Oi arithmoi poy edwses einai: %d kai %d", a, b); return 0; }

#include <stdio.h>

int main (void)
{
    int a, b;
    printf("Dwse mou dio akeraious arithmous: \n");
    scanf("%d %d", &a, &b);
    printf("Oi arithmoi poy edwses einai: %d kai %d", a, b);
    return 0;
}

Tags:

C Example