C C program soma2 real *4 valor1, valor2, total write (*,*) 'Valor 1:' read (*,*) valor1 write (*,*) 'Valor 2:' read (*,*) valor2 total = valor1 + valor2 write (*,*) 'Total:', total end