Contact: aviboots(AT)netvision.net.il
40,947 questions
53,411 answers
573 users
#include <stdio.h> int main() { int a, b, c; scanf("%d %d %d", &a, &b, &c); printf("a = %d b = %d c = %d\n", a, b, c); return 0; } /* run : 3 7 18 a = 3 b = 7 c = 18 */